]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-head.cc
* flower
[lilypond.git] / lily / note-head.cc
index bda7f38c2d443e9025b14ec41efc7520992b254f..ba5903c8ac241170568873f47c36dac145567e95 100644 (file)
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
+
+#include "note-head.hh"
+
 #include <math.h>
+#include <cctype>
 
+#include "directional-element-interface.hh"
+#include "staff-symbol.hh"
 #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 "output-def.hh"
 
 /*
-  build a ledger line for small pieces.
- */
-Molecule
-Note_head::ledger_line (Interval xwid, Grob *me) 
+  clean up the mess left by ledger line handling.
+*/
+static Stencil
+internal_print (Grob *me, String *font_char)
 {
-  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;
-
-  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);
-
-  Real xpos = xwid [LEFT] + len;
-
-  while (xpos + len + thick /2 <= xwid[RIGHT])
+  SCM style = me->get_property ("style");
+  if (!scm_is_symbol (style))
     {
-      e->translate_axis (len, X_AXIS);
-      total.add_molecule (*e);
-      xpos += len;
+      return Stencil ();
     }
 
-  return total;
-}
-
-
-Molecule
-Note_head::ledger_lines (Grob*me, int count, Direction dir, Interval idw)
-{
-  Real inter_f = Staff_symbol_referencer::staff_space (me)/2;
-  Molecule ledger (ledger_line (idw, me));
+  SCM log = scm_int2num (Note_head::get_balltype (me));
+  SCM proc = me->get_property ("glyph-name-procedure");
+  SCM scm_font_char = scm_call_2 (proc, log, style);
 
-  ledger.set_empty (true);
-  Real offs = (Staff_symbol_referencer::on_staffline (me))
-    ? 0.0
-    : -dir * inter_f;
+  Font_metric *fm = Font_interface::get_default_font (me);
 
-  Molecule legs;
-  for (int i=0; i < count; i++)
+  Direction stem_dir = CENTER;
+  if (Grob *stem = unsmob_grob (me->get_property ("stem")))
     {
-      Molecule s (ledger);
-      s.translate_axis (-dir * inter_f * i*2 + offs,
-                       Y_AXIS);
-      legs.add_molecule (s);
+      stem_dir = get_grob_direction (stem);
+      if (stem_dir == CENTER)
+       {
+         programming_error ("Must have stem dir for note head");
+       }
     }
 
-  return legs;
-}
-
-MAKE_SCHEME_CALLBACK (Note_head,brew_molecule,1);
-
-SCM
-Note_head::brew_molecule (SCM smob)  
-{
-  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;
+  Stencil out;
 
-  SCM style  = me->get_grob_property ("style");
-  if (!gh_symbol_p (style))
+  String prefix = "noteheads.";
+  String idx
+    = prefix + ((stem_dir == UP) ? "u" : "d") + ly_scm2string (scm_font_char);
+  out = fm->find_by_name (idx);
+  if (out.is_empty ())
     {
-      return SCM_EOL;
+      idx = prefix + "s" + ly_scm2string (scm_font_char);
+      out = fm->find_by_name (idx);
     }
 
-  /*
-    ugh: use gh_call () / scm_apply ().
-
-    UGH: use grob-property.
-  */
-  Molecule out = Font_interface::get_default_font (me)->find_by_name (String ("noteheads-") + 
-               ly_scm2string (scm_primitive_eval (scm_list_n (ly_symbol2scm ("find-notehead-symbol"),
-                                                 me->get_grob_property ("duration-log"),
-                                                 ly_quote_scm (style),
-                                                           SCM_UNDEFINED))));
-
-  if (streepjes_i) 
+  if (out.is_empty ())
     {
-      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)));
+      me->warning (_f ("note head `%s' not found", idx.to_str0 ()));
+    }
+  else
+    {
+      *font_char = idx;
     }
-  
-  return out.smobbed_copy ();
-}
 
-bool
-Note_head::has_interface (Grob*m)
-{
-  return m&& m->has_interface (ly_symbol2scm ("note-head-interface"));
+  return out;
 }
 
