]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/beam.cc
patch::: 1.5.3.jcn1
[lilypond.git] / lily / beam.cc
index 4b18be26ebc2c147189aff40b7811d2f01dc5baa..48c81d14cf764266d1db2665f99b643dbf370376 100644 (file)
@@ -3,19 +3,19 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
     Jan Nieuwenhuizen <janneke@gnu.org>
 
 */
 
 /*
   [TODO]
-  * shorter! (now +- 1000 lines)
-    * less hairy code
-    * move paper vars to scm
 
-  remove *-hs variables, and do all y-position stuff in staff-space.
-*/
+  -* shorter! (now +- 1000 lines)
+  
+  -* less hairy code
+  
+  */
 
 
 #include <math.h> // tanh.
@@ -38,7 +38,7 @@
 void
 Beam::add_stem (Grob*me, Grob*s)
 {
-  Pointer_group_interface:: add_element(me, "stems", s);
+  Pointer_group_interface:: add_element (me, "stems", s);
   
   s->add_dependency (me);
 
@@ -70,7 +70,7 @@ Beam::get_multiplicity (Grob*me)
   [Alternatively, stems could set its own directions, according to
    their beam, during 'final-pre-processing'.]
  */
-MAKE_SCHEME_CALLBACK(Beam,before_line_breaking,1);
+MAKE_SCHEME_CALLBACK (Beam,before_line_breaking,1);
 SCM
 Beam::before_line_breaking (SCM smob)
 {
@@ -122,7 +122,7 @@ Beam::get_default_dir (Grob*me)
          count[d] ++;
        }
 
-    } while (flip(&d) != DOWN);
+    } while (flip (&d) != DOWN);
   
   SCM func = me->get_grob_property ("dir-function");
   SCM s = gh_call2 (func,
@@ -137,7 +137,7 @@ Beam::get_default_dir (Grob*me)
   /*
     If dir is not determined: get default
   */
-  return to_dir (me->get_grob_property ("default-neutral-direction"));
+  return to_dir (me->get_grob_property ("neutral-direction"));
 }
 
 
