]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-head.cc
* lily/align-interface.cc (find_fixed_alignment_parent): new function.
[lilypond.git] / lily / note-head.cc
index 9c894986e371603f37c1bfc91d7fdbb82b2ccb62..a703d13db5a3c75e76f87f567ae6fb19998d4408 100644 (file)
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 #include <math.h>
+#include <ctype.h>
 
 #include "misc.hh"
 #include "dots.hh"
 #include "note-head.hh"
-#include "debug.hh"
+#include "warn.hh"
 #include "font-interface.hh"
 #include "molecule.hh"
-#include "musical-request.hh"
+#include "event.hh"
 #include "rhythmic-head.hh"
-
 #include "staff-symbol-referencer.hh"
+#include "lookup.hh"
+#include "paper-def.hh"
 
 /*
-  build a ledger line for small pieces.
- */
-Molecule
-Note_head::ledger_line (Interval xwid, Grob *me) 
-{
-  Drul_array<Molecule> endings;
-  endings[LEFT] = Font_interface::get_default_font (me)->find_by_name ("noteheads-ledgerending");
-  Molecule *e = &endings[LEFT];
-  endings[RIGHT] = *e;
-  
-  Real thick = e->extent (Y_AXIS).length ();
-  Real len = e->extent (X_AXIS).length () - thick;
+  Note_head contains the code for printing note heads.
 
-  Molecule total;
-  Direction d = LEFT;
-  do {
-    endings[d].translate_axis (xwid[d] - endings[d].extent (X_AXIS)[d], X_AXIS);
-    total.add_molecule (endings[d]);    
-  } while ((flip (&d)) != LEFT);
+  Ledger lines:
 
-  Real xpos = xwid [LEFT] + len;
+  It also contains the ledger lines, for historical reasons.  Ledger
+  lines are somewhat of a PITA. In some cases, they take up no space, in
+  some cases they don't:
 
-  while (xpos + len + thick /2 <= xwid[RIGHT])
-    {
-      e->translate_axis (len, X_AXIS);
-      total.add_molecule (*e);
-      xpos += len;
-    }
+  DO take space:
 
-  return total;
-}
+  - when ledgered notes are juxtaposed: there should be some white
+   space between the ledger lines.
 
+  - when accidentals are near: the accidentals should not be on the
+  ledger lines
+
+  [both tips by Heinz Stolba from Universal Edition].
+
+  DO NOT take space into account:
+
+  - for basically everything else, e.g. swapping ledgered notes on
+   clustered chords, spacing between ledgered and unledgered notes.
+  
+  TODO: fix this. It is not feasible to have a special grob for
+  ledgers, since you basically don't know if there will be ledgers,
+  unless you know at interpretation phase already 1. the Y-position,
+  2. the number of staff lines. It's not yet specced when both pieces
+  of information are there, so for now, it is probably better to build
+  special support for ledgers into the accidental and separation-item
+  code.
+
+  (Besides a separate ledger seems overkill. For what else would
+  it be useful?)
+
+*/
 
 Molecule
-Note_head::ledger_lines (Grob*me, int count, Direction dir, Interval idw)
+Note_head::brew_ledger_lines (Grob *me,
+                              int pos,
+                              int interspaces,
+                              Interval x_extent,
+                              bool take_space)
 {
   Real inter_f = Staff_symbol_referencer::staff_space (me)/2;
-  Molecule ledger (ledger_line (idw, me));
-
-  ledger.set_empty (true);
-  Real offs = (Staff_symbol_referencer::on_staffline (me))
-    ? 0.0
-    : -dir * inter_f;
+  int lines_i = abs (pos) < interspaces
+    ? 0
+    : (abs (pos) - interspaces) / 2;
+  Molecule molecule = Molecule();
 
-  Molecule legs;
-  for (int i=0; i < count; i++)
+  if (lines_i)
     {
-      Molecule s (ledger);
-      s.translate_axis (-dir * inter_f * i*2 + offs,
-                       Y_AXIS);
-      legs.add_molecule (s);
+      Real ledgerlinethickness =
+       (me->get_paper ()->get_var ("ledgerlinethickness"));
+      Real blotdiameter = ledgerlinethickness;
+      //       (me->get_paper ()->get_var ("blotdiameter"));
+      Interval y_extent =
+       Interval (-0.5*(ledgerlinethickness),
+                 +0.5*(ledgerlinethickness));
+      Box ledger_line (x_extent, y_extent);
+
+      Molecule proto_ledger_line =
+       Lookup::roundfilledbox (ledger_line, blotdiameter);
+      
+      if (!take_space)
+        proto_ledger_line.set_empty (true);
+
+      Direction dir = (Direction)sign (pos);
+      Real offs = (Staff_symbol_referencer::on_staffline (me, pos))
+        ? 0.0
+        : -dir * inter_f;
+      for (int i = 0; i < lines_i; i++)
+        {
+          Molecule ledger_line (proto_ledger_line);
+          ledger_line.translate_axis (-dir * inter_f * i * 2 + offs, Y_AXIS);
+          molecule.add_molecule (ledger_line);
+        }
     }
 
-  return legs;
+  return molecule;
 }
 
