Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(21)

Side by Side Diff: lily/accidental.cc

Issue 6489086: Uses horizontal skylines in accidental placement (Closed) Base URL: http://git.savannah.gnu.org/gitweb/?p=lilypond.git/trunk/
Patch Set: Removes unwanted variables Created 12 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | lily/accidental-placement.cc » ('j') | lily/accidental-placement.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 This file is part of LilyPond, the GNU music typesetter. 2 This file is part of LilyPond, the GNU music typesetter.
3 3
4 Copyright (C) 2001--2012 Han-Wen Nienhuys <hanwen@xs4all.nl> 4 Copyright (C) 2001--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
5 5
6 LilyPond is free software: you can redistribute it and/or modify 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 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 8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version. 9 (at your option) any later version.
10 10
11 LilyPond is distributed in the hope that it will be useful, 11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details. 14 GNU General Public License for more details.
15 15
16 You should have received a copy of the GNU General Public License 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/>. 17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
18 */ 18 */
19 19
20 #include "accidental-interface.hh" 20 #include "accidental-interface.hh"
21 #include "font-interface.hh" 21 #include "font-interface.hh"
22 #include "international.hh" 22 #include "international.hh"
23 #include "item.hh" 23 #include "item.hh"
24 #include "output-def.hh" 24 #include "output-def.hh"
25 #include "paper-column.hh" 25 #include "paper-column.hh"
26 #include "pitch.hh" 26 #include "pitch.hh"
27 #include "stencil.hh" 27 #include "stencil.hh"
28 #include "skyline-pair.hh"
28 29
29 Stencil 30 Stencil
30 parenthesize (Grob *me, Stencil m) 31 parenthesize (Grob *me, Stencil m)
31 { 32 {
32 Font_metric *font 33 Font_metric *font
33 = Font_interface::get_default_font (me); 34 = Font_interface::get_default_font (me);
34 Stencil open 35 Stencil open
35 = font->find_by_name ("accidentals.leftparen"); 36 = font->find_by_name ("accidentals.leftparen");
36 Stencil close 37 Stencil close
37 = font->find_by_name ("accidentals.rightparen"); 38 = font->find_by_name ("accidentals.rightparen");
(...skipping 23 matching lines...) Expand all
61 return get_extent (unsmob_grob (smob), Y_AXIS); 62 return get_extent (unsmob_grob (smob), Y_AXIS);
62 } 63 }
63 64
64 MAKE_SCHEME_CALLBACK (Accidental_interface, width, 1); 65 MAKE_SCHEME_CALLBACK (Accidental_interface, width, 1);
65 SCM 66 SCM
66 Accidental_interface::width (SCM smob) 67 Accidental_interface::width (SCM smob)
67 { 68 {
68 return get_extent (unsmob_grob (smob), X_AXIS); 69 return get_extent (unsmob_grob (smob), X_AXIS);
69 } 70 }
70 71
72 MAKE_SCHEME_CALLBACK (Accidental_interface, horizontal_skylines, 1);
73 SCM
74 Accidental_interface::horizontal_skylines (SCM smob)
75 {
76 Grob *me = unsmob_grob (smob);
77 if (!me->is_live ())
78 return Skyline_pair ().smobbed_copy ();
79
80 /*
81 * Using the print function may trigger a suicide
82 * before line breaking. It is therefore `unpure' (c).
83 * We use the more basic get_stencil.
84 */
85 Stencil *my_stencil = unsmob_stencil (get_stencil (me));
86 Skyline_pair *sky =
87 Skyline_pair::unsmob
88 (Stencil::skylines_from_stencil
89 (my_stencil->smobbed_copy (), 0.0, Y_AXIS));
Keith 2013/07/17 06:18:19 We need to check that my_stencil exists here, in c
90
91 if (!sky)
92 return Skyline_pair ().smobbed_copy ();
93 ··
94 SCM alist = me->get_property ("glyph-name-alist");
95 SCM alt = me->get_property ("alteration");
96 string glyph_name = robust_scm2string (ly_assoc_get (alt, alist, SCM_BOOL_F),
97 "");
98 if (glyph_name == "accidentals.flat"
99 || glyph_name == "accidentals.flatflat")
100 {
101 // a bit more padding for the right of the stem
102 // we raise the stem horizontally to a bit less than the average
103 // horizontal "height" of the entire glyph. This will bring flats
104 // closer to doubleflats, which looks better (MS opinion).
105 // this should work for all fonts where the flat is not
106 // completely bizarre
107 Real left = my_stencil->extent (X_AXIS)[LEFT];
108 Real right = my_stencil->extent (X_AXIS)[RIGHT] * 0.375;
109 Real down = my_stencil->extent (Y_AXIS)[DOWN];
110 Real up = my_stencil->extent (Y_AXIS)[UP];
111 vector<Box> boxes;
112 boxes.push_back (Box (Interval (left, right), Interval (down, up)));
113 Skyline merge_with_me (boxes, Y_AXIS, RIGHT);
114 (*sky)[RIGHT].merge (merge_with_me);
115 }
116 return sky->smobbed_copy ();
117 }
118
71 MAKE_SCHEME_CALLBACK (Accidental_interface, pure_height, 3); 119 MAKE_SCHEME_CALLBACK (Accidental_interface, pure_height, 3);
72 SCM 120 SCM
73 Accidental_interface::pure_height (SCM smob, SCM start_scm, SCM) 121 Accidental_interface::pure_height (SCM smob, SCM start_scm, SCM)
74 { 122 {
75 Item *me = dynamic_cast<Item *> (unsmob_grob (smob)); 123 Item *me = dynamic_cast<Item *> (unsmob_grob (smob));
76 int start = scm_to_int (start_scm); 124 int start = scm_to_int (start_scm);
77 int rank = me->get_column ()->get_rank (); 125 int rank = me->get_column ()->get_rank ();
78 126
79 if (to_boolean (me->get_property ("forced")) 127 if (to_boolean (me->get_property ("forced"))
80 || !unsmob_grob (me->get_object ("tie")) 128 || !unsmob_grob (me->get_object ("tie"))
81 || (rank == start + 1 && /* we are at the start of a line */ 129 || (rank == start + 1 && /* we are at the start of a line */
82 !to_boolean (me->get_property ("hide-tied-accidental-after-break")))) 130 !to_boolean (me->get_property ("hide-tied-accidental-after-break"))))
83 { 131 {
84 Stencil *s = unsmob_stencil (get_stencil (me)); 132 Stencil *s = unsmob_stencil (get_stencil (me));
85 if (s) 133 if (s)
86 return ly_interval2scm (s->extent (Y_AXIS)); 134 return ly_interval2scm (s->extent (Y_AXIS));
87 } 135 }
88 136
89 return ly_interval2scm (Interval ()); 137 return ly_interval2scm (Interval ());
90 } 138 }
91 139
92 vector<Box>
93 Accidental_interface::accurate_boxes (Grob *me, Grob **common)
94 {
95 Box b;
96 b[X_AXIS] = me->extent (me, X_AXIS);
97 b[Y_AXIS] = me->extent (me, Y_AXIS);
98
99 vector<Box> boxes;
100
101 bool parens = to_boolean (me->get_property ("parenthesized"));
102 if (!me->is_live ())
103 return boxes;
104
105 if (!to_boolean (me->get_property ("restore-first"))
106 && !parens)
107 {
108 SCM alist = me->get_property ("glyph-name-alist");
109 SCM alt = me->get_property ("alteration");
110 string glyph_name = robust_scm2string (ly_assoc_get (alt, alist, SCM_BOOL_ F),
111 "");
112
113 if (glyph_name == "accidentals.flat"
114 || glyph_name == "accidentals.mirroredflat")
115 {
116 Box stem = b;
117 Box bulb = b;
118
119 /*
120 we could make the stem thinner, but that places the flats
121 really close.
122 */
123 Direction bulb_dir
124 = glyph_name == "accidentals.mirroredflat" ? LEFT : RIGHT;
125 stem[X_AXIS][bulb_dir] = stem[X_AXIS].center ();
126
127 /*
128 To prevent vertical alignment for 6ths
129 */
130 stem[Y_AXIS] *= 1.1;
131 bulb[Y_AXIS][UP] *= .35;
132
133 boxes.push_back (bulb);
134 boxes.push_back (stem);
135 }
136 else if (glyph_name == "accidentals.natural")
137 {
138 Box lstem = b;
139 Box rstem = b;
140 Box belly = b;
141
142 lstem[Y_AXIS] *= 1.1;
143 rstem[Y_AXIS] *= 1.1;
144
145 belly[Y_AXIS] *= 0.75;
146 lstem[X_AXIS][RIGHT] *= .33;
147 rstem[X_AXIS][LEFT] = rstem[X_AXIS].linear_combination (1.0 / 3.0);
148 lstem[Y_AXIS][DOWN] = belly[Y_AXIS][DOWN];
149 rstem[Y_AXIS][UP] = belly[Y_AXIS][UP];
150 boxes.push_back (belly);
151 boxes.push_back (lstem);
152 boxes.push_back (rstem);
153 }
154 /*
155 TODO: add support for, double flat.
156 */
157 }
158
159 if (!boxes.size ())
160 boxes.push_back (b);
161
162 Offset o (me->relative_coordinate (common[X_AXIS], X_AXIS),
163 me->relative_coordinate (common[Y_AXIS], Y_AXIS));
164
165 for (vsize i = boxes.size (); i--;)
166 boxes[i].translate (o);
167
168 return boxes;
169 }
170
171 MAKE_SCHEME_CALLBACK (Accidental_interface, print, 1); 140 MAKE_SCHEME_CALLBACK (Accidental_interface, print, 1);
172 SCM 141 SCM
173 Accidental_interface::print (SCM smob) 142 Accidental_interface::print (SCM smob)
174 { 143 {
175 Grob *me = unsmob_grob (smob); 144 Grob *me = unsmob_grob (smob);
176 Grob *tie = unsmob_grob (me->get_object ("tie")); 145 Grob *tie = unsmob_grob (me->get_object ("tie"));
177 146
178 if (tie 147 if (tie
179 && (to_boolean (me->get_property ("hide-tied-accidental-after-break")) 148 && (to_boolean (me->get_property ("hide-tied-accidental-after-break"))
180 || (!tie->original () && !to_boolean (me->get_property ("forced"))))) 149 || (!tie->original () && !to_boolean (me->get_property ("forced")))))
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 "alteration " 199 "alteration "
231 "avoid-slur " 200 "avoid-slur "
232 "forced " 201 "forced "
233 "glyph-name-alist " 202 "glyph-name-alist "
234 "glyph-name " 203 "glyph-name "
235 "hide-tied-accidental-after-break " 204 "hide-tied-accidental-after-break "
236 "parenthesized " 205 "parenthesized "
237 "restore-first " 206 "restore-first "
238 "tie " 207 "tie "
239 ); 208 );
OLDNEW
« no previous file with comments | « no previous file | lily/accidental-placement.cc » ('j') | lily/accidental-placement.cc » ('J')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b