2 spacing-determine-loose-columns.cc -- implement Spacing_spanner
3 methods that decide which columns to turn loose.
5 source file of the GNU LilyPond music typesetter
7 (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
10 #include "staff-spacing.hh"
13 #include "paper-column.hh"
14 #include "column-x-positions.hh"
15 #include "pointer-group-interface.hh"
16 #include "spacing-spanner.hh"
17 #include "note-spacing.hh"
19 #include "break-align-interface.hh"
23 Return whether COL is fixed to its neighbors by some kind of spacing
27 If in doubt, then we're not loose; the spacing engine should space
28 for it, risking suboptimal spacing.
30 (Otherwise, we might risk core dumps, and other weird stuff.)
33 is_loose_column (Grob *l, Grob *c, Grob *r, Spacing_options const *options)
35 if (options->float_nonmusical_columns_
36 && Paper_column::when_mom (c).grace_part_)
39 if (Paper_column::is_musical (c)
40 || Paper_column::is_breakable (c))
43 extract_grob_set (c, "right-neighbors", rns);
44 extract_grob_set (c, "left-neighbors", lns);
47 If this column doesn't have a proper neighbor, we should really
48 make it loose, but spacing it correctly is more than we can
51 (this happens in the following situation:
62 the column containing the clef is really loose, and should be
63 attached right to the first column, but that is a lot of work for
64 such a borderline case.)
67 if (lns.empty () || rns.empty ())
70 Item *l_neighbor = dynamic_cast<Item *> (lns[0]);
71 Item *r_neighbor = dynamic_cast<Item *> (rns[0]);
73 if (!l_neighbor || !r_neighbor)
76 l_neighbor = l_neighbor->get_column ();
77 r_neighbor = dynamic_cast<Item *> (Note_spacing::right_column (r_neighbor));
79 if (l == l_neighbor && r == r_neighbor)
82 if (!l_neighbor || !r_neighbor)
86 Only declare loose if the bounds make a little sense. This means
87 some cases (two isolated, consecutive clef changes) won't be
88 nicely folded, but hey, then don't do that.
90 if (! ((Paper_column::is_musical (l_neighbor) || Paper_column::is_breakable (l_neighbor))
91 && (Paper_column::is_musical (r_neighbor) || Paper_column::is_breakable (r_neighbor))))
95 A rather hairy check, but we really only want to move around
96 clefs. (anything else?)
98 in any case, we don't want to move bar lines.
100 extract_grob_set (c, "elements", elts);
101 for (vsize i = elts.size (); i--;)
104 if (g && Break_align_interface::has_interface (g))
106 extract_grob_set (g, "elements", gelts);
107 for (vsize j = gelts.size (); j--;)
112 ugh. -- fix staff-bar name?
114 if (h && h->get_property ("break-align-symbol") == ly_symbol2scm ("staff-bar"))
124 Remove columns that are not tightly fitting from COLS. In the
125 removed columns, set 'between-cols to the columns where it is in
129 Spacing_spanner::prune_loose_columns (Grob *me, vector<Grob*> *cols,
130 Spacing_options const *options)
132 vector<Grob*> newcols;
134 for (vsize i = 0; i < cols->size (); i++)
136 Grob *c = cols->at (i);
138 bool loose = (i > 0 && i < cols->size () - 1)
139 && is_loose_column (cols->at (i - 1), c, cols->at (i + 1), options);
143 extract_grob_set (c, "right-neighbors", rns_arr);
144 extract_grob_set (c, "left-neighbors", lns_arr);
146 SCM lns = lns_arr.size () ? lns_arr.back ()->self_scm () : SCM_BOOL_F;
147 SCM rns = rns_arr.size () ? rns_arr.back ()->self_scm () : SCM_BOOL_F;
150 Either object can be non existent, if the score ends
154 extract_grob_set (unsmob_grob (rns), "right-items", right_items);
155 c->set_object ("between-cols", scm_cons (lns,
156 right_items[0]->self_scm ()));
159 Set distance constraints for loose columns
161 Drul_array<Grob *> next_door;
162 next_door[LEFT] = cols->at (i - 1);
163 next_door[RIGHT] = cols->at (i + 1);
165 Drul_array<Real> dists (0, 0);
170 Item *lc = dynamic_cast<Item *> ((d == LEFT) ? next_door[LEFT] : c);
171 Item *rc = dynamic_cast<Item *> (d == LEFT ? c : next_door[RIGHT]);
173 extract_grob_set (lc, "spacing-wishes", wishes);
174 for (vsize k = wishes.size (); k--;)
176 Grob *sp = wishes[k];
177 if (Note_spacing::left_column (sp) != lc
178 || Note_spacing::right_column (sp) != rc)
185 if (Note_spacing::has_interface (sp))
188 The note spacing should be taken from the musical
192 Real base = note_spacing (me, lc, rc, options, &dummy);
193 Note_spacing::get_spacing (sp, rc, base, options->increment_, &space, &fixed);
195 space -= options->increment_;
197 dists[d] = max (dists[d], space);
199 else if (Staff_spacing::has_interface (sp))
201 Real space, fixed_space;
202 Staff_spacing::get_spacing_params (sp,
203 &space, &fixed_space);
205 dists[d] = max (dists[d], fixed_space);
208 programming_error ("Subversive spacing wish");
211 while (flip (&d) != LEFT);
214 r.distance_ = dists[LEFT] + dists[RIGHT];
215 r.item_drul_[LEFT] = dynamic_cast<Item *> (cols->at (i - 1));
216 r.item_drul_[RIGHT] = dynamic_cast<Item *> (cols->at (i + 1));
221 newcols.push_back (c);
228 Set neighboring columns determined by the spacing-wishes grob property.
231 Spacing_spanner::set_explicit_neighbor_columns (vector<Grob*> const &cols)
233 for (vsize i = 0; i < cols.size (); i++)
235 SCM right_neighbors = Grob_array::make_array ();
236 Grob_array *rn_arr = unsmob_grob_array (right_neighbors);
237 int min_rank = 100000; // inf.
239 extract_grob_set (cols[i], "spacing-wishes", wishes);
240 for (vsize k = wishes.size (); k--;)
242 Item *wish = dynamic_cast<Item *> (wishes[k]);
244 Item *lc = wish->get_column ();
245 Grob *right = Note_spacing::right_column (wish);
250 Item *rc = dynamic_cast<Item *> (right);
252 int right_rank = Paper_column::get_rank (rc);
253 int left_rank = Paper_column::get_rank (lc);
256 update the left column.
258 if (right_rank <= min_rank)
260 if (right_rank < min_rank)
263 min_rank = right_rank;
268 update the right column of the wish.
272 extract_grob_set (rc, "left-neighbors", lns_arr);
275 Item *it = dynamic_cast<Item *> (lns_arr.back ());
276 maxrank = Paper_column::get_rank (it->get_column ());
279 if (left_rank >= maxrank)
282 if (left_rank > maxrank)
284 Grob_array *ga = unsmob_grob_array (rc->get_object ("left-neighbors"));
289 Pointer_group_interface::add_grob (rc, ly_symbol2scm ("left-neighbors"), wish);
294 cols[i]->set_object ("right-neighbors", right_neighbors);
299 Set neighboring columns that have no left/right-neighbor set
300 yet. Only do breakable non-musical columns, and musical columns.
303 Spacing_spanner::set_implicit_neighbor_columns (vector<Grob*> const &cols)
305 for (vsize i = 0; i < cols.size (); i++)
307 Item *it = dynamic_cast<Item *> (cols[i]);
308 if (!Paper_column::is_breakable (it) && !Paper_column::is_musical (it))
311 // it->breakable || it->musical
314 sloppy with typing left/right-neighbors should take list, but paper-column found instead.
316 extract_grob_set (cols[i], "left-neighbors", lns);
317 if (lns.empty () && i)
319 SCM ga_scm = Grob_array::make_array ();
320 Grob_array *ga = unsmob_grob_array (ga_scm);
321 ga->add (cols[i - 1]);
322 cols[i]->set_object ("left-neighbors", ga_scm);
324 extract_grob_set (cols[i], "right-neighbors", rns);
325 if (rns.empty () && i < cols.size () - 1)
327 SCM ga_scm = Grob_array::make_array ();
328 Grob_array *ga = unsmob_grob_array (ga_scm);
329 ga->add (cols[i + 1]);
330 cols[i]->set_object ("right-neighbors", ga_scm);