-MAKE_SCHEME_CALLBACK (Note_head,brew_molecule,1);
-
-SCM
-Note_head::brew_molecule (SCM smob)  
+Molecule
+internal_brew_molecule (Grob *me, bool ledger_take_space)
 {
-  Grob *me = unsmob_grob (smob);
-
-  int sz = Staff_symbol_referencer::line_count (me)-1;
-  int p = (int)  rint (Staff_symbol_referencer::position_f (me));
-  int streepjes_i = abs (p) < sz 
-    ? 0
-    : (abs (p) - sz) /2;
-
   SCM style  = me->get_grob_property ("style");
   if (!gh_symbol_p (style))
     {
-      return SCM_EOL;
+      return Molecule();
     }
 
-  /*
-    ugh: use gh_call () / scm_apply ().
+  SCM log = gh_int2scm (Note_head::get_balltype (me));
+  SCM proc = me->get_grob_property ("glyph-name-procedure");
+  SCM scm_font_char = scm_call_2 (proc, log, style);
+  String font_char = "noteheads-" + ly_scm2string (scm_font_char);
 
-    UGH: use grob-property.
-  */
-  SCM log = gh_int2scm (Rhythmic_head::balltype_i (me));
-  SCM exp = scm_list_n (ly_symbol2scm ("find-notehead-symbol"), log,
-                       ly_quote_scm (style),
-                       SCM_UNDEFINED);
-  String name = "noteheads-" + ly_scm2string (scm_primitive_eval (exp));
-  Molecule out = Font_interface::get_default_font (me)->find_by_name (name);
+  Font_metric * fm = Font_interface::get_default_font (me);
+  Molecule out = fm->find_by_name (font_char);
+  if (out.empty_b())
+    {
+      me->warning (_f ("note head `%s' not found", font_char.to_str0 ()));
+    }
 
-  
-  if (streepjes_i) 
+  int interspaces = Staff_symbol_referencer::line_count (me)-1;
+  int pos = (int)rint (Staff_symbol_referencer::get_position (me));
+  if (abs (pos) - interspaces > 1)
     {
-      Direction dir = (Direction)sign (p);
       Interval hd = out.extent (X_AXIS);
-      Real hw = hd.length ()/4;
-      out.add_molecule (ledger_lines (me, streepjes_i, dir,
-                                     Interval (hd[LEFT] - hw,
-                                               hd[RIGHT] + hw)));
+      Real left_ledger_protusion = hd.length ()/4;
+      Real right_ledger_protusion = left_ledger_protusion;
+
+      if (unsmob_grob(me->get_grob_property ("accidental-grob")))
+       {
+         /*
+           make a little room for accidentals.
+         
+           TODO: this will look silly if a chord has ledger lines,
+           and only the bottom note has an accidental.
+         */
+         
+         left_ledger_protusion *= 0.66;
+         right_ledger_protusion *= 0.9; 
+       }
+
+      Interval l_extents = Interval (hd[LEFT] - left_ledger_protusion,
+                                    hd[RIGHT] + right_ledger_protusion);
+      out.add_molecule (Note_head::brew_ledger_lines (me, pos, interspaces,
+                                                     l_extents,
+                                                     ledger_take_space));
     }
-  
-  return out.smobbed_copy ();
+  return out;
 }
 
