2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #include "note-head.hh"
24 #include <algorithm> // min, max
28 #include "directional-element-interface.hh"
29 #include "font-interface.hh"
31 #include "international.hh"
32 #include "staff-symbol.hh"
33 #include "staff-symbol-referencer.hh"
37 internal_print (Grob *me, string *font_char)
39 string style = robust_symbol2string (me->get_property ("style"), "default");
41 string suffix = ::to_string (min (robust_scm2int (me->get_property ("duration-log"), 2), 2));
42 if (style != "default")
43 suffix = robust_scm2string (me->get_property ("glyph-name"), "");
45 Font_metric *fm = Font_interface::get_default_font (me);
47 string prefix = "noteheads.";
50 string idx_either = idx_symmetric = prefix + "s";
51 Stencil out = fm->find_by_name (idx_either + suffix);
54 Grob *stem = Grob::unsmob (me->get_object ("stem"));
55 Direction stem_dir = stem ? get_grob_direction (stem) : CENTER;
57 if (stem_dir == CENTER)
58 programming_error ("must have stem dir for note head");
60 idx_either = idx_directed = prefix + (stem_dir == UP ? "u" : "d");
61 out = fm->find_by_name (idx_either + suffix);
64 if (style == "mensural"
65 || style == "neomensural"
66 || style == "petrucci"
70 if (!Staff_symbol_referencer::on_line
72 robust_scm2int (me->get_property ("staff-position"), 0)))
74 Stencil test = fm->find_by_name (idx_either + "r" + suffix);
75 if (!test.is_empty ())
84 && 3 == robust_scm2int (me->get_property ("duration-log"), 2))
86 Grob *stem = Grob::unsmob (me->get_object ("stem"));
87 Grob *beam = Grob::unsmob (stem->get_object ("beam"));
89 out = fm->find_by_name (idx_either + "2kievan");
95 me->warning (_f ("none of note heads `%s' or `%s' found",
96 idx_symmetric.c_str (), idx_directed.c_str ()));
97 out = Stencil (Box (Interval (0, 0), Interval (0, 0)), SCM_EOL);
100 *font_char = idx_either;
106 TODO: make stem X-parent of notehead.
108 MAKE_SCHEME_CALLBACK (Note_head, stem_x_shift, 1);
110 Note_head::stem_x_shift (SCM smob)
112 Grob *me = Grob::unsmob (smob);
113 Grob *stem = Grob::unsmob (me->get_object ("stem"));
115 (void) stem->get_property ("positioning-done");
117 return scm_from_int (0);
120 MAKE_SCHEME_CALLBACK (Note_head, print, 1);
122 Note_head::print (SCM smob)
124 Grob *me = Grob::unsmob (smob);
127 return internal_print (me, &idx).smobbed_copy ();
130 MAKE_SCHEME_CALLBACK (Note_head, include_ledger_line_height, 1);
132 Note_head::include_ledger_line_height (SCM smob)
134 Grob *me = Grob::unsmob (smob);
135 Grob *staff = Staff_symbol_referencer::get_staff_symbol (me);
139 Real ss = Staff_symbol::staff_space (staff);
140 Interval lines = Staff_symbol::line_span (staff) * (ss / 2.0);
141 Real my_pos = Staff_symbol_referencer::get_position (me) * ss / 2.0;
142 Interval my_ext = me->extent (me, Y_AXIS) + my_pos;
144 // The +1 and -1 come from the fact that we only want to add
145 // the interval between the note and the first ledger line, not
146 // the whole interval between the note and the staff.
147 Interval iv (min (0.0, lines[UP] - my_ext[DOWN] + 1),
148 max (0.0, lines[DOWN] - my_ext[UP] - 1));
149 return ly_interval2scm (iv);
152 return ly_interval2scm (Interval (0, 0));
156 Note_head::stem_attachment_coordinate (Grob *me, Axis a)
158 Offset off = robust_scm2offset (me->get_property ("stem-attachment"),
165 Note_head::get_stem_attachment (Font_metric *fm, const string &key)
169 int k = fm->name_to_index (key);
172 Box b = fm->get_indexed_char_dimensions (k);
173 Offset wxwy = fm->attachment_point (key);
174 for (int i = X_AXIS; i < NO_AXES; i++)
181 att[a] = (2 * (wxwy[a] - v.center ()) / v.length ());
189 MAKE_SCHEME_CALLBACK (Note_head, calc_stem_attachment, 1);
191 Note_head::calc_stem_attachment (SCM smob)
193 Grob *me = Grob::unsmob (smob);
194 Font_metric *fm = Font_interface::get_default_font (me);
196 internal_print (me, &key);
198 return ly_offset2scm (get_stem_attachment (fm, key));
201 ADD_INTERFACE (Note_head,
202 "A note head. There are many possible values for"
203 " @code{style}. For a complete list, see"
204 " @ruser{Note head styles}.",