]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-head.cc
* lily/include/translator.icc: new file.
[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   Direction stem_dir = CENTER;
52   if (Grob *stem = unsmob_grob (me->get_object ("stem")))
53     {
54       stem_dir = get_grob_direction (stem);
55       if (stem_dir == CENTER)
56         programming_error ("must have stem dir for note head");
57     }
58
59   Stencil out;
60
61   String prefix = "noteheads.";
62   String idx
63     = prefix + ((stem_dir == UP) ? "u" : "d") + suffix;
64   out = fm->find_by_name (idx);
65   if (out.is_empty ())
66     {
67       idx = prefix + "s" + suffix;
68       out = fm->find_by_name (idx);
69     }
70
71   if (out.is_empty ())
72     {
73       me->warning (_f ("note head `%s' not found", idx.to_str0 ()));
74     }
75   else
76     {
77       *font_char = idx;
78     }
79
80   return out;
81 }
82
83 MAKE_SCHEME_CALLBACK (Note_head, print, 1);
84 SCM
85 Note_head::print (SCM smob)
86 {
87   Grob *me = unsmob_grob (smob);
88
89   String idx;
90   return internal_print (me, &idx).smobbed_copy ();
91 }
92
93 Real
94 Note_head::stem_attachment_coordinate (Grob *me, Axis a)
95 {
96   SCM brewer = me->get_property ("print-function");
97   Font_metric *fm = Font_interface::get_default_font (me);
98
99   if (brewer == Note_head::print_proc)
100     {
101       String key;
102       internal_print (me, &key);
103
104       int k = fm->name_to_index (key);
105       if (k >= 0)
106         {
107           Box b = fm->get_indexed_char (k);
108           Offset wxwy = fm->attachment_point (key);
109           Interval v = b[a];
110           if (!v.is_empty ())
111             return 2 * (wxwy[a] - v.center ()) / v.length ();
112         }
113     }
114
115   /*
116     Fallback
117   */
118   SCM v = me->get_property ("stem-attachment-function");
119   if (!ly_is_procedure (v))
120     return 0.0;
121
122   SCM result = scm_call_2 (v, me->self_scm (), scm_int2num (a));
123   if (!scm_is_pair (result))
124     return 0.0;
125
126   result = (a == X_AXIS) ? scm_car (result) : scm_cdr (result);
127
128   return robust_scm2double (result, 0);
129 }
130
131 int
132 Note_head::get_balltype (Grob *me)
133 {
134   SCM s = me->get_property ("duration-log");
135   return scm_is_number (s) ? min (scm_to_int (s), 2) : 0;
136 }
137
138 ADD_INTERFACE (Note_head, "note-head-interface",
139                "Note head",
140                "note-names glyph-name-procedure accidental-grob style stem-attachment-function");
141