-bool
-Note_head::has_interface (Grob*m)
+
+MAKE_SCHEME_CALLBACK (Note_head,brew_molecule,1);
+SCM
+Note_head::brew_molecule (SCM smob)  
+{
+  Grob *me = unsmob_grob (smob);
+
+  /*
+    ledgers don't take space. See top of file.
+   */
+  return internal_brew_molecule (me, false).smobbed_copy ();
+}
+
+/*
+  Compute the width the head without ledgers.
+
+  -- there used to be some code from the time that ledgers
+  did take space. Nowadays, we can simply take the standard extent.
+ */
+Interval
+Note_head::head_extent (Grob *me, Axis a)
 {
-  return m&& m->has_interface (ly_symbol2scm ("note-head-interface"));
+  Molecule * mol = me->get_molecule();
+  return mol ? mol ->extent (a) : Interval(0,0);
 }
 
 
+
 MAKE_SCHEME_CALLBACK (Note_head,brew_ez_molecule,1);
 
 SCM
 Note_head::brew_ez_molecule (SCM smob)
 {
   Grob *me = unsmob_grob (smob);
-  int l = Rhythmic_head::balltype_i (me);
+  int l = Note_head::get_balltype (me);
 
   int b = (l >= 2);
+
+  SCM cause = me->get_grob_property ("cause");
+  SCM spitch = unsmob_music (cause)->get_mus_property ("pitch");
+  Pitch* pit =  unsmob_pitch (spitch);
+
+  char s[2] = "a";
+  s[0] = (pit->get_notename () + 2)%7 + 'a';
+  s[0] = toupper (s[0]);
+  
+  SCM charstr = scm_makfrom0str (s);
+  
   SCM at = scm_list_n (ly_symbol2scm ("ez-ball"),
-                   me->get_grob_property ("note-character"),
-                   gh_int2scm (b),
-                   gh_int2scm (1-b),
-                   SCM_UNDEFINED);
+                      charstr,
+                      gh_int2scm (b),
+                      gh_int2scm (1-b),
+                      SCM_UNDEFINED);
   Box bx (Interval (0, 1.0), Interval (-0.5, 0.5));
   Molecule m (bx, at);
-  int p = (int)  rint (Staff_symbol_referencer::position_f (me));
-
-  int sz = Staff_symbol_referencer::line_count (me)-1;
-  int streepjes_i = abs (p) < sz 
-    ? 0
-    : (abs (p) - sz) /2;
 
- if (streepjes_i)
-   {
-      Direction dir = (Direction)sign (p);
+  int pos = (int)rint (Staff_symbol_referencer::get_position (me));
+  int interspaces = Staff_symbol_referencer::line_count (me)-1;
+  if (abs (pos) - interspaces > 1)
+    {
       Interval hd = m.extent (X_AXIS);
       Real hw = hd.length ()/4;
-      m.add_molecule (ledger_lines (me, streepjes_i, dir,
-                                     Interval (hd[LEFT] - hw,
-                                               hd[RIGHT] + hw)));
+      Interval extent = Interval (hd[LEFT] - hw, hd[RIGHT] + hw);
+      m.add_molecule (brew_ledger_lines (me, pos, interspaces, extent, false));
     }
-  
+
   return m.smobbed_copy ();
 }
 
@@ -173,7 +232,8 @@ Note_head::stem_attachment_coordinate (Grob *me, Axis a)
     return 0.0;
 
   SCM st = me->get_grob_property ("style");
-  SCM result = gh_apply (v, scm_list_n (st, SCM_UNDEFINED));
+  SCM log = gh_int2scm (get_balltype (me));
+  SCM result = gh_apply (v, scm_list_n (st, log, SCM_UNDEFINED));
 
   if (!gh_pair_p (result))
     return 0.0;
@@ -182,3 +242,15 @@ Note_head::stem_attachment_coordinate (Grob *me, Axis a)
   
   return gh_number_p (result) ?  gh_scm2double (result) : 0.0;
 }
+
+int
+Note_head::get_balltype (Grob*me) 
+{
+  SCM s = me->get_grob_property ("duration-log");
+  return gh_number_p (s) ? gh_scm2int (s) <? 2 : 0;
+}
+
+ADD_INTERFACE (Note_head,"note-head-interface",
+  "Note head",
+  "glyph-name-procedure accidental-grob style stem-attachment-function");
+