]> git.donarmstrong.com Git - lilypond.git/blob - lily/beam.cc
patch::: 1.3.20.jcn1
[lilypond.git] / lily / beam.cc
1 /*
2   beam.cc -- implement Beam
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7     Jan Nieuwenhuizen <janneke@gnu.org>
8
9 */
10
11 /*
12   [TODO]
13     * less hairy code
14     * move paper vars to scm
15
16 */
17
18
19 #include <math.h>               // tanh.
20
21 #include "directional-element-interface.hh"
22 #include "beaming.hh"
23 #include "dimensions.hh"
24 #include "beam.hh"
25 #include "misc.hh"
26 #include "debug.hh"
27 #include "least-squares.hh"
28 #include "stem.hh"
29 #include "paper-def.hh"
30 #include "lookup.hh"
31 #include "group-interface.hh"
32 #include "staff-symbol-referencer.hh"
33 #include "cross-staff.hh"
34 #include "lily-guile.icc"
35
36 Beam::Beam ()
37 {
38   Group_interface g (this, "stems");
39   g.set_interface ();
40 }
41
42 void
43 Beam::add_stem (Stem*s)
44 {
45   Group_interface gi (this, "stems");
46   gi.add_element (s);
47   
48   s->add_dependency (this);
49
50   assert (!s->beam_l ());
51   s->set_elt_property ("beam", self_scm_);
52
53   if (!spanned_drul_[LEFT])
54     set_bounds (LEFT,s);
55   else
56     set_bounds (RIGHT,s);
57 }
58
59 int
60 Beam::get_multiplicity () const
61 {
62   int m = 0;
63   for (SCM s = get_elt_property ("stems"); gh_pair_p (s); s = gh_cdr (s))
64     {
65       Score_element * sc = unsmob_element (gh_car (s));
66
67       if (Stem * st = dynamic_cast<Stem*> (sc))
68         m = m >? st->beam_count (LEFT) >? st->beam_count (RIGHT);
69     }
70   return m;
71 }
72
73 /*
74   After pre-processing all directions should be set.
75   Several post-processing routines (stem, slur, script) need stem/beam
76   direction.
77   Currenly, this means that beam has set all stem's directions.
78   [Alternatively, stems could set its own directions, according to
79    their beam, during 'final-pre-processing'.]
80  */
81 void
82 Beam::do_pre_processing ()
83 {
84   // Why?
85   if (visible_stem_count () < 2)
86     {
87       warning (_ ("beam has less than two stems"));
88       set_elt_property ("transparent", SCM_BOOL_T);
89     }
90
91   if (!directional_element (this).get ())
92     directional_element (this).set (get_default_dir ());
93
94   auto_knees ();
95   set_stem_directions ();
96
97   set_stem_shorten (); 
98 }
99
100 /*
101  FIXME
102  */
103 Direction
104 Beam::get_default_dir () const
105 {
106   Drul_array<int> total;
107   total[UP]  = total[DOWN] = 0;
108   Drul_array<int> count; 
109   count[UP]  = count[DOWN] = 0;
110   Direction d = DOWN;
111
112   for (int i=0; i <stem_count (); i++)
113     do { // HUH -- waar slaat dit op?
114       Stem *s = stem (i);
115       Direction sd = directional_element (s).get ();
116       int current = sd  ? (1 + d * sd)/2
117         : s->get_center_distance ((Direction)-d);
118
119       if (current)
120         {
121           total[d] += current;
122           count[d] ++;
123         }
124
125     } while (flip(&d) != DOWN);
126   
127
128   SCM s = scm_eval (gh_list (ly_symbol2scm ("beam-dir-algorithm"),
129                              ly_quote_scm (gh_cons (gh_int2scm (count[UP]),
130                                                     gh_int2scm (count[DOWN]))),
131                              ly_quote_scm (gh_cons (gh_int2scm (total[UP]),
132                                                     gh_int2scm (total[DOWN]))),
133                              SCM_UNDEFINED));
134   if (gh_number_p (s) && gh_scm2int (s))
135     return to_dir (s);
136   
137   /*
138     If dir is not determined: get from paper
139   */
140   return (Direction)(int)
141     paper_l ()->get_var ("stem_default_neutral_direction");
142 }
143
144
145 /*
146   Set all stems with non-forced direction to beam direction.
147   Urg: non-forced should become `without/with unforced' direction,
148        once stem gets cleaned-up.
149  */
150 void
151 Beam::set_stem_directions ()
152 {
153   Direction d = directional_element (this).get ();
154   for (int i=0; i <stem_count (); i++)
155     {
156       Stem *s = stem (i);
157       SCM force = s->remove_elt_property ("dir-forced");
158       if (!gh_boolean_p (force) || !gh_scm2bool (force))
159         directional_element (s).set (d);
160     }
161
162
163 void
164 Beam::auto_knees ()
165 {
166   if (!auto_knee ("auto-interstaff-knee-gap", true))
167     auto_knee ("auto-knee-gap", false);
168 }
169
170 /*
171   Simplistic auto-knees; only consider vertical gap between two
172   adjacent chords.
173
174   `Forced' stem directions are ignored.  If you don't want auto-knees,
175   don't set, or unset autoKneeGap/autoInterstaffKneeGap.
176  */
177 bool
178 Beam::auto_knee (String gap_str, bool interstaff_b)
179 {
180   bool knee_b = false;
181   int knee_y = 0;
182   SCM gap = get_elt_property (gap_str);
183   Direction d = directional_element (this).get ();
184   
185   if (gh_number_p (gap))
186     {
187       int auto_gap_i = gh_scm2int (gap);
188       for (int i=1; i < stem_count (); i++)
189         {
190           bool is_b = (bool)(calc_interstaff_dist (stem (i), this) 
191             - calc_interstaff_dist (stem (i-1), this));
192           int l_y = (int)(stem (i-1)->head_positions()[d])
193             + (int)calc_interstaff_dist (stem (i-1), this);
194           int r_y = (int)(stem (i)->head_positions()[d])
195             + (int)calc_interstaff_dist (stem (i), this);
196           int gap_i = r_y - l_y;
197
198           if ((abs (gap_i) >= auto_gap_i) && (!interstaff_b || is_b))
199             {
200               knee_y = (r_y + l_y) / 2;
201               knee_b = true;
202               break;
203             }
204         }
205     }
206   if (knee_b)
207     {
208       for (int i=0; i < stem_count (); i++)
209         {
210           int y = (int)(stem (i)->head_positions()[d])
211             + (int)calc_interstaff_dist (stem (i), this);
212           directional_element (stem (i)).set (y < knee_y ? UP : DOWN);
213           stem (i)->set_elt_property ("dir-forced", SCM_BOOL_T);
214         }
215     }
216   return knee_b;
217 }
218
219 /*
220  Set stem's shorten property if unset.
221  TODO:
222     take some y-position (chord/beam/nearest?) into account
223     scmify forced-fraction
224  */
225 void
226 Beam::set_stem_shorten ()
227 {
228   if (!visible_stem_count ())
229     return;
230
231   Real forced_fraction = forced_stem_count () / visible_stem_count ();
232   if (forced_fraction < 0.5)
233     return;
234
235   int multiplicity = get_multiplicity ();
236   // grace stems?
237   SCM shorten = ly_eval_str ("beamed-stem-shorten");
238
239   Array<Real> a;
240   scm_to_array (shorten, &a);
241   if (!a.size ())
242     return;
243
244   Staff_symbol_referencer_interface st (this);
245   Real staff_space = st.staff_space ();
246   Real shorten_f = a[multiplicity <? (a.size () - 1)] * staff_space;
247
248   /* cute, but who invented this -- how to customise ? */
249   if (forced_fraction < 1)
250     shorten_f /= 2;
251
252   for (int i=0; i < stem_count (); i++)
253     {
254       Stem* s = stem (i);
255       if (s->invisible_b ())
256         continue;
257       if (gh_number_p (s->get_elt_property ("shorten")))
258         s->set_elt_property ("shorten", gh_double2scm (shorten_f));
259     }
260 }
261
262 /*
263   Set elt properties height and y-position if not set.
264   Adjust stem lengths to reach beam.
265  */
266 void
267 Beam::do_post_processing ()
268 {
269   /* first, calculate y, dy */
270   Real y, dy;
271   calc_position_and_height (&y, &dy);
272   if (suspect_slope_b (y, dy))
273     dy = 0;
274
275   Real damped_dy = calc_slope_damping_f (dy);
276   Real quantised_dy = quantise_dy_f (damped_dy);
277
278   y += (dy - quantised_dy) / 2;
279   dy = quantised_dy;
280   
281   /*
282     until here, we used only stem_info, which acts as if dir=up
283    */
284   y *= directional_element (this).get ();
285   dy *= directional_element (this).get ();
286
287   Staff_symbol_referencer_interface st (this);
288   Real staff_space = st.staff_space ();
289
290   /* check for user-override of dy */
291   SCM s = remove_elt_property ("Height");
292   if (gh_number_p (s))
293     {
294       dy = gh_scm2double (s) * staff_space;
295     }
296   set_elt_property ("height", gh_double2scm (dy));
297
298   /* check for user-override of y */
299   s = remove_elt_property ("verticalPosition");
300   if (gh_number_p (s))
301     {
302       y = gh_scm2double (s) * staff_space;
303       set_stem_length (y, dy);
304     }
305   else
306     { 
307       /* we can modify y, so we should quantise y */
308       Real y_shift = check_stem_length_f (y, dy);
309       y += y_shift;
310       y = quantise_y_f (y, dy, 0);
311       set_stem_length (y, dy);
312       y_shift = check_stem_length_f (y, dy);
313
314       Real half_space = st.staff_space () / 2;
315       if (y_shift > half_space / 4)
316         {
317           y += y_shift;
318
319           /*
320             for significantly lengthened or shortened stems,
321             request quanting the other way.
322           */
323           int quant_dir = 0;
324           if (abs (y_shift) > half_space / 2)
325             quant_dir = sign (y_shift) * directional_element (this).get ();
326           y = quantise_y_f (y, dy, quant_dir);
327           set_stem_length (y, dy);
328         }
329     }
330   // UGH. Y is not in staff position unit?
331   // Ik dacht datwe daar juist van weg wilden?
332   set_elt_property ("y-position", gh_double2scm (y)); 
333 }
334
335 /*
336   See Documentation/tex/fonts.doc
337  */
338 void
339 Beam::calc_position_and_height (Real* y, Real* dy) const
340 {
341   *y = *dy = 0;
342   if (visible_stem_count () <= 1)
343     return;
344
345   Real first_ideal = first_visible_stem ()->calc_stem_info ().idealy_f_;
346   if (first_ideal == last_visible_stem ()->calc_stem_info ().idealy_f_)
347     {
348       *dy = 0;
349       *y = first_ideal;
350       return;
351     }
352
353   Array<Offset> ideals;
354   Real x0 = first_visible_stem ()->hpos_f ();
355   for (int i=0; i < stem_count (); i++)
356     {
357       Stem* s = stem (i);
358       if (s->invisible_b ())
359         continue;
360       ideals.push (Offset (s->hpos_f () - x0, 
361                            s->calc_stem_info ().idealy_f_));
362     }
363   Real dydx;
364   minimise_least_squares (&dydx, y, ideals); // duh, takes references
365
366   Real dx = last_visible_stem ()->hpos_f () - x0;
367   *dy = dydx * dx;
368 }
369
370 bool
371 Beam::suspect_slope_b (Real y, Real dy) const
372 {
373   /*
374     steep slope running against lengthened stem is suspect
375   */
376   Real first_ideal = first_visible_stem ()->calc_stem_info ().idealy_f_;
377   Real last_ideal = last_visible_stem ()->calc_stem_info ().idealy_f_;
378   Real lengthened = paper_l ()->get_var ("beam_lengthened");
379   Real steep = paper_l ()->get_var ("beam_steep_slope");
380
381   Real dx = last_visible_stem ()->hpos_f () - first_visible_stem ()->hpos_f ();
382   Real dydx = dy && dx ? dy/dx : 0;
383
384   if (((y - first_ideal > lengthened) && (dydx > steep))
385       || ((y + dy - last_ideal > lengthened) && (dydx < -steep)))
386     {
387       return true;
388     }
389   return false;
390 }
391
392 /*
393   This neat trick is by Werner Lemberg,
394   damped = tanh (slope)
395   corresponds with some tables in [Wanske]
396 */
397 Real
398 Beam::calc_slope_damping_f (Real dy) const
399 {
400   SCM damp = get_elt_property ("damping"); // remove?
401   int damping = 1;              // ugh.
402   if (gh_number_p (damp))
403     damping = gh_scm2int (damp);
404
405   if (damping)
406     {
407       Real dx = last_visible_stem ()->hpos_f ()
408         - first_visible_stem ()->hpos_f ();
409       Real dydx = dy && dx ? dy/dx : 0;
410       dydx = 0.6 * tanh (dydx) / damping;
411       return dydx * dx;
412     }
413   return dy;
414 }
415
416 Real
417 Beam::calc_stem_y_f (Stem* s, Real y, Real dy) const
418 {
419   Real thick = gh_scm2double (get_elt_property ("beam-thickness"));
420   int beam_multiplicity = get_multiplicity ();
421   int stem_multiplicity = (s->flag_i () - 2) >? 0;
422
423   Real interbeam_f = paper_l ()->interbeam_f (beam_multiplicity);
424   Real x0 = first_visible_stem ()->hpos_f ();
425   Real dx = last_visible_stem ()->hpos_f () - x0;
426   Real stem_y = (dy && dx ? (s->hpos_f () - x0) / dx * dy : 0) + y;
427
428   /* knee */
429    Direction dir  = directional_element(this).get ();
430    Direction sdir = directional_element (s).get ();
431    
432     /* knee */
433    if (dir!= sdir)
434       {
435        stem_y -= dir 
436         * (thick / 2 + (beam_multiplicity - 1) * interbeam_f);
437
438       Staff_symbol_referencer_interface me (s);
439       Staff_symbol_referencer_interface last (last_visible_stem ());
440       
441       // huh, why not for first visible?
442       if (//(s != first_visible_stem ()) &&
443           me.staff_symbol_l () != last.staff_symbol_l ())
444         stem_y += directional_element (this).get ()
445           * (beam_multiplicity - stem_multiplicity) * interbeam_f;
446     }
447   return stem_y;
448 }
449
450 Real
451 Beam::check_stem_length_f (Real y, Real dy) const
452 {
453   Real shorten = 0;
454   Real lengthen = 0;
455   Direction dir = directional_element (this).get ();
456   
457   for (int i=0; i < stem_count (); i++)
458     {
459       Stem* s = stem (i);
460       if (s->invisible_b ())
461         continue;
462
463       Real stem_y = calc_stem_y_f (s, y, dy);
464         
465       stem_y *= dir;
466       Stem_info info = s->calc_stem_info ();
467
468       // if (0 > info.maxy_f_ - stem_y)
469       shorten = shorten <? info.maxy_f_ - stem_y;
470       // if (0 < info.miny_f_ - stem_y)
471       lengthen = lengthen >? info.miny_f_ - stem_y; 
472     }
473
474   if (lengthen && shorten)
475     warning (_ ("weird beam vertical offset"));
476
477   /* when all stems are too short, normal stems win */
478   return dir * ((shorten) ?  shorten : lengthen);
479 }
480
481 /*
482   Hmm.  At this time, beam position and slope are determined.  Maybe,
483   stem directions and length should set to relative to the chord's
484   position of the beam.  */
485 void
486 Beam::set_stem_length (Real y, Real dy)
487 {
488   Staff_symbol_referencer_interface st (this);
489   Real half_space = st.staff_space ()/2;
490   for (int i=0; i < stem_count (); i++)
491     {
492       Stem* s = stem (i);
493       if (s->invisible_b ())
494         continue;
495
496       Real stem_y = calc_stem_y_f (s, y, dy);
497
498       /* caution: stem measures in staff-positions */
499       s->set_stemend ((stem_y + calc_interstaff_dist (s, this)) / half_space);
500     }
501 }
502
503 /*
504   [Ross] (simplification of)
505   Set dy complying with:
506     - zero
507     - thick / 2 + staffline_f / 2
508     - thick + staffline_f
509   + n * staff_space
510 */
511 Real
512 Beam::quantise_dy_f (Real dy) const
513 {
514   SCM quants = ly_eval_str ("beam-height-quants");
515
516   Array<Real> a;
517   scm_to_array (quants, &a);
518   if (a.size () <= 1)
519     return dy;
520
521   Staff_symbol_referencer_interface st (this);
522   Real staff_space = st.staff_space ();
523   
524   Interval iv = quantise_iv (a, abs (dy)/staff_space) * staff_space;
525   Real q = (abs (dy) - iv[SMALLER] <= iv[BIGGER] - abs (dy))
526     ? iv[SMALLER]
527     : iv[BIGGER];
528   
529   return q * sign (dy);
530 }
531
532 /*
533   Prevent interference from stafflines and beams.
534   See Documentation/tex/fonts.doc
535
536   We only need to quantise the (left) y-position of the beam,
537   since dy is quantised too.
538   if extend_b then stems must *not* get shorter
539  */
540 Real
541 Beam::quantise_y_f (Real y, Real dy, int quant_dir)
542 {
543   int multiplicity = get_multiplicity ();
544   Staff_symbol_referencer_interface st (this);
545   Real staff_space = st.staff_space ();
546   SCM quants = scm_eval (gh_list (
547                                   ly_symbol2scm ("beam-vertical-position-quants"),
548                                   gh_int2scm (multiplicity),
549                                   gh_double2scm (dy/staff_space),
550                                   SCM_UNDEFINED));
551   Array<Real> a;
552   scm_to_array (quants, &a);
553   if (a.size () <= 1)
554     return y;
555
556   Real up_y = directional_element (this).get () * y;
557   Interval iv = quantise_iv (a, up_y/staff_space) * staff_space;
558
559   Real q = up_y - iv[SMALLER] <= iv[BIGGER] - up_y 
560     ? iv[SMALLER] : iv[BIGGER];
561   if (quant_dir)
562     q = iv[(Direction)quant_dir];
563
564   return q * directional_element (this).get ();
565 }
566
567 void
568 Beam::set_beaming (Beaming_info_list *beaming)
569 {
570   Direction d = LEFT;
571   for (int i=0; i  < stem_count (); i++)
572     {
573       do
574         {
575           if (stem (i)->beam_count (d) == 0)
576             stem (i)->set_beaming ( beaming->infos_.elem (i).beams_i_drul_[d],d);
577         }
578       while (flip (&d) != LEFT);
579     }
580 }
581
582
583
584 /*
585   beams to go with one stem.
586
587   BURP
588   clean  me up.
589   */
590 Molecule
591 Beam::stem_beams (Stem *here, Stem *next, Stem *prev) const
592 {
593   if ((next && !(next->hpos_f () > here->hpos_f ())) ||
594       (prev && !(prev->hpos_f () < here->hpos_f ())))
595       programming_error ("Beams are not left-to-right");
596
597   Real staffline_f = paper_l ()->get_var ("stafflinethickness");
598   int   multiplicity = get_multiplicity ();
599
600
601   Real interbeam_f = paper_l ()->interbeam_f (multiplicity);
602   Real thick = gh_scm2double (get_elt_property ("beam-thickness"));;
603
604   Real bdy = interbeam_f;
605   Real stemdx = staffline_f;
606
607   Real dx = last_visible_stem ()->hpos_f () - first_visible_stem ()->hpos_f ();
608   Real dy = get_real ("height");
609   Real dydx = dy && dx ? dy/dx : 0;
610
611   Molecule leftbeams;
612   Molecule rightbeams;
613
614   // UGH
615   Real nw_f;
616   if (!here->first_head ())
617     nw_f = 0;
618   else if (here->type_i ()== 1)
619     nw_f = paper_l ()->get_var ("wholewidth");
620   else if (here->type_i () == 2)
621     nw_f = paper_l ()->get_var ("notewidth") * 0.8;
622   else
623     nw_f = paper_l ()->get_var ("quartwidth");
624
625
626   Direction dir = directional_element (this).get ();
627   
628   /* half beams extending to the left. */
629   if (prev)
630     {
631       int lhalfs= lhalfs = here->beam_count (LEFT) - prev->beam_count (RIGHT);
632       int lwholebeams= here->beam_count (LEFT) <? prev->beam_count (RIGHT) ;
633       /*
634        Half beam should be one note-width, 
635        but let's make sure two half-beams never touch
636        */
637       Real w = here->hpos_f () - prev->hpos_f ();
638       w = w/2 <? nw_f;
639       Molecule a;
640       if (lhalfs)               // generates warnings if not
641         a =  lookup_l ()->beam (dydx, w, thick);
642       a.translate (Offset (-w, -w * dydx));
643       for (int j = 0; j  < lhalfs; j++)
644         {
645           Molecule b (a);
646           b.translate_axis (-dir * bdy * (lwholebeams+j), Y_AXIS);
647           leftbeams.add_molecule (b);
648         }
649     }
650
651   if (next)
652     {
653       int rhalfs  = here->beam_count (RIGHT) - next->beam_count (LEFT);
654       int rwholebeams= here->beam_count (RIGHT) <? next->beam_count (LEFT) ;
655
656       Real w = next->hpos_f () - here->hpos_f ();
657       Molecule a = lookup_l ()->beam (dydx, w + stemdx, thick);
658       a.translate_axis( - stemdx/2, X_AXIS);
659       int j = 0;
660       Real gap_f = 0;
661
662       SCM gap = get_elt_property ("beam-gap");
663       if (gh_number_p (gap))
664         {
665           int gap_i = gh_scm2int ( (gap));
666           int nogap = rwholebeams - gap_i;
667           
668           for (; j  < nogap; j++)
669             {
670               Molecule b (a);
671               b.translate_axis (-dir  * bdy * j, Y_AXIS);
672               rightbeams.add_molecule (b);
673             }
674           // TODO: notehead widths differ for different types
675           gap_f = nw_f / 2;
676           w -= 2 * gap_f;
677           a = lookup_l ()->beam (dydx, w + stemdx, thick);
678         }
679
680       for (; j  < rwholebeams; j++)
681         {
682           Molecule b (a);
683           b.translate (Offset (here->invisible_b () ? 0 : gap_f, -dir * bdy * j));
684           rightbeams.add_molecule (b);
685         }
686
687       w = w/2 <? nw_f;
688       if (rhalfs)
689         a = lookup_l ()->beam (dydx, w, thick);
690
691       for (; j  < rwholebeams + rhalfs; j++)
692         {
693           Molecule b (a);
694           b.translate_axis (- dir * bdy * j, Y_AXIS);
695           rightbeams.add_molecule (b);
696         }
697
698     }
699   leftbeams.add_molecule (rightbeams);
700
701   /*
702     Does beam quanting think  of the asymetry of beams? 
703     Refpoint is on bottom of symbol. (FIXTHAT) --hwn.
704    */
705   return leftbeams;
706 }
707
708
709 Molecule*
710 Beam::do_brew_molecule_p () const
711 {
712   Molecule *mol_p = new Molecule;
713   if (!stem_count ())
714     return mol_p;
715   
716   Real x0 = first_visible_stem ()->hpos_f ();
717   Real dx = last_visible_stem ()->hpos_f () - x0;
718   Real dy = get_real ("height");
719   Real dydx = dy && dx ? dy/dx : 0;
720   Real y = get_real ("y-position");
721   for (int j=0; j <stem_count (); j++)
722     {
723       Stem *i = stem (j);
724       Stem * prev = (j > 0)? stem (j-1) : 0;
725       Stem * next = (j < stem_count ()-1) ? stem (j+1) :0;
726
727       Molecule sb = stem_beams (i, next, prev);
728       Real x = i->hpos_f ()-x0;
729       sb.translate (Offset (x, x * dydx + y));
730       mol_p->add_molecule (sb);
731     }
732   mol_p->translate_axis (x0 
733     - spanned_drul_[LEFT]->relative_coordinate (0, X_AXIS), X_AXIS);
734
735   return mol_p;
736 }
737
738 int
739 Beam::forced_stem_count () const
740 {
741   int f = 0;
742   for (int i=0; i < stem_count (); i++)
743     {
744       Stem *s = stem (i);
745
746       if (s->invisible_b ())
747         continue;
748
749       if (((int)s->chord_start_f ()) 
750         && (s->get_direction () != s->get_default_dir ()))
751         f++;
752     }
753   return f;
754 }
755
756
757
758 /*
759   TODO: Fix this class. This is wildly inefficient.
760   And it sux.  Yet another array/list 'interface'.
761  */
762 Stem *
763 Beam::stem (int i) const
764 {
765   return Group_interface__extract_elements ((Beam*) this, (Stem*) 0, "stems")[i];
766 }
767
768 int
769 Beam::stem_count () const
770 {
771   Group_interface gi (this, "stems");
772   return gi.count ();
773 }
774
775 Stem*
776 Beam::stem_top () const
777 {
778   SCM s = get_elt_property ("stems");
779   
780   return gh_pair_p (s) ? dynamic_cast<Stem*> (unsmob_element (gh_car (s))) : 0;
781     
782   //Group_interface__extract_elements ((Beam*) this, (Stem*) 0, "stems")[stem_count () - 1];
783 }
784
785 /* burp */
786 int
787 Beam::visible_stem_count () const
788 {
789   int c = 0;
790   for (int i = 0; i < stem_count (); i++)
791     {
792       if (!stem (i)->invisible_b ())
793         c++;
794     }
795   return c;
796 }
797
798 Stem*
799 Beam::first_visible_stem () const
800 {
801   for (int i = 0; i < stem_count (); i++)
802     {
803       Stem* s = stem (i);
804       if (!s->invisible_b ())
805         return s;
806     }
807
808   assert (0);
809
810   return 0;
811 }
812
813 Stem*
814 Beam::last_visible_stem () const
815 {
816   for (int i = stem_count (); i > 0; i--)
817     {
818       Stem* s = stem (i - 1);
819       if (!s->invisible_b ())
820         return s;
821     }
822
823   assert (0);
824   // sigh
825   return 0;
826 }