]> git.donarmstrong.com Git - lilypond.git/blob - lily/accidental.cc
Nitpick run.
[lilypond.git] / lily / accidental.cc
1 /*
2   accidental.cc -- implement Accidental_interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2001--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "accidental-interface.hh"
10 #include "font-interface.hh"
11 #include "item.hh"
12 #include "output-def.hh"
13 #include "pitch.hh"
14 #include "stencil.hh"
15
16 /*
17   TODO: insert support for smaller cautionaries, tie-break-reminders.
18   Either here or in new-accidental-engraver.
19
20   'accidentals should go, for a single 'accidental property -- see
21   accidental-placement.cc
22 */
23 Stencil
24 parenthesize (Grob *me, Stencil m)
25 {
26   Stencil open = Font_interface::get_default_font (me)->find_by_name ("accidentals.leftparen");
27   Stencil close = Font_interface::get_default_font (me)->find_by_name ("accidentals.rightparen");
28
29   m.add_at_edge (X_AXIS, LEFT, Stencil (open), 0, 0);
30   m.add_at_edge (X_AXIS, RIGHT, Stencil (close), 0, 0);
31
32   return m;
33 }
34
35 MAKE_SCHEME_CALLBACK (Accidental_interface, after_line_breaking, 1);
36 SCM
37 Accidental_interface::after_line_breaking (SCM smob)
38 {
39   Grob *me = unsmob_grob (smob);
40   Grob *tie = unsmob_grob (me->get_object ("tie"));
41
42   if (tie && !tie->original_)
43     me->suicide ();
44   return SCM_UNSPECIFIED;
45 }
46
47 Array<Box>
48 Accidental_interface::accurate_boxes (Grob *a, Grob **common)
49 {
50   Box b;
51   b[X_AXIS] = a->extent (a, X_AXIS);
52   b[Y_AXIS] = a->extent (a, Y_AXIS);
53
54   Array<Box> boxes;
55
56   bool parens = false;
57   if (to_boolean (a->get_property ("cautionary")))
58     {
59       SCM cstyle = a->get_property ("cautionary-style");
60       parens = ly_is_equal (cstyle, ly_symbol2scm ("parentheses"));
61     }
62
63   SCM accs = a->get_property ("accidentals");
64   SCM scm_style = a->get_property ("style");
65   if (!scm_is_symbol (scm_style)
66       && !parens
67       && scm_ilength (accs) == 1)
68     {
69       switch (scm_to_int (scm_car (accs)))
70         {
71         case FLAT:
72           {
73             Box stem = b;
74             Box bulb = b;
75
76             /*
77               we could make the stem thinner, but that places the flats
78               really close.
79             */
80             stem[X_AXIS][RIGHT] *= .5;
81
82             /*
83               To prevent vertical alignment for 6ths
84             */
85             stem[Y_AXIS] *= 1.1;
86             bulb[Y_AXIS][UP] *= .35;
87
88             boxes.push (bulb);
89             boxes.push (stem);
90           }
91           break;
92         case NATURAL:
93           {
94             Box lstem = b;
95             Box rstem = b;
96             Box belly = b;
97
98             lstem[Y_AXIS] *= 1.1;
99             rstem[Y_AXIS] *= 1.1;
100
101             belly[Y_AXIS] *= 0.75;
102             lstem[X_AXIS][RIGHT] *= .33;
103             rstem[X_AXIS][LEFT] = rstem[X_AXIS].linear_combination (1.0 / 3.0);
104             lstem[Y_AXIS][DOWN] = belly[Y_AXIS][DOWN];
105             rstem[Y_AXIS][UP] = belly[Y_AXIS][UP];
106             boxes.push (belly);
107             boxes.push (lstem);
108             boxes.push (rstem);
109           }
110           break;
111           /*
112             TODO: add support for, double flat.
113           */
114         }
115     }
116
117   if (!boxes.size ())
118     boxes.push (b);
119
120   Offset o (a->relative_coordinate (common[X_AXIS], X_AXIS),
121             a->relative_coordinate (common[Y_AXIS], Y_AXIS));
122   for (int i = boxes.size (); i--;)
123     boxes[i].translate (o);
124
125   return boxes;
126 }
127
128 /*
129  * Some styles do not provide all flavours of accidentals, e.g. there
130  * is currently no sharp accidental in vaticana style.  In these cases
131  * this function falls back to one of the other styles.
132  */
133
134 /*
135   todo: this sort of stuff in Scheme. --hwn.
136 */
137 String
138 Accidental_interface::get_fontcharname (String style, int alteration)
139 {
140   if (alteration == DOUBLE_FLAT
141       || alteration == DOUBLE_SHARP)
142     return to_string (alteration);
143
144   if (style == "hufnagel")
145     switch (alteration)
146       {
147       case FLAT: return "hufnagel-1";
148       case 0: return "vaticana0";
149       case SHARP: return "mensural1";
150       }
151   if (style == "medicaea")
152     switch (alteration)
153       {
154       case FLAT: return "medicaea-1";
155       case 0: return "vaticana0";
156       case SHARP: return "mensural1";
157       }
158   if (style == "vaticana")
159     switch (alteration)
160       {
161       case FLAT: return "vaticana-1";
162       case 0: return "vaticana0";
163       case SHARP: return "mensural1";
164       }
165   if (style == "mensural")
166     switch (alteration)
167       {
168       case FLAT: return "mensural-1";
169       case 0: return "vaticana0";
170       case SHARP: return "mensural1";
171       }
172
173   if (style == "neomensural")
174     style = ""; // currently same as default
175   if (style == "default")
176     style = "";
177   return style + to_string (alteration);
178 }
179
180 MAKE_SCHEME_CALLBACK (Accidental_interface, print, 1);
181 SCM
182 Accidental_interface::print (SCM smob)
183 {
184   Grob *me = unsmob_grob (smob);
185   bool smaller = false;
186   bool parens = false;
187
188   bool caut = to_boolean (me->get_property ("cautionary"));
189   if (caut)
190     {
191       SCM cstyle = me->get_property ("cautionary-style");
192       parens = ly_is_equal (cstyle, ly_symbol2scm ("parentheses"));
193       smaller = ly_is_equal (cstyle, ly_symbol2scm ("smaller"));
194     }
195
196   SCM scm_style = me->get_property ("style");
197   String style;
198   if (scm_is_symbol (scm_style))
199     style = ly_symbol2string (scm_style);
200   else
201     /*
202       preferably no name for the default style.
203     */
204     style = "";
205
206   Font_metric *fm = 0;
207   if (smaller)
208     {
209       SCM ac = Font_interface::music_font_alist_chain (me);
210       /*
211         TODO: should calc font-size by adding -2 to current font-size
212       */
213       ac = scm_cons (scm_list_1 (scm_cons
214                                  (ly_symbol2scm ("font-size"),
215                                   scm_from_int (-2))),
216                      ac);
217       fm = select_font (me->get_layout (), ac);
218     }
219   else
220     fm = Font_interface::get_default_font (me);
221
222   Stencil mol;
223   for (SCM s = me->get_property ("accidentals");
224        scm_is_pair (s); s = scm_cdr (s))
225     {
226       int alteration = scm_to_int (scm_car (s));
227       String font_char = get_fontcharname (style, alteration);
228       Stencil acc (fm->find_by_name ("accidentals." + font_char));
229
230       if (acc.is_empty ())
231         me->warning (_f ("accidental `%s' not found", font_char));
232       else
233         mol.add_at_edge (X_AXIS, RIGHT, acc, 0.1, 0);
234     }
235
236   if (parens)
237     mol = parenthesize (me, mol);
238
239   return mol.smobbed_copy ();
240 }
241
242 /*
243   TODO: should move inside-slur into item?
244 */
245 ADD_INTERFACE (Accidental_interface, "accidental-interface",
246                "a single accidental",
247                "inside-slur cautionary cautionary-style style tie accidentals");