]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/stem-tremolo.cc
($(outdir)/%.pdf): add DVIPS_FLAGS. This will
[lilypond.git] / lily / stem-tremolo.cc
index 46d14dcfea6fa82ed2cd6ed1b66baaa46b589c25..327433bbdbe1cb0f2e9a6eb610833569ce436a7f 100644 (file)
@@ -3,12 +3,12 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "stem-tremolo.hh"
-#include "debug.hh"
+#include "warn.hh"
 #include "beam.hh"
 #include "paper-def.hh"
 #include "lookup.hh"
   TODO:
     lengthen stem if necessary
  */
-
-void
-Stem_tremolo::set_interface (Score_element *me)
-{
-  me->set_interface (ly_symbol2scm ("stem-tremolo"));
-}
-
-bool
-Stem_tremolo::has_interface (Score_element *me)
-{
-  return me->has_interface (ly_symbol2scm ("stem-tremolo"));
-}
-
-MAKE_SCHEME_CALLBACK(Stem_tremolo,dim_callback,2);
+MAKE_SCHEME_CALLBACK (Stem_tremolo,dim_callback,2);
 
 /*
   todo: init with cons. 
  */
 SCM
-Stem_tremolo::dim_callback (SCM e, SCM )
+Stem_tremolo::dim_callback (SCM e, SCM)
 {
-  Score_element * se = unsmob_element (e);
+  Grob * se = unsmob_grob (e);
   
   Real space = Staff_symbol_referencer::staff_space (se);
-  return ly_interval2scm ( Interval (-space, space));
+  return ly_interval2scm (Interval (-space, space));
 }
 