+MAKE_SCHEME_CALLBACK (Note_head, print, 1);
+SCM
+Note_head::print (SCM smob)
+{
+  Grob *me = unsmob_grob (smob);
 
-MAKE_SCHEME_CALLBACK (Note_head,brew_ez_molecule,1);
+  String idx;
+  return internal_print (me, &idx).smobbed_copy ();
+}
 
+MAKE_SCHEME_CALLBACK (Note_head, brew_ez_stencil, 1);
 SCM
-Note_head::brew_ez_molecule (SCM smob)
+Note_head::brew_ez_stencil (SCM smob)
 {
   Grob *me = unsmob_grob (smob);
-  int l = gh_scm2int (me->get_grob_property ("duration-log"));
+  int l = Note_head::get_balltype (me);
 
   int b = (l >= 2);
-  SCM at = scm_list_n (ly_symbol2scm ("ez-ball"),
-                   me->get_grob_property ("note-character"),
-                   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);
-      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)));
+
+  SCM cause = me->get_property ("cause");
+  SCM spitch = unsmob_music (cause)->get_property ("pitch");
+  Pitch *pit = unsmob_pitch (spitch);
+
+  SCM idx = scm_int2num (pit->get_notename ());
+  SCM names = me->get_property ("note-names");
+  SCM charstr = SCM_EOL;
+  if (scm_is_vector (names))
+    charstr = scm_vector_ref (names, idx);
+  else
+    {
+      char s[2] = "a";
+      s[0] = (pit->get_notename () + 2)%7 + 'a';
+      s[0] = toupper (s[0]);
+      charstr = scm_makfrom0str (s);
     }
   
+  SCM at = scm_list_n (ly_symbol2scm ("ez-ball"),
+                      charstr,
+                      scm_int2num (b),
+                      scm_int2num (1 - b),
+                      SCM_UNDEFINED);
+  Box bx (Interval (0, 1.0), Interval (-0.5, 0.5));
+  Stencil m (bx, at);
+
   return m.smobbed_copy ();
 }
 
-
 Real
 Note_head::stem_attachment_coordinate (Grob *me, Axis a)
 {
-  SCM v = me->get_grob_property ("stem-attachment-function");
+  SCM brewer = me->get_property ("print-function");
+  Font_metric *fm = Font_interface::get_default_font (me);
 
-  if (!gh_procedure_p (v))
-    return 0.0;
+  if (brewer == Note_head::print_proc)
+    {
+      String key;
+      internal_print (me, &key);
+
+      int k = fm->name_to_index (key);
+      if (k >= 0)
+       {
+         Box b = fm->get_indexed_char (k);
+         Offset wxwy = fm->attachment_point (key);
+         Interval v = b[a];
+         if (!v.is_empty ())
+           return 2 * (wxwy[a] - v.center ()) / v.length ();
+       }
+    }
 
-  SCM st = me->get_grob_property ("style");
-  SCM result = gh_apply (v, scm_list_n (st, SCM_UNDEFINED));
+  /*
+    Fallback
+  */
+  SCM v = me->get_property ("stem-attachment-function");
+  if (!ly_c_procedure_p (v))
+    return 0.0;
 
-  if (!gh_pair_p (result))
+  SCM result = scm_call_2 (v, me->self_scm (), scm_int2num (a));
+  if (!scm_is_pair (result))
     return 0.0;
 
-  result = (a == X_AXIS) ? ly_car (result) : ly_cdr (result);
-  
-  return gh_number_p (result) ?  gh_scm2double (result) : 0.0;
+  result = (a == X_AXIS) ? scm_car (result) : scm_cdr (result);
+
+  return robust_scm2double (result, 0);
 }
+
+int
+Note_head::get_balltype (Grob *me)
+{
+  SCM s = me->get_property ("duration-log");
+  return scm_is_number (s) ? scm_to_int (s) <? 2 : 0;
+}
+
+ADD_INTERFACE (Note_head, "note-head-interface",
+              "Note head",
+              "note-names glyph-name-procedure accidental-grob style stem-attachment-function");
+