]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/stem-tremolo.cc
release commit
[lilypond.git] / lily / stem-tremolo.cc
index 1ca152c2754b3d2687ea8e712e0ba17f5f733ccd..7c0cd9140711e617d276c723fd18c19b1d3d89a0 100644 (file)
-/*   
-  abbrev.cc --  implement Stem_tremolo
-  
+/*
+  stem-tremolo.cc -- implement Stem_tremolo
+
   source file of the GNU LilyPond music typesetter
-  
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 1997--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
 #include "stem-tremolo.hh"
-#include "debug.hh"
+
+#include "spanner.hh"
 #include "beam.hh"
-#include "paper-def.hh"
+#include "directional-element-interface.hh"
+#include "item.hh"
 #include "lookup.hh"
-#include "stem.hh"
-#include "offset.hh"
-#include "dimension-cache.hh"
+#include "output-def.hh"
 #include "staff-symbol-referencer.hh"
-#include "directional-element-interface.hh"
+#include "stem.hh"
+#include "warn.hh"
 
-Stem_tremolo::Stem_tremolo ()
-{
-  set_elt_property ("stem", SCM_EOL);
-}
+/* TODO: lengthen stem if necessary  */
 
+MAKE_SCHEME_CALLBACK (Stem_tremolo, dim_callback, 1);
 
-Stem *
-Stem_tremolo::stem_l ()const
+/* todo: init with cons.  */
+SCM
+Stem_tremolo::dim_callback (SCM e)
 {
-  SCM s =   get_elt_property ("stem");
+  Grob *se = unsmob_grob (e);
 
-  return dynamic_cast<Stem*> (  unsmob_element (s));
+  Real space = Staff_symbol_referencer::staff_space (se);
+  return ly_interval2scm (Interval (-space, space));
 }
 
-Interval
-Stem_tremolo::dim_callback (Dimension_cache const *c) 
+MAKE_SCHEME_CALLBACK (Stem_tremolo, height, 1);
+SCM
+Stem_tremolo::height (SCM smob)
 {
-  Stem_tremolo * s = dynamic_cast<Stem_tremolo*> (c->element_l ());
-  Real space = Staff_symbol_referencer_interface (s->stem_l ())
-    .staff_space ();
-  return Interval (-space, space);
-}
+  Grob *me = unsmob_grob (smob);
 
+  /* TODO: fixme. uncached? */
+  return ly_interval2scm (me->get_stencil ()
+                         ? me->get_stencil ()->extent (Y_AXIS)
+                         : Interval());
+}
 
-Molecule*
-Stem_tremolo::do_brew_molecule_p () const
+Stencil
+Stem_tremolo::raw_stencil (Grob *me)
 {
-  Stem * st = stem_l ();
-  int mult =0;
-  if (Beam * b = st->beam_l ())
+  Grob *stem = unsmob_grob (me->get_object ("stem"));
+  Spanner *beam = Stem::get_beam (stem);
+
+  SCM slope = me->get_property ("slope");
+  Real dydx = 0.25;
+  if (scm_is_number (slope))
     {
-      mult = b->get_multiplicity ();
+      dydx = robust_scm2double (slope, 0.0);
     }
-  
-  Real interbeam_f = paper_l ()->interbeam_f (mult);
-  Real w  = gh_scm2double (get_elt_property ("beam-width"));
-  Real space = Staff_symbol_referencer_interface (st).staff_space ();
-  Real half_staff_space = space / 2;
-  Real beam_f = gh_scm2double (get_elt_property ("beam-thickness"));
-
-  int beams_i = 0;
-  Real dydx = 0.25;
-  
-  if (st && st->beam_l ())
+  else
     {
-      Real dy = 0;
-      SCM s = st->beam_l ()->get_elt_property ("height");
-      if (gh_number_p (s))
-       dy = gh_scm2double (s);
-      Real dx = st->beam_l ()->last_visible_stem ()->hpos_f ()
-       - st->beam_l ()->first_visible_stem ()->hpos_f ();
-      dydx = dy/dx;
-  
-      // ugh, rather calc from Stem_tremolo_req
-      beams_i = st->beam_count(RIGHT) >? st->beam_count (LEFT);
-    } 
-
-  Molecule a (lookup_l ()->beam (dydx, w, beam_f));
-  a.translate (Offset (-w/2, w / 2 * dydx));
-  
-  int abbrev_flags = 1;
-  {
-    SCM a = get_elt_property ("abbrev-flags");
-    if (gh_number_p (a))
-      abbrev_flags = gh_scm2int (a);
-  }
-
-  Molecule *beams= new Molecule; 
-  for (int i = 0; i < abbrev_flags; i++)
+      if (beam)
+       {
+         Real dy = 0;
+         SCM s = beam->get_property ("positions");
+         if (is_number_pair (s))
+           dy = - scm_to_double (scm_car (s)) + scm_to_double (scm_cdr (s));
+
+         Real dx = Beam::last_visible_stem (beam)->relative_coordinate (0, X_AXIS)
+           - Beam::first_visible_stem (beam)->relative_coordinate (0, X_AXIS);
+         dydx = dx ? dy / dx : 0;
+       }
+    }
+  Real ss = Staff_symbol_referencer::staff_space (me);
+  Real thick = robust_scm2double (me->get_property ("beam-thickness"), 1);
+  Real width = robust_scm2double (me->get_property ("beam-width"), 1);
+  Real blot = me->layout ()->get_dimension (ly_symbol2scm ("blotdiameter"));
+
+  width *= ss;
+  thick *= ss;
+
+  Stencil a (Lookup::beam (dydx, width, thick, blot));
+  a.translate (Offset (-width * 0.5, width * 0.5 * dydx));
+
+  int tremolo_flags = 0;
+  SCM s = me->get_property ("flag-count");
+  if (scm_is_number (s))
+    tremolo_flags = scm_to_int (s);
+
+  if (!tremolo_flags)
     {
-      Molecule b (a);
-      b.translate_axis (interbeam_f * i, Y_AXIS);
-      beams->add_molecule (b);
+      programming_error ("no tremolo flags");
+
+      me->suicide ();
+      return Stencil ();
     }
