]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-head.cc
Fix some bugs in the dynamic engraver and PostScript backend
[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--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "note-head.hh"
10
11 #include <cmath>
12 #include <cctype>
13 #include <algorithm>            //  min, max
14 using namespace std;
15
16 #include "directional-element-interface.hh"
17 #include "dots.hh"
18 #include "font-interface.hh"
19 #include "international.hh"
20 #include "lookup.hh"
21 #include "misc.hh"
22 #include "music.hh"
23 #include "output-def.hh"
24 #include "rhythmic-head.hh"
25 #include "staff-symbol-referencer.hh"
26 #include "staff-symbol.hh"
27 #include "warn.hh"
28
29 static Stencil
30 internal_print (Grob *me, string *font_char)
31 {
32   SCM style = me->get_property ("style");
33   if (!scm_is_symbol (style))
34     style = ly_symbol2scm ("default");
35
36   string suffix = to_string (min (robust_scm2int (me->get_property ("duration-log"), 2), 2));
37   if (style != ly_symbol2scm ("default"))
38     {
39       SCM gn = me->get_property ("glyph-name");
40       if (scm_is_string (gn))
41         suffix = ly_scm2string (gn);
42     }
43
44   Font_metric *fm = Font_interface::get_default_font (me);
45
46   string idx = "noteheads.s" + suffix;
47   Stencil out = fm->find_by_name (idx);
48   if (out.is_empty ())
49     {
50       string prefix = "noteheads.";
51
52       Grob *stem = unsmob_grob (me->get_object ("stem"));
53       Direction stem_dir = stem ? get_grob_direction (stem) : CENTER;
54       
55       if (stem_dir == CENTER)
56         programming_error ("must have stem dir for note head");
57       
58       idx = prefix + ((stem_dir == UP) ? "u" : "d") + suffix;
59       out = fm->find_by_name (idx);
60     }
61
62
63   if (out.is_empty ())
64     {
65       me->warning (_f ("note head `%s' not found", idx.c_str ()));
66       out = Stencil (Box (Interval (0, 0), Interval (0, 0)), SCM_EOL);
67     }
68   else
69     *font_char = idx;
70
71   return out;
72 }
73
74 /*
75   TODO: make stem X-parent of notehead. 
76  */
77 MAKE_SCHEME_CALLBACK (Note_head, stem_x_shift, 1);
78 SCM
79 Note_head::stem_x_shift (SCM smob)
80 {
81   Grob *me = unsmob_grob (smob);
82   Grob *stem = unsmob_grob (me->get_object ("stem"));
83   if (stem)
84     (void) stem->get_property ("positioning-done");
85
86   return scm_from_int (0);
87 }
88
89 MAKE_SCHEME_CALLBACK (Note_head, print, 1);
90 SCM
91 Note_head::print (SCM smob)
92 {
93   Grob *me = unsmob_grob (smob);
94
95   string idx;
96   return internal_print (me, &idx).smobbed_copy ();
97 }
98
99 Real
100 Note_head::stem_attachment_coordinate (Grob *me, Axis a)
101 {
102   Offset off = robust_scm2offset (me->get_property ("stem-attachment"),
103                                   Offset (0,0));
104   
105   return off [a];
106 }
107
108 Offset
109 Note_head::get_stem_attachment (Font_metric *fm, string key)
110 {
111   Offset att;
112   
113   int k = fm->name_to_index (key);
114   if (k >= 0)
115     {
116       Box b = fm->get_indexed_char (k);
117       Offset wxwy = fm->attachment_point (key);
118       for (int i = X_AXIS ; i < NO_AXES; i++)
119         {
120           Axis a = Axis (i);
121           
122           Interval v = b[a];
123           if (!v.is_empty ())
124             {
125               att[a] = (2 * (wxwy[a] - v.center ()) / v.length ());
126             }
127         }
128     }
129
130   return att;
131 }
132
133 MAKE_SCHEME_CALLBACK(Note_head, calc_stem_attachment, 1);
134 SCM
135 Note_head::calc_stem_attachment (SCM smob)
136 {
137   Grob *me  = unsmob_grob (smob);
138   Font_metric *fm = Font_interface::get_default_font (me);
139   string key;
140   internal_print (me, &key);
141
142   return ly_offset2scm (get_stem_attachment (fm, key));
143 }
144
145 int
146 Note_head::get_balltype (Grob *me)
147 {
148   SCM s = me->get_property ("duration-log");
149   return scm_is_number (s) ? min (int (scm_to_int (s)), 2) : 0;
150 }
151
152 ADD_INTERFACE (Note_head, "note-head-interface",
153                "Note head",
154
155                /* properties */
156                "note-names "
157                "accidental-grob "
158                "glyph-name "
159                "stem-attachment "
160                "style "
161                );
162