@@ -150,7 +150,7 @@ void
 Beam::set_stem_directions (Grob*me)
 {
   Link_array<Item> stems
-    =Pointer_group_interface__extract_elements (me,  (Item*) 0, "stems");
+    =Pointer_group_interface__extract_elements (me, (Item*) 0, "stems");
   Direction d = Directional_element_interface::get (me);
   
   for (int i=0; i <stems.size (); i++)
@@ -187,13 +187,22 @@ Beam::consider_auto_knees (Grob *me)
       
       Grob *common = me->common_refpoint (stems[0], Y_AXIS);
       for (int i=1; i < stems.size (); i++)
-       common = common->common_refpoint (stems[i], Y_AXIS);
-      
+       if (!Stem::invisible_b (stems[i]))
+         common = common->common_refpoint (stems[i], Y_AXIS);
+
+      int l = 0;
       for (int i=1; i < stems.size (); i++)
         {
-         Real left = Stem::extremal_heads (stems[i-1])[d]
+         if (!Stem::invisible_b (stems[i-1]))
+           l = i - 1;
+         if (Stem::invisible_b (stems[l]))
+           continue;
+         if (Stem::invisible_b (stems[i]))
+           continue;
+         
+         Real left = Stem::extremal_heads (stems[l])[d]
            ->relative_coordinate (common, Y_AXIS);
-         Real right = Stem::extremal_heads (stems[i])[d]
+         Real right = Stem::extremal_heads (stems[i])[-d]
            ->relative_coordinate (common, Y_AXIS);
 
          Real dy = right - left;
@@ -210,6 +219,8 @@ Beam::consider_auto_knees (Grob *me)
        {
          for (int i=0; i < stems.size (); i++)
            {
+             if (Stem::invisible_b (stems[i]))
+               continue;
              Item *s = stems[i];         
              Real y = Stem::extremal_heads (stems[i])[d]
                ->relative_coordinate (common, Y_AXIS);
@@ -266,141 +277,109 @@ Beam::set_stem_shorten (Grob*m)
 }
 
 /*
-  Set elt properties height and y-position if not set.
-  Adjust stem lengths to reach beam.
+  Call list of y-dy-callbacks, that handle setting of
+  grob-properties y, dy.
+
+  User may set grob-properties: y-position-hs and height-hs
+ (to be fixed) that override the calculated y and dy.
+
+  Because y and dy cannot be calculated and quanted separately, we
+  always calculate both, then check for user override.
  */
-MAKE_SCHEME_CALLBACK(Beam,after_line_breaking,1);
+MAKE_SCHEME_CALLBACK (Beam, after_line_breaking, 1);
 SCM
 Beam::after_line_breaking (SCM smob)
 {
   Grob * me =  unsmob_grob (smob);
-
-  /* first, calculate y, dy */
-  Real y, dy;
-  calc_default_position_and_height (me, &y, &dy);
-  if (visible_stem_count (me))
-    {
-      if (suspect_slope_b (me, y, dy))
-       dy = 0;
-
-      Real damped_dy = calc_slope_damping_f (me, dy);
-      Real quantised_dy = quantise_dy_f (me, damped_dy);
-
-      y += (dy - quantised_dy) / 2;
-      dy = quantised_dy;
-    }
-  /*
-    until here, we used only stem_info, which acts as if dir=up
-   */
-  y *= Directional_element_interface::get (me);
-  dy *= Directional_element_interface::get (me);
-
-
-  Real half_space = Staff_symbol_referencer::staff_space (me) / 2;
-
-  /* weird: why do we do calc_position_and_height () ? regardless of
-     this setting?
-
-     If the user sets height, we still need to calculate the y-position.
-     If the user sets height-hs, we still need to calculate and
-     quantise y-position.
-
-     We use least squares to calculate y-position and height, so we
-     inherently always calculate both.  */
   
-  /* check for user-override of dy */
-  SCM s = me->remove_grob_property ("height-hs");
-  if (gh_number_p (s))
-    {
-      dy = gh_scm2double (s) * half_space;
-    }
-  me->set_grob_property ("height", gh_double2scm (dy));
+  me->set_grob_property ("y", gh_double2scm (0));
+  me->set_grob_property ("dy", gh_double2scm (0));
 
-  /* check for user-override of y */
-  s = me->remove_grob_property ("y-position-hs");
-  if (gh_number_p (s))
-    {
-      y = gh_scm2double (s) * half_space;
-    }
-  else
-    { 
-      /* we can modify y, so we should quantise y */
-      Real y_shift = check_stem_length_f (me, y, dy);
-      y += y_shift;
-      y = quantise_y_f (me,y, dy, 0);
-      set_stem_length (me, y, dy);
-      y_shift = check_stem_length_f (me, y, dy);
+  /* Hmm, callbacks should be called by, a eh, callback mechanism
+    somewhere (?), I guess, not by looping here. */
+  
+  SCM list = me->get_grob_property ("y-dy-callbacks");
+  for (SCM i = list; gh_pair_p (i); i = gh_cdr (i))
+    gh_call1 (gh_car (i), smob);
 
-      if (y_shift > half_space / 4)
-       {
-         y += y_shift;
-
-         /*
-           for significantly lengthened or shortened stems,
-           request quanting the other way.
-         */
-         int quant_dir = 0;
-         if (abs (y_shift) > half_space / 2)
-           quant_dir = sign (y_shift) * Directional_element_interface::get (me);
-         y = quantise_y_f (me, y, dy, quant_dir);
-       }
-    }
   // UGH. Y is not in staff position unit?
   // Ik dacht datwe daar juist van weg wilden?
-  set_stem_length (me, y, dy);
-  me->set_grob_property ("y-position", gh_double2scm (y));
+  
+  // Hmm, nu hebben we 3 dimensies, want inmiddels zijn we daar
+  // weer terug, maar dan / 2
+  // (staff-space iso staff-position)
+  
+  set_stem_lengths (me);
 
   return SCM_UNSPECIFIED;
 }
 
-/*
-  See Documentation/tex/fonts.doc
- */
-void
-Beam::calc_default_position_and_height (Grob*me,Real* y, Real* dy) 
+
+MAKE_SCHEME_CALLBACK (Beam, least_squares, 1);
+SCM
+Beam::least_squares (SCM smob)
 {
 *y = 0;
-  *dy = 0;  
 if (visible_stem_count (me) <= 1)
-    return;
Grob *me = unsmob_grob (smob);
+
+ if (visible_stem_count (me) <= 1)
+   return SCM_UNSPECIFIED;
 
+  Real y = 0;
+  Real dy = 0;
+
+  /* Stem_info, and thus y,dy in this function are corrected for beam-dir */
   Real first_ideal = Stem::calc_stem_info (first_visible_stem (me)).idealy_f_;
   if (first_ideal == Stem::calc_stem_info (last_visible_stem (me)).idealy_f_)
     {
-      *dy = 0;
-      *y = first_ideal;
-      return;
+      y = first_ideal;
+      dy = 0;
     }
+  else
+    {
+      Array<Offset> ideals;
 
-  Array<Offset> ideals;
+      // ugh -> use commonx
+      Real x0 = first_visible_stem (me)->relative_coordinate (0, X_AXIS);
+      Link_array<Item> stems=
+       Pointer_group_interface__extract_elements (me, (Item*)0, "stems");
 
-  // ugh -> use commonx
-  Real x0 = first_visible_stem (me)->relative_coordinate (0, X_AXIS);
-  Link_array<Item> stems=
-    Pointer_group_interface__extract_elements (me, (Item*)0, "stems");
+      for (int i=0; i < stems.size (); i++)
+       {
+         Item* s = stems[i];
+         if (Stem::invisible_b (s))
+           continue;
+         ideals.push (Offset (s->relative_coordinate (0, X_AXIS) - x0, 
+                              Stem::calc_stem_info (s).idealy_f_));
+       }
+      Real dydx;
+      minimise_least_squares (&dydx, &y, ideals);
 
-  for (int i=0; i < stems.size (); i++)
-    {
-      Item* s = stems[i];
-      if (Stem::invisible_b (s))
-        continue;
-      ideals.push (Offset (s->relative_coordinate (0, X_AXIS) - x0, 
-                          Stem::calc_stem_info (s).idealy_f_));
+      Real dx = last_visible_stem (me)->relative_coordinate (0, X_AXIS) - x0;
+      dy = dydx * dx;
     }
-  Real dydx;
-  minimise_least_squares (&dydx, y, ideals); // duh, takes references
 
-  Real dx = last_visible_stem (me)->relative_coordinate (0, X_AXIS) - x0;
-  *dy = dydx * dx;
+  /* Store true, not dir-corrected values */
+  Direction dir = Directional_element_interface::get (me);
+  me->set_grob_property ("y", gh_double2scm (y * dir));
+  me->set_grob_property ("dy", gh_double2scm (dy * dir));
+  return SCM_UNSPECIFIED;
 }
 
-bool
-Beam::suspect_slope_b (Grob*me, Real y, Real dy) 
+MAKE_SCHEME_CALLBACK (Beam, cancel_suspect_slope, 1);
+SCM
+Beam::cancel_suspect_slope (SCM smob)
 {
-  /* first, calculate y, dy */
-  /*
-    steep slope running against lengthened stem is suspect
-  */
+  Grob *me = unsmob_grob (smob);
+  
+  if (visible_stem_count (me) <= 1)
+    return SCM_UNSPECIFIED;
+  
+  /* Stem_info, and thus y,dy in this function are corrected for beam-dir */
+  Direction dir = Directional_element_interface::get (me);
+  Real y = gh_scm2double (me->get_grob_property ("y")) * dir;
+  Real dy = gh_scm2double (me->get_grob_property ("dy")) * dir;
+  
+ /* steep slope running against lengthened stem is suspect */
   Real first_ideal = Stem::calc_stem_info (first_visible_stem (me)).idealy_f_;
   Real last_ideal = Stem::calc_stem_info (last_visible_stem (me)).idealy_f_;
   Real lengthened = gh_scm2double (me->get_grob_property ("outer-stem-length-limit"));
@@ -410,12 +389,15 @@ Beam::suspect_slope_b (Grob*me, Real y, Real dy)
   Real dx = last_visible_stem (me)->relative_coordinate (0, X_AXIS) - first_visible_stem (me)->relative_coordinate (0, X_AXIS);
   Real dydx = dy && dx ? dy/dx : 0;
 
-  if (((y - first_ideal > lengthened) && (dydx > steep))
+  if (( (y - first_ideal > lengthened) && (dydx > steep))
       || ((y + dy - last_ideal > lengthened) && (dydx < -steep)))
     {
-      return true;
+      Real adjusted_y = y + dy / 2;
+      /* Store true, not dir-corrected values */
+      me->set_grob_property ("y", gh_double2scm (adjusted_y * dir));
+      me->set_grob_property ("dy", gh_double2scm (0)); 
     }
-  return false;
+  return SCM_UNSPECIFIED;
 }
 
 /*
@@ -423,24 +405,168 @@ Beam::suspect_slope_b (Grob*me, Real y, Real dy)
   damped = tanh (slope)
   corresponds with some tables in [Wanske]
 */
-Real
-Beam::calc_slope_damping_f (Grob*me,Real dy) 
+MAKE_SCHEME_CALLBACK (Beam, slope_damping, 1);
+SCM
+Beam::slope_damping (SCM smob)
 {
-  SCM damp = me->get_grob_property ("damping"); 
-  int damping = gh_scm2int (damp);
+  Grob *me = unsmob_grob (smob);
+
+  if (visible_stem_count (me) <= 1)
+    return SCM_UNSPECIFIED;
+
+  SCM s = me->get_grob_property ("damping"); 
+  int damping = gh_scm2int (s);
 
   if (damping)
     {
-  // ugh -> use commonx
+      /* y,dy in this function are corrected for beam-dir */
+      Direction dir = Directional_element_interface::get (me);
+      Real y = gh_scm2double (me->get_grob_property ("y")) * dir;
+      Real dy = gh_scm2double (me->get_grob_property ("dy")) * dir;
+      
+      // ugh -> use commonx
       Real dx = last_visible_stem (me)->relative_coordinate (0, X_AXIS)
        - first_visible_stem (me)->relative_coordinate (0, X_AXIS);
       Real dydx = dy && dx ? dy/dx : 0;
       dydx = 0.6 * tanh (dydx) / damping;
-      return dydx * dx;
+
+      Real damped_dy = dydx * dx;
+      Real adjusted_y = y + (dy - damped_dy) / 2;
+      /* Store true, not dir-corrected values */
+      me->set_grob_property ("y", gh_double2scm (adjusted_y * dir));
+      me->set_grob_property ("dy", gh_double2scm (damped_dy * dir));
     }
-  return dy;
+    return SCM_UNSPECIFIED;
 }
 
+/*
+  Quantise dy (height) of beam.
+  Generalisation of [Ross].
+  */
+MAKE_SCHEME_CALLBACK (Beam, quantise_dy, 1);
+SCM
+Beam::quantise_dy (SCM smob)
+{
+  Grob *me = unsmob_grob (smob);
+
+  if (visible_stem_count (me) <= 1)
+    return SCM_UNSPECIFIED;
+
+  Array<Real> a;
+  SCM proc = me->get_grob_property ("height-quants");
+  SCM quants = gh_call2 (proc, me->self_scm (),
+                        gh_double2scm (me->paper_l ()->get_var ("stafflinethickness")
+                                       / 1.0));
+  
+  for (SCM s = quants; gh_pair_p (s); s = gh_cdr (s))
+    a.push (gh_scm2double (gh_car (s)));
+  
+  if (a.size () > 1)
+    {
+      /* y,dy in this function are corrected for beam-dir */
+      Direction dir = Directional_element_interface::get (me);
+      Real y = gh_scm2double (me->get_grob_property ("y")) * dir;
+      Real dy = gh_scm2double (me->get_grob_property ("dy")) * dir;
+
+      Real staff_space = Staff_symbol_referencer::staff_space (me);
+      
+      Interval iv = quantise_iv (a, abs (dy)/staff_space) * staff_space;
+      Real q = (abs (dy) - iv[SMALLER] <= iv[BIGGER] - abs (dy))
+       ? iv[SMALLER]
+       : iv[BIGGER];
+      
+      Real quantised_dy = q * sign (dy);
+      Real adjusted_y = y + (dy - quantised_dy) / 2;
+      /* Store true, not dir-corrected values */
+      me->set_grob_property ("y", gh_double2scm (adjusted_y * dir));
+      me->set_grob_property ("dy", gh_double2scm (quantised_dy * dir));
+    }
+  return SCM_UNSPECIFIED;
+}
+
+/* It's tricky to have the user override y,dy directly, so we use this
+   translation func.  Also, if our staff_space != 1 (smaller staff, eg),
+   user will expect staff-position to be discrete values. */
+MAKE_SCHEME_CALLBACK (Beam, user_override, 1);
+SCM
+Beam::user_override (SCM smob)
+{
+  Grob *me = unsmob_grob (smob);
+  Real staff_space = Staff_symbol_referencer::staff_space (me);
+
+  SCM s = me->get_grob_property ("staff-position");
+  if (gh_number_p (s))
+    {
+      Real y = gh_scm2double (s) * staff_space * 0.5;
+      me->set_grob_property ("y", gh_double2scm (y));
+    }
+
+  /* Name suggestions? Tilt, slope, vertical-* ? */
+  s = me->get_grob_property ("height");
+  if (gh_number_p (s))
+    {
+      Real dy = gh_scm2double (s) * staff_space * 0.5;
+      me->set_grob_property ("dy", gh_double2scm (dy));
+    }
+  
+  return SCM_UNSPECIFIED;
+}
+
+/*
+  Ugh, this must be last, after user_override
+  Assumes directionised y/dy.
+ */
+MAKE_SCHEME_CALLBACK (Beam, do_quantise_y, 1);
+SCM
+Beam::do_quantise_y (SCM smob)
+{
+  Grob *me = unsmob_grob (smob);
+
+  /*
+    If the user set y-position, we shouldn't do quanting.
+   */
+  if (gh_number_p (me->get_grob_property ("y-position-hs")))
+    return SCM_UNSPECIFIED;
+
+  Real y = gh_scm2double (me->get_grob_property ("y"));
+  Real dy = gh_scm2double (me->get_grob_property ("dy"));
+      
+  /* we can modify y, so we should quantise y */
+  Real half_space = Staff_symbol_referencer::staff_space (me) / 2;
+  Real y_shift = check_stem_length_f (me, y, dy);
+  y += y_shift;
+  y = quantise_y_f (me, y, dy, 0);
+
+  /*
+    Hmm, this is a bit keyhole operation: we're passing `this' as a
+    parameter, and member vars as SCM properties.  We should decide on
+    SCM/C/C++ boundary */
+  me->set_grob_property ("y", gh_double2scm (y));
+  set_stem_lengths (me);
+  y = gh_scm2double (me->get_grob_property ("y"));
+  
+  y_shift = check_stem_length_f (me, y, dy);
+
+  if (y_shift > half_space / 4)
+    {
+      y += y_shift;
+
+      /*
+       for significantly lengthened or shortened stems,
+       request quanting the other way.
+      */
+      int quant_dir = 0;
+      if (abs (y_shift) > half_space / 2)
+       quant_dir = sign (y_shift) * Directional_element_interface::get (me);
+      y = quantise_y_f (me, y, dy, quant_dir);
+    }
+  
+  me->set_grob_property ("y", gh_double2scm (y));
+  // me->set_grob_property ("dy", gh_double2scm (dy));
+  return SCM_UNSPECIFIED;
+}
+
+
 Real
 Beam::calc_stem_y_f (Grob*me,Item* s, Real y, Real dy) 
 {
@@ -490,7 +616,7 @@ Beam::check_stem_length_f (Grob*me,Real y, Real dy)
   Link_array<Item> stems=
     Pointer_group_interface__extract_elements (me, (Item*)0, "stems");
 
-  for (int i=0; i < stems.size(); i++)
+  for (int i=0; i < stems.size (); i++)
     {
       Item* s = stems[i];
       if (Stem::invisible_b (s))
@@ -519,18 +645,22 @@ Beam::check_stem_length_f (Grob*me,Real y, Real dy)
   stem directions and length should set to relative to the chord's
   position of the beam.  */
 void
-Beam::set_stem_length (Grob*me,Real y, Real dy)
+Beam::set_stem_lengths (Grob *me)
 {
+  if (visible_stem_count (me) <= 1)
+    return;
+  
+  Real y = gh_scm2double (me->get_grob_property ("y"));
+  Real dy = gh_scm2double (me->get_grob_property ("dy"));
+
   Real half_space = Staff_symbol_referencer::staff_space (me)/2;
   Link_array<Item> stems=
     Pointer_group_interface__extract_elements (me, (Item*)0, "stems");
 
-  if (stems.size () < 1)
-    return;
-  
   Grob *common = me->common_refpoint (stems[0], Y_AXIS);
   for (int i=1; i < stems.size (); i++)
-    common = common->common_refpoint (stems[i], Y_AXIS);
+    if (!Stem::invisible_b (stems[i]))
+      common = common->common_refpoint (stems[i], Y_AXIS);
 
   for (int i=0; i < stems.size (); i++)
     {
@@ -540,6 +670,13 @@ Beam::set_stem_length (Grob*me,Real y, Real dy)
 
       Real stem_y = calc_stem_y_f (me, s, y, dy);
 
+      // doesn't play well with dvips
+      if (scm_definedp (ly_symbol2scm ("ps-testing"), SCM_UNDEFINED)
+         == SCM_BOOL_T)
+       if (Stem::get_direction (s) == Directional_element_interface::get (me))
+         stem_y += Stem::get_direction (s)
+           * gh_scm2double (me->get_grob_property ("thickness")) / 2;
+      
       /* caution: stem measures in staff-positions */
       Real id = me->relative_coordinate (common, Y_AXIS)
        - stems[i]->relative_coordinate (common, Y_AXIS);
@@ -547,46 +684,10 @@ Beam::set_stem_length (Grob*me,Real y, Real dy)
     }
 }
 
-/*
-  [Ross] (simplification of)
-  Set dy complying with:
-    - zero
-    - thick / 2 + staffline_f / 2
-    - thick + staffline_f
-  + n * staff_space
-*/
-Real
-Beam::quantise_dy_f (Grob*me,Real dy) 
-{
-  Array<Real> a;
-
-  SCM proc = me->get_grob_property ("height-quants");
-  SCM quants = gh_call2 (proc, me->self_scm (),
-                        gh_double2scm (me->paper_l ()->get_var ("stafflinethickness")
-                                       / 1.0));
-  
-  
-  for (SCM s = quants; gh_pair_p (s); s = gh_cdr (s))
-    a.push (gh_scm2double (gh_car (s)));
-  
-  if (a.size () <= 1)
-    return dy;
-
-  Real staff_space = Staff_symbol_referencer::staff_space (me);
-  
-  Interval iv = quantise_iv (a, abs (dy)/staff_space) * staff_space;
-  Real q = (abs (dy) - iv[SMALLER] <= iv[BIGGER] - abs (dy))
-    ? iv[SMALLER]
-    : iv[BIGGER];
-  
-  return q * sign (dy);
-}
-
 /*
   Prevent interference from stafflines and beams.
-  See Documentation/tex/fonts.doc
 
-  We only need to quantise the (left) y-position of the beam,
+  We only need to quantise the (left) y of the beam,
   since dy is quantised too.
   if extend_b then stems must *not* get shorter
  */
@@ -621,7 +722,7 @@ Beam::quantise_y_f (Grob*me,Real y, Real dy, int quant_dir)
   Real q = up_y - iv[SMALLER] <= iv[BIGGER] - up_y 
     ? iv[SMALLER] : iv[BIGGER];
   if (quant_dir)
-    q = iv[(Direction)quant_dir];
+    q = iv[ (Direction)quant_dir];
 
   return q * Directional_element_interface::get (me);
 }
@@ -633,7 +734,7 @@ Beam::set_beaming (Grob*me,Beaming_info_list *beaming)
     Pointer_group_interface__extract_elements (me, (Grob*)0, "stems");
   
   Direction d = LEFT;
-  for (int i=0; i  < stems.size(); i++)
+  for (int i=0; i  < stems.size (); i++)
     {
       do
        {
@@ -659,14 +760,15 @@ Beam::set_beaming (Grob*me,Beaming_info_list *beaming)
   FIXME: clean me up.
   */
 Molecule
-Beam::stem_beams (Grob*me,Item *here, Item *next, Item *prev) 
+Beam::stem_beams (Grob*me,Item *here, Item *next, Item *prev,
+                 Real dy, Real dydx
+                 ) 
 {
   // ugh -> use commonx
-  if ((next && !(next->relative_coordinate (0, X_AXIS) > here->relative_coordinate (0, X_AXIS))) ||
     (prev && !(prev->relative_coordinate (0, X_AXIS) < here->relative_coordinate (0, X_AXIS))))
+  if ((next && ! (next->relative_coordinate (0, X_AXIS) > here->relative_coordinate (0, X_AXIS))) ||
(prev && ! (prev->relative_coordinate (0, X_AXIS) < here->relative_coordinate (0, X_AXIS))))
       programming_error ("Beams are not left-to-right");
 
-  Real staffline_f = me->paper_l ()->get_var ("stafflinethickness");
   int multiplicity = get_multiplicity (me);
 
   SCM space_proc = me->get_grob_property ("space-function");
@@ -676,15 +778,14 @@ Beam::stem_beams (Grob*me,Item *here, Item *next, Item *prev)
   Real interbeam_f = gh_scm2double (space) ;
     
   Real bdy = interbeam_f;
-  Real stemdx = staffline_f;
-
+  
+#if 0
     // ugh -> use commonx
   Real dx = visible_stem_count (me) ?
     last_visible_stem (me)->relative_coordinate (0, X_AXIS) - first_visible_stem (me)->relative_coordinate (0, X_AXIS)
     : 0.0;
-  Real dy = gh_scm2double (me->get_grob_property ("height"));
-  Real dydx = dy && dx ? dy/dx : 0;
-
+#endif
+  
   Molecule leftbeams;
   Molecule rightbeams;
 
@@ -702,6 +803,10 @@ Beam::stem_beams (Grob*me,Item *here, Item *next, Item *prev)
 
   Direction dir = Directional_element_interface::get (me);
   
+  /* [Tremolo] beams on whole notes may not have direction set? */
+ if (dir == CENTER)
+    dir = Directional_element_interface::get (here);
+  
   /* half beams extending to the left. */
   if (prev)
     {
@@ -711,12 +816,20 @@ Beam::stem_beams (Grob*me,Item *here, Item *next, Item *prev)
        Half beam should be one note-width, 
        but let's make sure two half-beams never touch
        */
-      Real w = here->relative_coordinate (0, X_AXIS) - prev->relative_coordinate (0, X_AXIS);
+
+      // FIXME: TODO (check) stem width / sloped beams
+      Real w = here->relative_coordinate (0, X_AXIS)
+       - prev->relative_coordinate (0, X_AXIS);
+      Real stem_w = gh_scm2double (prev->get_grob_property ("thickness"))
+       // URG
+       * me->paper_l ()->get_var ("stafflinethickness");
+
       w = w/2 <? nw_f;
       Molecule a;
       if (lhalfs)              // generates warnings if not
-       a =  Lookup::beam (dydx, w, thick);
+       a =  Lookup::beam (dydx, w + stem_w, thick);
       a.translate (Offset (-w, -w * dydx));
+      a.translate_axis (-stem_w/2, X_AXIS);
       for (int j = 0; j  < lhalfs; j++)
        {
          Molecule b (a);
@@ -727,19 +840,27 @@ Beam::stem_beams (Grob*me,Item *here, Item *next, Item *prev)
 
   if (next)
     {
-      int rhalfs  = Stem::beam_count (here,RIGHT) - Stem::beam_count (next,LEFT);
-      int rwholebeams= Stem::beam_count (here,RIGHT) <? Stem::beam_count (next,LEFT) ;
+      int rhalfs  = Stem::beam_count (here,RIGHT)
+       - Stem::beam_count (next,LEFT);
+      int rwholebeams= Stem::beam_count (here,RIGHT)
+       <? Stem::beam_count (next,LEFT) ;
+
+      Real w = next->relative_coordinate (0, X_AXIS)
+       - here->relative_coordinate (0, X_AXIS);
 
-      Real w = next->relative_coordinate (0, X_AXIS) - here->relative_coordinate (0, X_AXIS);
-      Molecule a = Lookup::beam (dydx, w + stemdx, thick);
-      a.translate_axis( - stemdx/2, X_AXIS);
+      Real stem_w = gh_scm2double (next->get_grob_property ("thickness"))
+       // URG
+       * me->paper_l ()->get_var ("stafflinethickness");
+
+      Molecule a = Lookup::beam (dydx, w + stem_w, thick);
+      a.translate_axis (- stem_w/2, X_AXIS);
       int j = 0;
       Real gap_f = 0;
-
+      
       SCM gap = me->get_grob_property ("gap");
       if (gh_number_p (gap))
        {
-         int gap_i = gh_scm2int ( (gap));
+         int gap_i = gh_scm2int ((gap));
          int nogap = rwholebeams - gap_i;
          
          for (; j  < nogap; j++)
@@ -748,16 +869,24 @@ Beam::stem_beams (Grob*me,Item *here, Item *next, Item *prev)
              b.translate_axis (-dir  * bdy * j, Y_AXIS);
              rightbeams.add_molecule (b);
            }
-         // TODO: notehead widths differ for different types
-         gap_f = nw_f / 2;
+         if (Stem::invisible_b (here))
+           gap_f = nw_f;
+         else
+           gap_f = nw_f / 2;
          w -= 2 * gap_f;
-         a = Lookup::beam (dydx, w + stemdx, thick);
+         a = Lookup::beam (dydx, w + stem_w, thick);
        }
 
       for (; j  < rwholebeams; j++)
        {
          Molecule b (a);
-         b.translate (Offset (Stem::invisible_b (here) ? 0 : gap_f, -dir * bdy * j));
+         Real tx = 0;
+         if (Stem::invisible_b (here))
+           // ugh, see chord-tremolo.ly
+           tx = (-dir + 1) / 2 * nw_f * 1.5 + gap_f/4;
+         else
+           tx = gap_f;
+         b.translate (Offset (tx, -dir * bdy * j));
          rightbeams.add_molecule (b);
        }
 
@@ -782,11 +911,7 @@ Beam::stem_beams (Grob*me,Item *here, Item *next, Item *prev)
   return leftbeams;
 }
 
-/*
-  TODO: it would be nice to introduce y-position via callbacks.
- */
-
-MAKE_SCHEME_CALLBACK(Beam,brew_molecule,1);
+MAKE_SCHEME_CALLBACK (Beam,brew_molecule,1);
 SCM
 Beam::brew_molecule (SCM smob)
 {
@@ -807,22 +932,30 @@ Beam::brew_molecule (SCM smob)
   else
     {
       x0 = stems[0]->relative_coordinate (0, X_AXIS);
-      dx = stems.top()->relative_coordinate (0, X_AXIS) - x0;
+      dx = stems.top ()->relative_coordinate (0, X_AXIS) - x0;
     }
   
+
+
+  /*
+    TODO: the naming of the grob properties sucks.
+   */
+  SCM dy_s = me->get_grob_property ("dy");
+  SCM y_s = me->get_grob_property ("y");
+
   
-  Real dy = gh_scm2double (me->get_grob_property ("height"));
+  Real dy = gh_number_p (dy_s) ? gh_scm2double (dy_s) : 0.0;
   Real dydx = dy && dx ? dy/dx : 0;
-  Real y = gh_scm2double (me->get_grob_property ("y-position"));
+  Real y = gh_number_p (y_s) ? gh_scm2double (y_s) : 0.0;
 
 
-  for (int j=0; j <stems.size  (); j++)
+  for (int j=0; j <stems.size (); j++)
     {
       Item *i = stems[j];
       Item * prev = (j > 0)? stems[j-1] : 0;
-      Item * next = (j < stems.size()-1) ? stems[j+1] :0;
+      Item * next = (j < stems.size ()-1) ? stems[j+1] :0;
 
-      Molecule sb = stem_beams (me, i, next, prev);
+      Molecule sb = stem_beams (me, i, next, prev, dy, dydx);
       Real x = i->relative_coordinate (0, X_AXIS)-x0;
       sb.translate (Offset (x, x * dydx + y));
       mol.add_molecule (sb);
@@ -837,7 +970,7 @@ int
 Beam::forced_stem_count (Grob*me) 
 {
   Link_array<Item>stems = 
-    Pointer_group_interface__extract_elements ( me, (Item*) 0, "stems");
+    Pointer_group_interface__extract_elements (me, (Item*) 0, "stems");
   int f = 0;
   for (int i=0; i < stems.size (); i++)
     {
@@ -846,8 +979,8 @@ Beam::forced_stem_count (Grob*me)
       if (Stem::invisible_b (s))
        continue;
 
-      if (((int)Stem::chord_start_f (s)) 
-        && (Stem::get_direction (s ) != Stem::get_default_dir (s )))
+      if (( (int)Stem::chord_start_f (s)) 
+        && (Stem::get_direction (s) != Stem::get_default_dir (s)))
         f++;
     }
   return f;
@@ -874,10 +1007,10 @@ Beam::visible_stem_count (Grob*me)
 }
 
 Item*
-Beam::first_visible_stem(Grob*me) 
+Beam::first_visible_stem (Grob*me) 
 {
   Link_array<Item>stems = 
-    Pointer_group_interface__extract_elements ( me, (Item*) 0, "stems");
+    Pointer_group_interface__extract_elements (me, (Item*) 0, "stems");
   
   for (int i = 0; i < stems.size (); i++)
     {
@@ -888,10 +1021,10 @@ Beam::first_visible_stem(Grob*me)
 }
 
 Item*
-Beam::last_visible_stem(Grob*me) 
+Beam::last_visible_stem (Grob*me) 
 {
   Link_array<Item>stems = 
-    Pointer_group_interface__extract_elements ( me, (Item*) 0, "stems");
+    Pointer_group_interface__extract_elements (me, (Item*) 0, "stems");
   for (int i = stems.size (); i--;)
     {
       if (!Stem::invisible_b (stems[i]))
@@ -910,7 +1043,7 @@ Beam::last_visible_stem(Grob*me)
     
     rest -> stem -> beam -> interpolate_y_position ()
 */
-MAKE_SCHEME_CALLBACK(Beam,rest_collision_callback,2);
+MAKE_SCHEME_CALLBACK (Beam,rest_collision_callback,2);
 SCM
 Beam::rest_collision_callback (SCM element_smob, SCM axis)
 {
@@ -933,17 +1066,17 @@ Beam::rest_collision_callback (SCM element_smob, SCM axis)
 
 
   // todo: make sure this calced already.
-  SCM s = beam->get_grob_property ("height");
+  SCM s = beam->get_grob_property ("dy");
   if (gh_number_p (s))
     beam_dy = gh_scm2double (s);
   
-  s = beam->get_grob_property ("y-position");
+  s = beam->get_grob_property ("y");
   if (gh_number_p (s))
     beam_y = gh_scm2double (s);
   
   // ugh -> use commonx
-  Real x0 = first_visible_stem(beam)->relative_coordinate (0, X_AXIS);
-  Real dx = last_visible_stem(beam)->relative_coordinate (0, X_AXIS) - x0;
+  Real x0 = first_visible_stem (beam)->relative_coordinate (0, X_AXIS);
+  Real dx = last_visible_stem (beam)->relative_coordinate (0, X_AXIS) - x0;
   Real dydx = beam_dy && dx ? beam_dy/dx : 0;
 
   Direction d = Stem::get_direction (stem);
@@ -968,7 +1101,7 @@ Beam::rest_collision_callback (SCM element_smob, SCM axis)
   if (discrete_dist < stafflines+1)
     discrete_dist = int (ceil (discrete_dist / 2.0)* 2.0);
 
-  return gh_double2scm  (-d *  discrete_dist);
+  return gh_double2scm (-d *  discrete_dist);
 }
 
 
@@ -978,13 +1111,3 @@ Beam::has_interface (Grob*me)
   return me->has_interface (ly_symbol2scm ("beam-interface"));
 }
 
-void
-Beam::set_interface (Grob*me)
-{
-  /*
-    why the init? No way to tell difference between default and user
-    override.  */
-  me->set_grob_property ("height", gh_int2scm (0)); // ugh.
-  me->set_grob_property ("y-position" ,gh_int2scm (0));
-  me->set_interface (ly_symbol2scm("beam-interface"));
-}