]> git.donarmstrong.com Git - lilypond.git/blob - lily/align-interface.cc
Fix #341.
[lilypond.git] / lily / align-interface.cc
1 /*
2   align-interface.cc -- implement Align_interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "align-interface.hh"
10 #include "spanner.hh"
11 #include "item.hh"
12 #include "axis-group-interface.hh"
13 #include "pointer-group-interface.hh"
14 #include "hara-kiri-group-spanner.hh"
15 #include "grob-array.hh"
16 #include "international.hh"
17 #include "system.hh"
18 #include "warn.hh"
19 #include "paper-column.hh"
20
21 /*
22   TODO: for vertical spacing, should also include a rod & spring
23   scheme of sorts into this: the alignment should default to a certain
24   distance between element refpoints, unless bbox force a bigger
25   distance.
26  */
27
28 MAKE_SCHEME_CALLBACK (Align_interface, calc_positioning_done, 1);
29 SCM
30 Align_interface::calc_positioning_done (SCM smob)
31 {
32   Grob *me = unsmob_grob (smob);
33
34   me->set_property ("positioning-done", SCM_BOOL_T);
35
36   SCM axis = scm_car (me->get_property ("axes"));
37   Axis ax = Axis (scm_to_int (axis));
38
39   Align_interface::align_elements_to_extents (me, ax);
40
41   return SCM_BOOL_T;
42 }
43
44 /*
45   TODO: This belongs to the old two-pass spacing. Delete me.
46 */
47 MAKE_SCHEME_CALLBACK (Align_interface, stretch_after_break, 1)
48 SCM
49 Align_interface::stretch_after_break (SCM grob)
50 {
51   Grob *me = unsmob_grob (grob);
52
53   Spanner *me_spanner = dynamic_cast<Spanner *> (me);
54   extract_grob_set (me, "elements", elems);
55
56   if (me_spanner && elems.size ())
57     {
58       Grob *common = common_refpoint_of_array (elems, me, Y_AXIS);
59
60       /* force position callbacks */
61       for (vsize i = 0; i < elems.size (); i++)
62         elems[i]->relative_coordinate (common, Y_AXIS);
63
64       SCM details = me_spanner->get_bound (LEFT)->get_property ("line-break-system-details");
65       SCM extra_space_handle = scm_assoc (ly_symbol2scm ("fixed-alignment-extra-space"), details);
66       
67       Real extra_space = robust_scm2double (scm_is_pair (extra_space_handle)
68                                             ? scm_cdr (extra_space_handle)
69                                             : SCM_EOL,
70                                             0.0);
71
72       Direction stacking_dir = robust_scm2dir (me->get_property ("stacking-dir"),
73                                                DOWN);
74       Real delta  = extra_space / elems.size () * stacking_dir;
75       for (vsize i = 0; i < elems.size (); i++)
76         elems[i]->translate_axis (i * delta, Y_AXIS);
77     }
78   
79   return SCM_UNSPECIFIED;
80 }
81
82 /* for each grob, find its upper and lower skylines. If the grob has
83    an empty extent, delete it from the list instead. If the extent is
84    non-empty but there is no skyline available (or pure is true), just
85    create a flat skyline from the bounding box */
86 static void
87 get_skylines (Grob *me,
88               vector<Grob*> *const elements,
89               Axis a,
90               bool pure, int start, int end,
91               vector<Skyline_pair> *const ret)
92 {
93   /* each child's skyline was calculated according to the common refpoint of its
94      elements. Here we need all the skylines to be positioned with respect to
95      a single refpoint, so we need the common refpoint of the common refpoints
96      of the elements of the children */
97   vector<Grob*> child_refpoints;
98   for (vsize i = 0; i < elements->size (); i++)
99     {
100       Grob *elt = (*elements)[i];
101       Grob *child_common = unsmob_grob ((a == Y_AXIS)
102                                         ? elt->get_object ("X-common")
103                                         : elt->get_object ("Y-common"));
104       
105       if (!child_common)
106         {
107           extract_grob_set (elt, "elements", child_elts);
108           child_common = common_refpoint_of_array (child_elts, elt, other_axis (a));
109         }
110       
111       child_refpoints.push_back (child_common);
112     }
113
114   Grob *other_common = common_refpoint_of_array (child_refpoints, me, other_axis (a));
115   
116   for (vsize i = elements->size (); i--;)
117     {
118       Grob *g = (*elements)[i];
119       Skyline_pair skylines;
120
121       /* each skyline is calculated relative to (potentially) a different other_axis
122          coordinate. In order to compare the skylines effectively, we need to shift them
123          to some absolute reference point */
124       if (!pure)
125         {
126           Skyline_pair *skys = Skyline_pair::unsmob (g->get_property (a == Y_AXIS
127                                                                       ? "vertical-skylines"
128                                                                       : "horizontal-skylines"));
129           if (skys)
130             skylines = *skys;
131
132           /* this is perhaps an abuse of minimum-?-extent: maybe we should create
133              another property? But it seems that the only (current) use of
134              minimum-Y-extent is to separate vertically-aligned elements */
135           SCM min_extent = g->get_property (a == X_AXIS
136                                             ? ly_symbol2scm ("minimum-X-extent")
137                                             : ly_symbol2scm ("minimum-Y-extent"));
138
139           if (is_number_pair (min_extent))
140             {
141               Box b;
142               Interval other_extent = g->extent (other_common, other_axis (a));
143               b[a] = ly_scm2interval (min_extent);
144               b[other_axis (a)] = other_extent;
145               if (!other_extent.is_empty ())
146                 skylines.insert (b, 0, other_axis (a));
147             }
148
149           Real offset = child_refpoints[i]->relative_coordinate (other_common, other_axis (a));
150           skylines.shift (offset);
151         }
152       else
153         {
154           assert (a == Y_AXIS);
155           Interval extent = g->pure_height (g, start, end);
156           if (!extent.is_empty ())
157             {
158               Box b;
159               b[a] = extent;
160               b[other_axis (a)] = Interval (-infinity_f, infinity_f);
161               skylines.insert (b, 0, other_axis (a));
162             }
163         }
164
165       if (skylines.is_empty ())
166         elements->erase (elements->begin () + i);
167       else
168         ret->push_back (skylines);
169     }
170   reverse (*ret);
171 }
172
173 vector<Real>
174 Align_interface::get_extents_aligned_translates (Grob *me,
175                                                  vector<Grob*> const &all_grobs,
176                                                  Axis a,
177                                                  bool pure, int start, int end)
178 {
179   Spanner *me_spanner = dynamic_cast<Spanner *> (me);
180
181
182   SCM line_break_details = SCM_EOL;
183   if (a == Y_AXIS && me_spanner)
184     {
185       if (pure)
186         line_break_details = get_root_system (me)->column (start)->get_property ("line-break-system-details");
187       else
188         line_break_details = me_spanner->get_bound (LEFT)->get_property ("line-break-system-details");
189
190       if (!me->get_system () && !pure)
191         me->programming_error ("vertical alignment called before line-breaking");
192     }
193   
194   Direction stacking_dir = robust_scm2dir (me->get_property ("stacking-dir"),
195                                            DOWN);
196
197   vector<Grob*> elems (all_grobs); // writable copy
198   vector<Skyline_pair> skylines;
199
200   get_skylines (me, &elems, a, pure, start, end, &skylines);
201
202   Real where = 0;
203   /* TODO: extra-space stuff belongs to two-pass spacing. Delete me */
204   SCM extra_space_handle = scm_assq (ly_symbol2scm ("alignment-extra-space"), line_break_details);
205   Real extra_space = robust_scm2double (scm_is_pair (extra_space_handle)
206                                         ? scm_cdr (extra_space_handle)
207                                         : SCM_EOL,
208                                         0.0);
209
210   Real padding = robust_scm2double (me->get_property ("padding"), 0.0);
211   vector<Real> translates;
212   Skyline down_skyline (stacking_dir);
213   for (vsize j = 0; j < elems.size (); j++)
214     {
215       Real dy = 0;
216       if (j == 0)
217         dy = skylines[j][-stacking_dir].max_height ();
218       else
219         {
220           down_skyline.merge (skylines[j-1][stacking_dir]);
221           dy = down_skyline.distance (skylines[j][-stacking_dir]);
222         }
223
224       dy = max (0.0, dy + padding + extra_space / elems.size ());
225       down_skyline.raise (-stacking_dir * dy);
226       where += stacking_dir * dy;
227       translates.push_back (where);
228     }
229
230   SCM offsets_handle = scm_assq (ly_symbol2scm ("alignment-offsets"),
231                                  line_break_details);
232   if (scm_is_pair (offsets_handle))
233     {
234       vsize i = 0;
235  
236       for (SCM s = scm_cdr (offsets_handle);
237            scm_is_pair (s) && i < translates.size (); s = scm_cdr (s), i++)
238         {
239           if (scm_is_number (scm_car (s)))
240             translates[i] = scm_to_double (scm_car (s));
241         }
242     }
243
244   vector<Real> all_translates;
245
246   if (!translates.empty ())
247     {
248       Real w = translates[0];
249       for  (vsize i = 0, j = 0; j < all_grobs.size (); j++)
250         {
251           if (i < elems.size () && all_grobs[j] == elems[i])
252             w = translates[i++];
253           all_translates.push_back (w);
254         }
255     }
256   return all_translates;
257 }
258
259 void
260 Align_interface::align_elements_to_extents (Grob *me, Axis a)
261 {
262   extract_grob_set (me, "elements", all_grobs);
263
264   vector<Real> translates = get_extents_aligned_translates (me, all_grobs, a, false, 0, 0);
265   if (translates.size ())
266     for (vsize j = 0; j < all_grobs.size (); j++)
267       all_grobs[j]->translate_axis (translates[j], a);
268 }
269
270 /* After we have already determined the y-offsets of our children, we may still
271    want to stretch them a little. */
272 void
273 Align_interface::stretch (Grob *me, Real amount, Axis a)
274 {
275   extract_grob_set (me, "elements", elts);
276   Real non_empty_elts = stretchable_children_count (me);
277   Real offset = 0.0;
278   Direction dir = robust_scm2dir (me->get_property ("stacking-dir"), DOWN);
279   for (vsize i = 1; i < elts.size (); i++)
280     {
281       if (!elts[i]->extent (me, a).is_empty ()
282           && !to_boolean (elts[i]->get_property ("keep-fixed-while-stretching")))
283         offset += amount / non_empty_elts;
284       elts[i]->translate_axis (dir * offset, a);
285     }
286   me->flush_extent_cache (Y_AXIS);
287 }
288
289 Real
290 Align_interface::get_pure_child_y_translation (Grob *me, Grob *ch, int start, int end)
291 {
292   extract_grob_set (me, "elements", all_grobs);
293   SCM dy_scm = me->get_property ("forced-distance");
294
295   if (scm_is_number (dy_scm))
296     {
297       Real dy = scm_to_double (dy_scm) * robust_scm2dir (me->get_property ("stacking-dir"), DOWN);
298       Real pos = 0;
299       for (vsize i = 0; i < all_grobs.size (); i++)
300         {
301           if (all_grobs[i] == ch)
302             return pos;
303           if (!Hara_kiri_group_spanner::has_interface (all_grobs[i])
304               || !Hara_kiri_group_spanner::request_suicide (all_grobs[i], start, end))
305             pos += dy;
306         }
307     }
308   else
309     {
310       vector<Real> translates = get_extents_aligned_translates (me, all_grobs, Y_AXIS, true, start, end);
311
312       if (translates.size ())
313         {
314           for (vsize i = 0; i < all_grobs.size (); i++)
315             if (all_grobs[i] == ch)
316               return translates[i];
317         }
318       else
319         return 0;
320     }
321
322   programming_error (_ ("tried to get a translation for something that is no child of mine"));
323   return 0;
324 }
325
326 Axis
327 Align_interface::axis (Grob *me)
328 {
329   return Axis (scm_to_int (scm_car (me->get_property ("axes"))));
330 }
331
332 void
333 Align_interface::add_element (Grob *me, Grob *element)
334 {
335   Axis a = Align_interface::axis (me);
336   SCM sym = axis_offset_symbol (a);
337   SCM proc = axis_parent_positioning (a);
338     
339   element->set_property (sym, proc);
340   Axis_group_interface::add_element (me, element);
341 }
342
343 void
344 Align_interface::set_ordered (Grob *me)
345 {
346   SCM ga_scm = me->get_object ("elements");
347   Grob_array *ga = unsmob_grob_array (ga_scm);
348   if (!ga)
349     {
350       ga_scm = Grob_array::make_array ();
351       ga = unsmob_grob_array (ga_scm);
352       me->set_object ("elements", ga_scm);
353     }
354
355   ga->set_ordered (true);
356 }
357
358 int
359 Align_interface::stretchable_children_count (Grob const *me)
360 {
361   extract_grob_set (me, "elements", elts);
362   int ret = 0;
363
364   /* start at 1: we will never move the first child while stretching */
365   for (vsize i = 1; i < elts.size (); i++)
366     if (!to_boolean (elts[i]->get_property ("keep-fixed-while-stretching"))
367         && !elts[i]->extent (elts[i], Y_AXIS).is_empty ())
368       ret++;
369
370   return ret;
371 }
372
373 MAKE_SCHEME_CALLBACK (Align_interface, calc_max_stretch, 1)
374 SCM
375 Align_interface::calc_max_stretch (SCM smob)
376 {
377   Grob *me = unsmob_grob (smob);
378   Spanner *spanner_me = dynamic_cast<Spanner*> (me);
379   Real ret = 0;
380
381   if (spanner_me && stretchable_children_count (me) > 0)
382     {
383       Paper_column *left = dynamic_cast<Paper_column*> (spanner_me->get_bound (LEFT));
384       Real height = me->extent (me, Y_AXIS).length ();
385       SCM line_break_details = left->get_property ("line-break-system-details");
386       SCM fixed_offsets = scm_assq (ly_symbol2scm ("alignment-offsets"),
387                                     line_break_details);
388
389       /* if there are fixed offsets, we refuse to stretch */
390       if (fixed_offsets != SCM_BOOL_F)
391         ret = 0;
392       else
393         ret = height * height / 80.0; /* why this, exactly? -- jneem */
394     }
395   return scm_from_double (ret);
396 }
397
398 ADD_INTERFACE (Align_interface,
399                
400                "Order grobs from top to bottom, left to right, right to left or bottom "
401                "to top.  "
402                "For vertical alignments of staves, the @code{break-system-details} of "
403                "the left @internalsref{NonMusicalPaperColumn} may be set to tune vertical spacing "
404                "Set @code{alignment-extra-space} to add extra space for staves. Set "
405                "@code{fixed-alignment-extra-space} to force staves in PianoStaves further apart."
406                ,
407                
408                /*
409                  properties
410                 */
411                "align-dir "
412                "axes "
413                "elements "
414                "padding "
415                "positioning-done "
416                "stacking-dir "
417                "threshold "
418                );