-  beams->translate_axis (-beams->extent ()[Y_AXIS].center (), Y_AXIS);
-
-  if (st)
-    { 
-      if (st->beam_l ())
-        {
-         beams->translate (Offset(st->hpos_f () - hpos_f (),
-           st->stem_end_position () * half_staff_space - 
-           directional_element (st->beam_l ()).get () * beams_i * interbeam_f));
-       }
-      else
-       {  
-         /*
-           Beams should intersect one beamthickness below staff end
-          */
-         Real dy = - beams->extent ()[Y_AXIS].length () / 2 * st->get_direction ();
-
-         /*
-           uhg.  Should use relative coords and placement
-         */
-         Real whole_note_correction = (st && st->invisible_b( ))
-           ? 0.0 //  -st->get_direction () * st->note_delta_f ()/2
-           : 0.0;
-        
-         dy += st->stem_end_position ();
-         beams->translate (Offset(st->hpos_f () - hpos_f ()+
-                                  whole_note_correction, dy));
-       }
 
-      /*
-       there used to be half a page of code that was long commented out.
-       Removed in 1.1.35
-       */
+  /* Who the fuck is 0.81 ? --hwn.   */
+  Real beam_translation = beam ? Beam::get_beam_translation (beam) : 0.81;
+
+  Stencil mol;
+  for (int i = 0; i < tremolo_flags; i++)
+    {
+      Stencil b (a);
+      b.translate_axis (beam_translation * i, Y_AXIS);
+      mol.add_stencil (b);
     }
-  
-  return beams;
+  return mol;
 }
 
-
-void
-Stem_tremolo::set_stem (Stem *s)
+MAKE_SCHEME_CALLBACK (Stem_tremolo, print, 1);
+SCM
+Stem_tremolo::print (SCM grob)
 {
-  set_elt_property ("stem", s->self_scm_);
-  add_dependency (s);
+  Grob *me = unsmob_grob (grob);
+  Grob *stem = unsmob_grob (me->get_object ("stem"));
+  if (!stem)
+    {
+      programming_error ("no stem for stem-tremolo");
+      return SCM_EOL;
+    }
+
+  Spanner *beam = Stem::get_beam (stem);
+  Direction stemdir = get_grob_direction (stem);
+  if (stemdir == 0)
+    stemdir = UP;
+
+  Real beam_translation
+    = (beam && beam->is_live ())
+    ? Beam::get_beam_translation (beam)
+    : 0.81;
+
+  Stencil mol = raw_stencil (me);
+  Interval mol_ext = mol.extent (Y_AXIS);
+  Real ss = Staff_symbol_referencer::staff_space (me);
+
+  // ugh, rather calc from Stem_tremolo_req
+  int beam_count = beam ? (Stem::beam_multiplicity (stem).length () + 1) : 0;
+
+  Real beamthickness = 0.0;
+  SCM sbt = (beam) ? beam->get_property ("thickness") : SCM_EOL;
+  if (scm_is_number (sbt))
+    beamthickness = scm_to_double (sbt) * ss;
+
+  Real end_y
+    = Stem::stem_end_position (stem) * ss / 2
+    - stemdir * (beam_count * beamthickness
+                + (max (beam_count -1, 0) * beam_translation));
+
+  /* FIXME: the 0.33 ss is to compensate for the size of the note head.  */
+  Real chord_start_y = Stem::chord_start_y (stem) + 0.33 * ss * stemdir;
+
+  Real padding = beam_translation;
+
+  /* if there is a flag, just above/below the notehead.
+     if there is not enough space, center on remaining space,
+     else one beamspace away from stem end.  */
+  if (!beam && Stem::duration_log (stem) >= 3)
+    {
+      mol.align_to (Y_AXIS, -stemdir);
+      mol.translate_axis (chord_start_y + 0.5 * stemdir, Y_AXIS);
+    }
+  else if (stemdir * (end_y - chord_start_y) - 2 * padding - mol_ext.length ()
+          < 0.0)
+    mol.translate_axis (0.5 * (end_y + chord_start_y) - mol_ext.center (),
+                       Y_AXIS);
+  else
+    mol.translate_axis (end_y - stemdir * beam_translation -mol_ext [stemdir],
+                       Y_AXIS);
+
+  return mol.smobbed_copy ();
 }
 
+ADD_INTERFACE (Stem_tremolo, "stem-tremolo-interface",
+              "A beam slashing a stem to indicate a tremolo.",
+              "stem "
+              "slope "
+              "beam-width "
+              "beam-thickness "
+              "flag-count");