]> git.donarmstrong.com Git - lilypond.git/blob - lily/accidental.cc
Merge with master
[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--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "accidental-interface.hh"
10 #include "font-interface.hh"
11 #include "international.hh"
12 #include "item.hh"
13 #include "output-def.hh"
14 #include "paper-column.hh"
15 #include "pitch.hh"
16 #include "stencil.hh"
17
18 Stencil
19 parenthesize (Grob *me, Stencil m)
20 {
21   Font_metric * font
22     = Font_interface::get_default_font (me); 
23   Stencil open
24     = font->find_by_name ("accidentals.leftparen");
25   Stencil close
26     = font->find_by_name ("accidentals.rightparen");
27
28   m.add_at_edge (X_AXIS, LEFT, Stencil (open), 0);
29   m.add_at_edge (X_AXIS, RIGHT, Stencil (close), 0);
30
31   return m;
32 }
33
34
35 /* This callback exists for the sole purpose of allowing us to override
36    its pure equivalent to accidental-interface::pure-height */
37 MAKE_SCHEME_CALLBACK (Accidental_interface, height, 1);
38 SCM
39 Accidental_interface::height (SCM smob)
40 {
41   return Grob::stencil_height (smob);
42 }
43
44 MAKE_SCHEME_CALLBACK (Accidental_interface, pure_height, 3);
45 SCM
46 Accidental_interface::pure_height (SCM smob, SCM start_scm, SCM)
47 {
48   Item *me = dynamic_cast<Item*> (unsmob_grob (smob));
49   int start = scm_to_int (start_scm);
50   int rank = me->get_column ()->get_rank ();
51
52   bool visible = to_boolean (me->get_property ("forced"))
53     || !unsmob_grob (me->get_object ("tie"))
54     || rank != start + 1; /* we are in the middle of a line */
55
56   return visible ? Grob::stencil_height (smob) : ly_interval2scm (Interval ());
57 }
58
59 vector<Box>
60 Accidental_interface::accurate_boxes (Grob *me, Grob **common)
61 {
62   Box b;
63   b[X_AXIS] = me->extent (me, X_AXIS);
64   b[Y_AXIS] = me->extent (me, Y_AXIS);
65
66   vector<Box> boxes;
67
68   bool parens = to_boolean (me->get_property ("parenthesized"));
69   if (!me->is_live ())
70     return boxes;
71
72   SCM scm_style = me->get_property ("style");
73   if (!scm_is_symbol (scm_style)
74       && !to_boolean (me->get_property ("restore-first"))
75       && !parens)
76     {
77       Rational alteration
78         = robust_scm2rational (me->get_property ("alteration"), 0);
79       if (alteration == FLAT_ALTERATION)
80         {
81           Box stem = b;
82           Box bulb = b;
83
84           /*
85             we could make the stem thinner, but that places the flats
86             really close.
87           */
88           stem[X_AXIS][RIGHT] *= .5;
89
90           /*
91             To prevent vertical alignment for 6ths
92           */
93           stem[Y_AXIS] *= 1.1;
94           bulb[Y_AXIS][UP] *= .35;
95
96           boxes.push_back (bulb);
97           boxes.push_back (stem);
98         }
99       else if (alteration == NATURAL_ALTERATION)
100         {
101           Box lstem = b;
102           Box rstem = b;
103           Box belly = b;
104
105           lstem[Y_AXIS] *= 1.1;
106           rstem[Y_AXIS] *= 1.1;
107
108           belly[Y_AXIS] *= 0.75;
109           lstem[X_AXIS][RIGHT] *= .33;
110           rstem[X_AXIS][LEFT] = rstem[X_AXIS].linear_combination (1.0 / 3.0);
111           lstem[Y_AXIS][DOWN] = belly[Y_AXIS][DOWN];
112           rstem[Y_AXIS][UP] = belly[Y_AXIS][UP];
113           boxes.push_back (belly);
114           boxes.push_back (lstem);
115           boxes.push_back (rstem);
116         }
117       /*
118         TODO: add support for, double flat.
119       */
120     }
121
122   if (!boxes.size ())
123     boxes.push_back (b);
124
125   Offset o (me->relative_coordinate (common[X_AXIS], X_AXIS),
126             me->relative_coordinate (common[Y_AXIS], Y_AXIS));
127
128   for (vsize i = boxes.size (); i--;)
129     boxes[i].translate (o);
130
131   return boxes;
132 }
133
134 MAKE_SCHEME_CALLBACK (Accidental_interface, print, 1);
135 SCM
136 Accidental_interface::print (SCM smob)
137 {
138   Grob *me = unsmob_grob (smob);
139   Grob *tie = unsmob_grob (me->get_object ("tie"));
140
141   if (tie && !tie->original ()
142       && !to_boolean (me->get_property ("forced")))
143     {
144       me->suicide ();
145       return SCM_EOL;
146     }
147   
148   Font_metric *fm = Font_interface::get_default_font (me);
149
150   SCM alist = me->get_property ("glyph-name-alist");
151   SCM alt = me->get_property ("alteration");
152   SCM glyph_name = ly_assoc_get (alt, alist, SCM_BOOL_F);
153   
154   if (!scm_is_string (glyph_name))
155     {
156       me->warning (_f ("Could not find glyph-name for alteration %s",
157                        ly_scm_write_string (alt).c_str ()));
158       return SCM_EOL;
159     }
160   
161   Stencil mol (fm->find_by_name (scm_i_string_chars (glyph_name)));
162   if (to_boolean (me->get_property ("restore-first")))
163     {
164       /*
165         this isn't correct for ancient accidentals, but they don't
166         use double flats/sharps anyway.
167         */
168       Stencil acc (fm->find_by_name ("accidentals.natural"));
169
170       if (acc.is_empty ())
171         me->warning (_ ("natural alteration glyph not found"));
172       else
173         mol.add_at_edge (X_AXIS, LEFT, acc, 0.1);
174     }
175   
176   if (to_boolean (me->get_property ("parenthesized")))
177     mol = parenthesize (me, mol);
178
179   return mol.smobbed_copy ();
180 }
181
182   
183 ADD_INTERFACE (Accidental_interface,
184                "a single accidental",
185                
186                /* props */
187                "alteration "
188                "avoid-slur "
189                "forced "
190                "parenthesized "
191                "restore-first "
192                "glyph-name-alist "
193                "tie "
194                );