]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-head.cc
* lily/include/translator.icc
[lilypond.git] / lily / note-head.cc
1 /*
2   notehead.cc -- implement Note_head
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "note-head.hh"
10
11 #include <math.h>
12 #include <cctype>
13 #include <algorithm>            //  min, max
14
15 using namespace std; 
16
17 #include "directional-element-interface.hh"
18 #include "staff-symbol.hh"
19 #include "misc.hh"
20 #include "dots.hh"
21 #include "warn.hh"
22 #include "font-interface.hh"
23 #include "music.hh"
24 #include "rhythmic-head.hh"
25 #include "staff-symbol-referencer.hh"
26 #include "lookup.hh"
27 #include "output-def.hh"
28
29 /*
30   clean up the mess left by ledger line handling.
31 */
32 static Stencil
33 internal_print (Grob *me, String *font_char)
34 {
35   SCM style = me->get_property ("style");
36   if (!scm_is_symbol (style))
37     {
38       style = ly_symbol2scm ("default");
39     }
40
41   SCM log = scm_int2num (Note_head::get_balltype (me));
42   SCM proc = me->get_property ("glyph-name-procedure");
43
44   String suffix =  to_string (min (robust_scm2int (me->get_property ("duration-log"), 2), 2));
45   if (style != ly_symbol2scm ("default")
46       && ly_is_procedure (proc))
47     suffix = ly_scm2string (scm_call_2 (proc, log, style));
48   
49   Font_metric *fm = Font_interface::get_default_font (me);
50
51   String idx = "noteheads.s" + suffix;
52
53   Stencil out = fm->find_by_name (idx);
54   if (out.is_empty ())
55     {
56       String prefix = "noteheads.";
57       Grob *stem = unsmob_grob (me->get_object ("stem"));
58       Direction stem_dir = stem ? get_grob_direction (stem) : CENTER;
59       
60       if (stem_dir == CENTER)
61         programming_error ("must have stem dir for note head");
62       String idx = prefix + ((stem_dir == UP) ? "u" : "d") + suffix;
63       out = fm->find_by_name (idx);
64     }
65
66   if (out.is_empty ())
67     {
68       me->warning (_f ("note head `%s' not found", idx.to_str0 ()));
69     }
70   else
71     {
72       *font_char = idx;
73     }
74
75   return out;
76 }
77
78 MAKE_SCHEME_CALLBACK (Note_head, print, 1);
79 SCM
80 Note_head::print (SCM smob)
81 {
82   Grob *me = unsmob_grob (smob);
83
84   String idx;
85   return internal_print (me, &idx).smobbed_copy ();
86 }
87
88 Real
89 Note_head::stem_attachment_coordinate (Grob *me, Axis a)
90 {
91   SCM brewer = me->get_property ("print-function");
92   Font_metric *fm = Font_interface::get_default_font (me);
93
94   if (brewer == Note_head::print_proc)
95     {
96       String key;
97       internal_print (me, &key);
98
99       int k = fm->name_to_index (key);
100       if (k >= 0)
101         {
102           Box b = fm->get_indexed_char (k);
103           Offset wxwy = fm->attachment_point (key);
104           Interval v = b[a];
105           if (!v.is_empty ())
106             return 2 * (wxwy[a] - v.center ()) / v.length ();
107         }
108     }
109
110   /*
111     Fallback
112   */
113   SCM v = me->get_property ("stem-attachment-function");
114   if (!ly_is_procedure (v))
115     return 0.0;
116
117   SCM result = scm_call_2 (v, me->self_scm (), scm_int2num (a));
118   if (!scm_is_pair (result))
119     return 0.0;
120
121   result = (a == X_AXIS) ? scm_car (result) : scm_cdr (result);
122
123   return robust_scm2double (result, 0);
124 }
125
126 int
127 Note_head::get_balltype (Grob *me)
128 {
129   SCM s = me->get_property ("duration-log");
130   return scm_is_number (s) ? min (scm_to_int (s), 2) : 0;
131 }
132
133 ADD_INTERFACE (Note_head, "note-head-interface",
134                "Note head",
135                "note-names glyph-name-procedure accidental-grob style stem-attachment-function");
136