]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-head.cc
Run `make grand-replace'.
[lilypond.git] / lily / note-head.cc
index 7ab1d8b9d05f70de895115f5dc7f77607524b435..17db761f2f88463a97463fc3b02a6abffa00a7ce 100644 (file)
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
-#include <math.h>
-#include <ctype.h>
 
-#include "staff-symbol.hh"
-#include "misc.hh"
-#include "dots.hh"
 #include "note-head.hh"
-#include "warn.hh"
+
+#include <cmath>
+#include <cctype>
+#include <algorithm>           //  min, max
+
+using namespace std;
+
+#include "directional-element-interface.hh"
 #include "font-interface.hh"
-#include "stencil.hh"
-#include "event.hh"
-#include "rhythmic-head.hh"
-#include "staff-symbol-referencer.hh"
-#include "lookup.hh"
-#include "output-def.hh"
+#include "international.hh"
+#include "warn.hh"
+#include "grob.hh"
 
-/*
-  clean up the mess left by ledger line handling.
-*/
 static Stencil
-internal_print (Grob *me)
+internal_print (Grob *me, string *font_char)
 {
-  SCM style  = me->get_property ("style");
+  SCM style = me->get_property ("style");
   if (!scm_is_symbol (style))
+    style = ly_symbol2scm ("default");
+
+  string suffix = to_string (min (robust_scm2int (me->get_property ("duration-log"), 2), 2));
+  if (style != ly_symbol2scm ("default"))
     {
-      return Stencil ();
+      SCM gn = me->get_property ("glyph-name");
+      if (scm_is_string (gn))
+       suffix = ly_scm2string (gn);
     }
 
-  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);
-  String font_char = "noteheads-" + ly_scm2string (scm_font_char);
+  Font_metric *fm = Font_interface::get_default_font (me);
 
-  Font_metric * fm = Font_interface::get_default_font (me);
-  Stencil out = fm->find_by_name (font_char);
+  string idx_symmetric;
+  string idx_directed;
+  string idx_either;
+  idx_symmetric = idx_either = "noteheads.s" + suffix;
+  Stencil out = fm->find_by_name (idx_symmetric);
   if (out.is_empty ())
     {
-      me->warning (_f ("note head `%s' not found", font_char.to_str0 ()));
-    }
+      string prefix = "noteheads.";
 
-  return out;
-}
+      Grob *stem = unsmob_grob (me->get_object ("stem"));
+      Direction stem_dir = stem ? get_grob_direction (stem) : CENTER;
+      
+      if (stem_dir == CENTER)
+       programming_error ("must have stem dir for note head");
+      
+      idx_directed = idx_either =
+       prefix + ((stem_dir == UP) ? "u" : "d") + suffix;
+      out = fm->find_by_name (idx_directed);
+    }
 
 
-MAKE_SCHEME_CALLBACK (Note_head,print,1);
-SCM
-Note_head::print (SCM smob)  
-{
-  Grob *me = unsmob_grob (smob);
+  if (out.is_empty ())
+    {
+      me->warning (_f ("none of note heads `%s' or `%s' found",
+                      idx_symmetric.c_str (), idx_directed.c_str ()));
+      out = Stencil (Box (Interval (0, 0), Interval (0, 0)), SCM_EOL);
+    }
+  else
+    *font_char = idx_either;
 
-  return internal_print (me).smobbed_copy ();
+  return out;
 }
 
 /*
-  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.
+  TODO: make stem X-parent of notehead. 
  */
-Interval
-Note_head::head_extent (Grob *me, Axis a)
+MAKE_SCHEME_CALLBACK (Note_head, stem_x_shift, 1);
+SCM
+Note_head::stem_x_shift (SCM smob)
 {
-  SCM brewer = me->get_property ("print-function");
-  if (brewer == Note_head::print_proc)
-    {
-      Stencil mol = internal_print (me);
-  
-      if (!mol.is_empty ())
-       return mol.extent (a);
-    }
-  else
-    {
-      Stencil * mol = me->get_stencil ();
-      if (mol)
-       return  mol->extent (a) ;
-    }
-  
-  return Interval (0,0);
+  Grob *me = unsmob_grob (smob);
+  Grob *stem = unsmob_grob (me->get_object ("stem"));
+  if (stem)
+    (void) stem->get_property ("positioning-done");
+
+  return scm_from_int (0);
 }
 
