]> git.donarmstrong.com Git - lilypond.git/blob - lily/break-alignment-interface.cc
Merge branch 'master' of ssh+git://gpercival@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / lily / break-alignment-interface.cc
1 /*
2   break-align-interface.cc -- implement Break_alignment_interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9
10 #include "break-align-interface.hh"
11
12 #include "align-interface.hh"
13 #include "axis-group-interface.hh"
14 #include "dimensions.hh"
15 #include "international.hh"
16 #include "output-def.hh"
17 #include "paper-column.hh"
18 #include "pointer-group-interface.hh"
19 #include "self-alignment-interface.hh"
20 #include "side-position-interface.hh"
21 #include "warn.hh"
22
23
24
25 /*
26   This is tricky: we cannot modify 'elements, since callers are
27   iterating the same list. Reordering the list in-place, or resetting
28   'elements will skip elements in the loops of callers.
29
30   So we return the correct order as an array.
31 */
32 SCM
33 Break_alignment_interface::break_align_order (Item *me)
34 {
35   SCM order_vec = me->get_property ("break-align-orders");
36   if (!scm_is_vector (order_vec)
37       || scm_c_vector_length (order_vec) < 3)
38     return SCM_BOOL_F;
39
40   SCM order = scm_vector_ref (order_vec,
41                               scm_from_int (me->break_status_dir () + 1));
42
43
44   return order;
45 }
46
47   
48 vector<Grob*>
49 Break_alignment_interface::ordered_elements (Grob *grob)
50 {
51   Item *me = dynamic_cast<Item *> (grob);
52   extract_grob_set (me, "elements", elts);
53
54
55   SCM order = break_align_order (me);
56
57   if (order == SCM_BOOL_F)
58     return elts;
59   
60   vector<Grob*> writable_elts (elts);
61    /*
62     Copy in order specified in BREAK-ALIGN-ORDER.
63   */
64   vector<Grob*> new_elts;
65   for (; scm_is_pair (order); order = scm_cdr (order))
66     {
67       SCM sym = scm_car (order);
68
69       for (vsize i = writable_elts.size (); i--;)
70         {
71           Grob *g = writable_elts[i];
72           if (g && sym == g->get_property ("break-align-symbol"))
73             {
74               new_elts.push_back (g);
75               writable_elts.erase (writable_elts.begin () + i);
76             }
77         }
78     }
79
80   return new_elts;
81 }
82
83 void
84 Break_alignment_interface::add_element (Grob *me, Grob *toadd)
85 {
86   Align_interface::add_element (me, toadd);
87 }
88
89 MAKE_SCHEME_CALLBACK(Break_alignment_interface, calc_positioning_done, 1)
90 SCM
91 Break_alignment_interface::calc_positioning_done (SCM smob)
92 {
93   Grob *grob = unsmob_grob (smob);  
94   Item *me = dynamic_cast<Item *> (grob);
95
96   vector<Grob*> elems = ordered_elements (me);
97   vector<Interval> extents;
98
99   int last_nonempty = -1;
100   for (vsize i = 0; i < elems.size (); i++)
101     {
102       Interval y = elems[i]->extent (elems[i], X_AXIS);
103       extents.push_back (y);
104       if (!y.is_empty ())
105         last_nonempty = i;
106     }
107
108   vsize idx = 0;
109   while (idx < extents.size () && extents[idx].is_empty ())
110     idx++;
111
112   vector<Real> offsets;
113   offsets.resize (elems.size ());
114   for (vsize i = 0; i < offsets.size ();i++)
115     offsets[i] = 0.0;
116
117   Real extra_right_space = 0.0;
118   vsize edge_idx = VPOS;
119   while (idx < elems.size ())
120     {
121       vsize next_idx = idx + 1;
122       while (next_idx < elems.size ()
123              && extents[next_idx].is_empty ())
124         next_idx++;
125
126       Grob *l = elems[idx];
127       Grob *r = 0;
128
129       if (next_idx < elems.size ())
130         r = elems[next_idx];
131
132       SCM alist = SCM_EOL;
133
134       /*
135         Find the first grob with a space-alist entry.
136       */
137       extract_grob_set (l, "elements", elts);
138
139       for (vsize i = elts.size (); i--;)
140         {
141           Grob *elt = elts[i];
142
143           if (edge_idx == VPOS
144               && (elt->get_property ("break-align-symbol")
145                   == ly_symbol2scm ("left-edge")))
146             edge_idx = idx;
147
148           SCM l = elt->get_property ("space-alist");
149           if (scm_is_pair (l))
150             {
151               alist = l;
152               break;
153             }
154         }
155
156       SCM rsym = r ? SCM_EOL : ly_symbol2scm ("right-edge");
157
158       /*
159         We used to use #'cause to find out the symbol and the spacing
160         table, but that gets icky when that grob is suicided for some
161         reason.
162       */
163       if (r)
164         {
165           extract_grob_set (r, "elements", elts);
166           for (vsize i = elts.size ();
167                !scm_is_symbol (rsym) && i--;)
168             {
169               Grob *elt = elts[i];
170               rsym = elt->get_property ("break-align-symbol");
171             }
172         }
173
174       if (rsym == ly_symbol2scm ("left-edge"))
175         edge_idx = next_idx;
176
177       SCM entry = SCM_EOL;
178       if (scm_is_symbol (rsym))
179         entry = scm_assq (rsym, alist);
180
181       bool entry_found = scm_is_pair (entry);
182       if (!entry_found)
183         {
184           string sym_string;
185           if (scm_is_symbol (rsym))
186             sym_string = ly_symbol2string (rsym);
187
188           string orig_string;
189           if (unsmob_grob (l->get_property ("cause")))
190             orig_string = unsmob_grob (l->get_property ("cause"))->name ();
191
192           programming_error (_f ("No spacing entry from %s to `%s'",
193                                  orig_string.c_str (),
194                                  sym_string.c_str ()));
195         }
196
197       Real distance = 1.0;
198       SCM type = ly_symbol2scm ("extra-space");
199
200       if (entry_found)
201         {
202           entry = scm_cdr (entry);
203
204           distance = scm_to_double (scm_cdr (entry));
205           type = scm_car (entry);
206         }
207
208       if (r)
209         {
210           if (type == ly_symbol2scm ("extra-space"))
211             offsets[next_idx] = extents[idx][RIGHT] + distance
212               - extents[next_idx][LEFT];
213           /* should probably junk minimum-space */
214           else if (type == ly_symbol2scm ("minimum-space"))
215             offsets[next_idx] = max (extents[idx][RIGHT], distance);
216         }
217       else
218         {
219           extra_right_space = distance;
220           if (idx < offsets.size() - 1)
221             offsets[idx+1] = extents[idx][RIGHT] + distance;
222         }
223
224       idx = next_idx;
225     }
226
227   Real here = 0.0;
228   Interval total_extent;
229
230   Real alignment_off = 0.0;
231   for (vsize i = 0; i < offsets.size (); i++)
232     {
233       here += offsets[i];
234       if (i == edge_idx)
235         alignment_off = -here;
236       total_extent.unite (extents[i] + here);
237     }
238
239   if (total_extent.is_empty ())
240     return SCM_BOOL_T;
241
242   if (me->break_status_dir () == LEFT)
243     alignment_off = -total_extent[RIGHT] - extra_right_space;
244   else if (edge_idx == VPOS)
245     alignment_off = -total_extent[LEFT];
246
247   here = alignment_off;
248   for (vsize i = 0; i < offsets.size (); i++)
249     {
250       here += offsets[i];
251       elems[i]->translate_axis (here, X_AXIS);
252     }
253
254   return SCM_BOOL_T;
255 }
256
257
258
259 MAKE_SCHEME_CALLBACK(Break_alignable_interface, self_align_callback, 1)
260 SCM
261 Break_alignable_interface::self_align_callback (SCM grob)
262 {
263   Grob *me = unsmob_grob (grob);
264   Item *alignment = dynamic_cast<Item*> (me->get_parent (X_AXIS));
265   if (!Break_alignment_interface::has_interface (alignment))
266     return scm_from_int (0);
267
268   SCM my_align = me->get_property ("break-align-symbol");
269   SCM order = Break_alignment_interface::break_align_order (alignment);
270
271   vector<Grob*> elements = Break_alignment_interface::ordered_elements (alignment);
272   if (elements.size () == 0)
273     return scm_from_int (0);
274   
275   int last_idx_found = -1;
276   vsize i = 0;
277   for (SCM s = order; scm_is_pair (s); s = scm_cdr (s))  
278     {
279       if (i < elements.size ()
280           && elements[i]->get_property ("break-align-symbol") == scm_car (s))
281         {
282           last_idx_found = i;
283           i ++;
284         }
285
286       if (scm_car (s) == my_align)
287         break ;
288     }   
289
290   Direction which_edge = LEFT;
291   if (vsize (last_idx_found + 1) < elements.size())
292     last_idx_found ++;
293   else
294     which_edge = RIGHT;
295   
296   Grob *common = me->common_refpoint (elements[last_idx_found], X_AXIS);
297
298   return scm_from_double (robust_relative_extent (elements[last_idx_found], common, X_AXIS)[which_edge]
299                           - me->relative_coordinate (common, X_AXIS));
300 }
301
302 ADD_INTERFACE (Break_alignable_interface,
303                "Object that is aligned on a break aligment. ",
304
305                /* properties */
306                "break-align-symbol "
307                )
308
309
310
311 ADD_INTERFACE (Break_aligned_interface,
312                "Items that are aligned in prefatory matter.\n"
313                "\n"
314                "The spacing of these items is controlled by the @code{space-alist}\n"
315                "property. It contains a list @code{break-align-symbol}s with a specification\n"
316                "of the associated space. The space specification can be "
317                "@table @code\n"
318                "@item (minimum-space . @var{spc}))\n"
319                "  Pad space until the distance is @var{spc}\n"
320                "@item (fixed-space . @var{spc})\n"
321                "  Set a fixed space\n"
322                "@item (semi-fixed-space . @var{spc})\n"
323                "  Set a space. Half of it is fixed and half is stretchable. \n"
324                "(does not work at start of line. fixme)\n"
325                "@item (extra-space . @var{spc})\n"
326                "  Add @var{spc} amount of space.\n"
327                "@end table\n"
328                "\n"
329                "Special keys for the alist are @code{first-note} and @code{next-note}, signifying\n"
330                "the first note on a line, and the next note halfway a line.\n"
331                "\n"
332                "Rules for this spacing are much more complicated than this. \n"
333                "See [Wanske] page 126 -- 134, [Ross] pg 143 -- 147\n",
334
335                /* properties */ 
336                "break-align-symbol "
337                "space-alist "
338                );
339
340 ADD_INTERFACE (Break_alignment_interface,
341                "The object that performs break aligment. See @ref{break-aligned-interface}.",
342
343                /* properties */
344                "positioning-done "
345                "break-align-orders");