+/*
+  ugh ?  --from Slur
+ */
+MAKE_SCHEME_CALLBACK (Stem_tremolo, height, 2);
+SCM
+Stem_tremolo::height (SCM smob, SCM ax)
+{
+  Axis a = (Axis)gh_scm2int (ax);
+  Grob * me = unsmob_grob (smob);
+  assert (a == Y_AXIS);
+
+  SCM mol = me->get_uncached_stencil ();
+
+  if (Stencil *m = unsmob_stencil (mol))
+    return ly_interval2scm (m->extent (a));
+  else
+    return ly_interval2scm (Interval());
+}
 
 
-MAKE_SCHEME_CALLBACK(Stem_tremolo,brew_molecule,1);
-SCM
-Stem_tremolo::brew_molecule (SCM smob)
+Stencil
+Stem_tremolo::raw_stencil (Grob *me)
 {
-  Score_element *me= unsmob_element (smob);
-  Score_element * stem = unsmob_element (me->get_elt_property ("stem"));
-  Score_element * beam = Stem::beam_l (stem);
+  Grob *stem = unsmob_grob (me->get_grob_property ("stem"));
+  Grob *beam = Stem::get_beam (stem);
   
   Real dydx;
   if (beam)
     {
       Real dy = 0;
-      SCM s = beam->get_elt_property ("height");
-      if (gh_number_p (s))
-       dy = gh_scm2double (s);
+      SCM s = beam->get_grob_property ("positions");
+      if (is_number_pair (s))
+       {
+         dy = -gh_scm2double (gh_car (s)) +gh_scm2double (gh_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;
@@ -73,78 +79,125 @@ Stem_tremolo::brew_molecule (SCM smob)
     // urg
     dydx = 0.25;
 
-  Real ss = Staff_symbol_referencer::staff_space (stem);
-  Real thick = gh_scm2double (me->get_elt_property ("beam-thickness"));
-  Real width = gh_scm2double (me->get_elt_property ("beam-width"));
+  Real ss = Staff_symbol_referencer::staff_space (me);
+  Real thick = robust_scm2double (me->get_grob_property ("beam-thickness"),1);
+  Real width = robust_scm2double (me->get_grob_property ("beam-width"),1);
+  Real blot = me->get_paper ()->get_realvar (ly_symbol2scm ("blotdiameter"));
+
   width *= ss;
   thick *= ss;
   
-  Molecule a (me->lookup_l ()->beam (dydx, width, thick));
+  Stencil a (Lookup::beam (dydx, width, thick, blot));
   a.translate (Offset (-width/2, width / 2 * dydx));
   
-  int tremolo_flags;
-  SCM s = me->get_elt_property ("tremolo-flags");
+  int tremolo_flags = 0;
+  SCM s = me->get_grob_property ("flag-count");
   if (gh_number_p (s))
     tremolo_flags = gh_scm2int (s);
-  else
-    // huh?
-    tremolo_flags = 1;
 
-  int mult = beam ? Beam::get_multiplicity (beam) : 0;
-  SCM space_proc = me->get_elt_property ("beam-space-function");
-  SCM space = gh_call1 (space_proc, gh_int2scm (mult));
-  Real interbeam_f = gh_scm2double (space) * ss;
+  if (!tremolo_flags)
+    {
+      programming_error ("No tremolo flags?");
+
+      me->suicide();
+      return Stencil ();
+    }
+
+  /*
+    Who the fuck is 0.81 ?
 
+    --hwn.
+   */
+  Real beam_translation = beam ? Beam::get_beam_translation (beam) : 0.81;
 
-  Molecule mol; 
+  Stencil mol; 
   for (int i = 0; i < tremolo_flags; i++)
     {
-      Molecule b (a);
-      b.translate_axis (interbeam_f * i, Y_AXIS);
-      mol.add_molecule (b);
+      Stencil b (a);
+      b.translate_axis (beam_translation * i, Y_AXIS);
+      mol.add_stencil (b);
     }
-  if (tremolo_flags)
-    mol.translate_axis (-mol.extent (Y_AXIS).center (), Y_AXIS);
-  if (beam)
+  return mol;
+}
+
+
+MAKE_SCHEME_CALLBACK (Stem_tremolo,print,1);
+SCM
+Stem_tremolo::print (SCM grob) 
+{
+  Grob *me = unsmob_grob (grob);
+  Grob *stem = unsmob_grob (me->get_grob_property ("stem"));
+  Grob *beam = Stem::get_beam (stem);
+  Direction stemdir = Stem::get_direction (stem);
+  Real beam_translation
+    = (beam && beam->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;
+
+  /*
+    TODO.
+   */
+
+
+  Real beamthickness = 0.0;
+  SCM sbt = (beam) ? beam->get_grob_property ("thickness") : SCM_EOL ;
+  if (gh_number_p (sbt))
+    {
+      beamthickness = gh_scm2double (sbt) * ss;
+    }
+
+  Real end_y
+    = Stem::stem_end_position (stem) *ss/2 
+    - stemdir * (beam_count * beamthickness
+                + ((beam_count -1) >? 0) * beam_translation);
+
+  /*
+    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 + .5 * stemdir, Y_AXIS);
+    }
+  else if (stemdir * (end_y - chord_start_y) - 2*padding - mol_ext.length ()  < 0.0)
     {
-      // ugh, rather calc from Stem_tremolo_req
-      int beams_i = Stem::beam_count(stem, RIGHT) >? Stem::beam_count (stem, LEFT);
-      mol.translate (Offset(stem->relative_coordinate (0, X_AXIS) - me->relative_coordinate (0, X_AXIS),
-                           Stem::stem_end_position (stem ) * ss / 2 - 
-                           Directional_element_interface::get (beam) * beams_i * interbeam_f));
+      mol.translate_axis (0.5 * (end_y + chord_start_y)  - mol_ext.center (),Y_AXIS);
     }
   else
-    {  
-      /*
-       Beams should intersect one beamthickness below stem end
-      */
-      Real dy = Stem::stem_end_position (stem ) * ss / 2;
-      dy -= mol.extent (Y_AXIS).length () / 2 *  Stem::get_direction (stem );
-
-      /*
-       uhg.  Should use relative coords and placement
-      */
-      Real whole_note_correction;
-      if (Stem::invisible_b (stem ))
-       {
-         Score_element *hed = Stem::support_head (stem );
-         whole_note_correction = -Stem::get_direction (stem )
-           *hed->extent (hed, X_AXIS).length () / 2;
-       }
-      else
-       whole_note_correction = 0;
-        
-      mol.translate (Offset (stem->relative_coordinate (0, X_AXIS) - me->relative_coordinate (0, X_AXIS) +
-                            whole_note_correction, dy));
+    {
+      mol.translate_axis (end_y - stemdir * beam_translation
+                         -mol_ext [stemdir]
+                         , Y_AXIS);
     }
   
-  return mol.create_scheme();
+  return mol.smobbed_copy ();
 }
 
 
 void
-Stem_tremolo::set_stem (Score_element*me,Score_element *s)
+Stem_tremolo::set_stem (Grob*me,Grob *s)
 {
-  me->set_elt_property ("stem", s->self_scm ());
+  me->set_grob_property ("stem", s->self_scm ());
 }
 
+
+ADD_INTERFACE (Stem_tremolo,"stem-tremolo-interface",
+  "",
+  "stem beam-width beam-thickness flag-count");