-MAKE_SCHEME_CALLBACK (Note_head,brew_ez_stencil,1);
+MAKE_SCHEME_CALLBACK (Note_head, print, 1);
 SCM
-Note_head::brew_ez_stencil (SCM smob)
+Note_head::print (SCM smob)
 {
   Grob *me = unsmob_grob (smob);
-  int l = Note_head::get_balltype (me);
-
-  int b = (l >= 2);
-
-  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 (ly_c_vector_p (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 ();
+  string idx;
+  return internal_print (me, &idx).smobbed_copy ();
 }
 
-
 Real
 Note_head::stem_attachment_coordinate (Grob *me, Axis a)
 {
-  SCM brewer = me->get_property ("print-function");
-  Font_metric * fm  = Font_interface::get_default_font (me);
+  Offset off = robust_scm2offset (me->get_property ("stem-attachment"),
+                                 Offset (0,0));
   
-  if (brewer == Note_head::print_proc)
-    {
-      SCM style  = me->get_property ("style");
-      if (!scm_is_symbol (style))
-       {
-         return 0.0;
-       }
-      
-      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);
-      String font_char = "noteheads-" + ly_scm2string (scm_font_char);
-
-      int k = fm->name_to_index (font_char) ;
+  return off [a];
+}
 
-      if (k >= 0)
+Offset
+Note_head::get_stem_attachment (Font_metric *fm, string key)
+{
+  Offset att;
+  
+  int k = fm->name_to_index (key);
+  if (k >= 0)
+    {
+      Box b = fm->get_indexed_char (k);
+      Offset wxwy = fm->attachment_point (key);
+      for (int i = X_AXIS ; i < NO_AXES; i++)
        {
-         Box b = fm->get_indexed_char (k);
-         Offset wxwy = fm->get_indexed_wxwy (k);
+         Axis a = Axis (i);
+         
          Interval v = b[a];
          if (!v.is_empty ())
-           return 2 * (wxwy[a] - v.center ()) / v.length ();
+           {
+             att[a] = (2 * (wxwy[a] - v.center ()) / v.length ());
+           }
        }
     }
-  
-  /*
-    Fallback
-   */
-  SCM v = me->get_property ("stem-attachment-function");
-  if (!ly_c_procedure_p (v))
-    return 0.0;
-  
-  SCM result = scm_call_2 (v, me->self_scm (), scm_int2num (a));
-  if (!ly_c_pair_p (result))
-    return 0.0;
 
-  result = (a == X_AXIS) ? ly_car (result) : ly_cdr (result);
-  
-  return robust_scm2double (result,0);
+  return att;
 }
 
-int
-Note_head::get_balltype (Grob*me) 
+MAKE_SCHEME_CALLBACK (Note_head, calc_stem_attachment, 1);
+SCM
+Note_head::calc_stem_attachment (SCM smob)
 {
-  SCM s = me->get_property ("duration-log");
-  return scm_is_number (s) ? scm_to_int (s) <? 2 : 0;
+  Grob *me  = unsmob_grob (smob);
+  Font_metric *fm = Font_interface::get_default_font (me);
+  string key;
+  internal_print (me, &key);
+
+  return ly_offset2scm (get_stem_attachment (fm, key));
 }
 
-ADD_INTERFACE (Note_head,"note-head-interface",
-  "Note head",
-  "note-names glyph-name-procedure accidental-grob style stem-attachment-function");
+
+ADD_INTERFACE (Note_head,
+              "Note head.",
+
+              /* properties */
+              "note-names "
+              "accidental-grob "
+              "glyph-name "
+              "stem-attachment "
+              "style "
+              );