]> git.donarmstrong.com Git - lilypond.git/blob - lily/coherent-ligature-engraver.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / coherent-ligature-engraver.cc
1 /*
2   coherent-ligature-engraver.cc -- implement Coherent_ligature_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2003--2006 Juergen Reuter <reuter@ipd.uka.de>
7 */
8
9 #include "coherent-ligature-engraver.hh"
10
11 #include "warn.hh"
12 #include "staff-symbol-referencer.hh"
13 #include "spanner.hh"
14 #include "paper-column.hh"
15 #include "pitch.hh"
16 #include "pointer-group-interface.hh"
17
18 /*
19  * This abstract class serves as common superclass for all ligature
20  * engravers thet produce a single connected graphical object of fixed
21  * width, consisting of noteheads and other primitives (see class
22  * Ligature_engraver for more information on the interaction between
23  * this class and its superclass).  In particular, it cares for the
24  * following tasks:
25  *
26  * - provide a function for putting all grobs of the ligature into a
27  * single paper column,
28  *
29  * - delegate actual creation of ligature to concrete subclass,
30  *
31  * - collect all accidentals that occur within the ligature and put
32  * them at the left side of the ligature (TODO; see function
33  * collect_accidentals ()),
34  *
35  * - collapse superflous space after each ligature (TODO).
36  *
37  * Concrete subclasses must implement function build_ligature (Spanner
38  * *, vector<Grob_info>).  This function is responsible for actually
39  * building the ligature by transforming the array of noteheads.
40  *
41  * Currently, there are two subclasses: Gregorian_ligature_engraver
42  * for Gregorian chant notation (also known as plain song or cantus
43  * planus) and Mensural_ligature_engraver for white mensural notation.
44  * Subclasses for other music notation styles such as modal notation
45  * or ars nova notation may eventually be added.
46  */
47
48 /*
49  * TODO: local accidentals: collect accidentals that occur within a
50  * ligature and put them before the ligature.  If an accidental
51  * changes within a ligature, print a warning (user error) and ignore
52  * any further accidental for that pitch within that ligature
53  * (actually, in such a case, the user should split the ligature into
54  * two separate ligatures).  Similarly, any object that, in ordinary
55  * notation, may be put to the left or to the right of a note-head,
56  * should be collected and put before or after the ligature.
57  *
58  * TODO: make spacing more robust: do not screw up spacing if user
59  * erroneously puts rest in ligature.
60  *
61  * TODO: for each ligature, add Rod that represents the total length
62  * of the ligature (to preemptively avoid collision with adjacent
63  * notes); or maybe just additionally create a
64  * mensural/vaticana/whatever-ligature grob (e.g. via
65  * Mensural_ligature::print (SCM)) that just consists of a
66  * bounding box around all primitives of the ligature.
67  *
68  * TODO: Maybe move functions fold_up_primitives () and
69  * join_primitives () from subclasses to here?  N.B. it is not
70  * appropriate to put these into Ligature_engraver, since, for
71  * example, Ligature_bracket_engraver does not share any of this code.
72  */
73
74 /*
75  * TODO: Let superflous space after each ligature collapse.  The
76  * following code should help in doing so (though it does not yet
77  * fully work).  Just put the following code into
78  * Spacing_spanner::do_measure ().  I put it temporarily here as memo
79  * until it really works and I also get Han-Wen's/Jan's permission to
80  * add it to the spacing spanner code.
81  */
82 #if 0 /* experimental code to collapse spacing after ligature */
83 SCM incr_scm = lc->get_property ("forced-spacing");
84 if (incr_scm != SCM_EOL) /* (Paper_column::is_musical (l)) */
85   {
86     me->warning (_f ("gotcha: ptr=%ul", lc));//debug
87     ly_display_scm (lc->self_scm ());
88     Real distance;
89     if (incr_scm != SCM_EOL)
90       distance = scm_to_double (incr_scm);
91     else
92       {
93         me->warning (_ ("distance undefined, assuming 0.1"));
94         distance = 0.1;
95       }
96     me->warning (_f ("distance=%f", distance));//debug
97     Real inverse_strength = 1.0;
98     Spaceable_grob::add_spring (lc, rc, distance, inverse_strength);
99     if (Item *rb = r->find_prebroken_piece (LEFT))
100       Spaceable_grob::add_spring (lc, rb, distance, inverse_strength);
101
102     continue;
103   }
104 #endif
105
106 /*
107  * TODO: move this function to class Item?
108  */
109 void
110 Coherent_ligature_engraver::get_set_column (Item *item, Paper_column *column)
111 {
112   Item *parent = dynamic_cast<Item *> (item->get_parent (X_AXIS));
113   if (!parent)
114     {
115       programming_error ("failed tweaking paper column in ligature");
116       return;
117     }
118
119   string name = parent->name ();
120   if (name != "PaperColumn")
121     {
122       // Change column not only for targeted item (NoteColumn), but
123       // also for all associated grobs (NoteSpacing, SeparationItem).
124       Grob *sl = Staff_symbol_referencer::get_staff_symbol (item);
125
126       extract_item_set (parent, "elements", elements);
127
128       for (vsize i = elements.size (); i--;)
129         {
130           Item *sibling = elements[i];
131           if ((sibling)
132               && (Staff_symbol_referencer::get_staff_symbol (sibling) == sl))
133             {
134 #if 0 /* experimental code to collapse spacing after ligature */
135               Grob *sibling_parent = sibling->get_parent (X_AXIS);
136               sibling_parent->warning (_f ("Coherent_ligature_engraver: "
137                                            "setting `spacing-increment="
138                                            "0.01': ptr=%ul", parent));
139               sibling_parent->set_property ("forced-spacing",
140                                             scm_from_double (0.01));
141 #endif
142               sibling->set_parent (column, X_AXIS);
143             }
144         }
145     }
146   else
147     get_set_column (parent, column);
148 }
149
150 /*
151  * TODO: This function should collect all accidentals that occur
152  * within the ligature (by scanning through the primitives array) and
153  * place all of them at the left of the ligature.  If there is an
154  * alteration within the ligature (e.g. an "f" followed by a "fis"
155  * somewhere later in the ligature), issue a warning (and maybe create
156  * an additional natural symbol to explicitly make clear that there is
157  * an "f" first?).  The warning should suggest the user to break the
158  * ligature into two or more smaller ligatures such that no alteration
159  * occurs within the broken ligatures any more.
160  */
161 void
162 Coherent_ligature_engraver::collect_accidentals (Spanner *, vector<Grob_info>)
163 {
164   /* TODO */
165 }
166
167 void
168 compute_delta_pitches (vector<Grob_info> primitives)
169 {
170   int prev_pitch = 0;
171   int delta_pitch = 0;
172   Item *prev_primitive = 0, *primitive = 0;
173   for (vsize i = 0; i < primitives.size (); i++)
174     {
175       primitive = dynamic_cast<Item *> (primitives[i].grob ());
176       Music *music_cause = primitives[i].music_cause ();
177       int pitch
178         = unsmob_pitch (music_cause->get_property ("pitch"))->steps ();
179       if (prev_primitive)
180         {
181           delta_pitch = pitch - prev_pitch;
182           prev_primitive->set_property ("delta-pitch",
183                                         scm_from_int (delta_pitch));
184         }
185       prev_pitch = pitch;
186       prev_primitive = primitive;
187     }
188   primitive->set_property ("delta-pitch", scm_from_int (0));
189 }
190
191 void
192 Coherent_ligature_engraver::typeset_ligature (Spanner *ligature,
193                                               vector<Grob_info> primitives)
194 {
195   // compute some commonly needed context info stored as grob
196   // properties
197   compute_delta_pitches (primitives);
198
199   // prepare ligature for typesetting
200   build_ligature (ligature, primitives);
201   collect_accidentals (ligature, primitives);
202 }
203
204 // no ADD_ACKNOWLEDGER / ADD_ACKNOWLEDGER / ADD_TRANSLATOR macro calls
205 // since this class is abstract