2 accidental-placement.cc -- implement Accidental_placement
4 source file of the GNU LilyPond music typesetter
6 (c) 2002--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
11 #include "accidental-placement.hh"
16 #include "note-column.hh"
17 #include "pointer-group-interface.hh"
18 #include "note-collision.hh"
19 #include "accidental-interface.hh"
23 Accidental_placement::add_accidental (Grob *me, Grob *a)
25 a->set_parent (me, X_AXIS);
26 a->set_property ("X-offset", Grob::x_parent_positioning_proc);
27 SCM cause = a->get_parent (Y_AXIS)->get_property ("cause");
29 Music *mcause = unsmob_music (cause);
32 programming_error ("note head has no music cause");
36 Pitch *p = unsmob_pitch (mcause->get_property ("pitch"));
38 int n = p->get_notename ();
40 SCM accs = me->get_object ("accidental-grobs");
41 SCM key = scm_from_int (n);
42 SCM entry = scm_assq (key, accs);
43 if (entry == SCM_BOOL_F)
46 entry = scm_cdr (entry);
48 entry = scm_cons (a->self_scm (), entry);
50 accs = scm_assq_set_x (accs, key, entry);
52 me->set_object ("accidental-grobs", accs);
56 Split into break reminders.
59 Accidental_placement::split_accidentals (Grob *accs,
60 vector<Grob*> *break_reminder,
61 vector<Grob*> *real_acc)
63 for (SCM acs = accs->get_object ("accidental-grobs"); scm_is_pair (acs);
65 for (SCM s = scm_cdar (acs); scm_is_pair (s); s = scm_cdr (s))
67 Grob *a = unsmob_grob (scm_car (s));
69 if (unsmob_grob (a->get_object ("tie")))
70 break_reminder->push_back (a);
72 real_acc->push_back (a);
77 Accidentals are special, because they appear and disappear after
81 Accidental_placement::get_relevant_accidental_extent (Grob *me,
86 vector<Grob*> *which = 0;
88 Accidental_placement::split_accidentals (me, &br, &ra);
91 if (dynamic_cast<Item *> (left_object)->break_status_dir () == RIGHT)
97 for (vsize i = 0; i < which->size (); i++)
98 extent.unite (which->at (i)->extent (item_col, X_AXIS));
100 if (!extent.is_empty ())
102 Real p = robust_scm2double (me->get_property ("left-padding"), 0.2);
109 struct Accidental_placement_entry
111 vector<Skyline_entry> left_skyline_;
112 vector<Skyline_entry> right_skyline_;
113 Interval vertical_extent_;
114 vector<Box> extents_;
115 vector<Grob*> grobs_;
118 Accidental_placement_entry ()
125 static Interval all_accidental_vertical_extent;
126 Real ape_priority (Accidental_placement_entry const *a)
128 return a->vertical_extent_[UP];
131 int ape_compare (Accidental_placement_entry *const &a,
132 Accidental_placement_entry *const &b)
134 return sign (ape_priority (a) - ape_priority (b));
137 int ape_rcompare (Accidental_placement_entry *const &a,
138 Accidental_placement_entry *const &b)
140 return -sign (ape_priority (a) - ape_priority (b));
152 stagger_apes (vector<Accidental_placement_entry*> *apes)
154 vector<Accidental_placement_entry*> asc = *apes;
156 vector_sort (asc, &ape_compare);
161 for (vsize i = 0; i < asc.size ();)
163 Accidental_placement_entry *a = 0;
180 This routine computes placements of accidentals. During
181 add_accidental (), accidentals are already grouped by note, so that
182 octaves are placed above each other; they form columns. Then the
183 columns are sorted: the biggest columns go closest to the note.
184 Then the columns are spaced as closely as possible (using skyline
188 TODO: more advanced placement. Typically, the accs should be placed
189 to form a C shape, like this
198 The naturals should be left of the C as well; they should
201 Note that this placement problem looks NP hard, so we just use a
202 simple strategy, not an optimal choice.
206 TODO: there should be more space in the following situation
220 MAKE_SCHEME_CALLBACK(Accidental_placement, calc_positioning_done, 1);
222 Accidental_placement::calc_positioning_done (SCM smob)
224 Grob *me = unsmob_grob (smob);
228 SCM accs = me->get_object ("accidental-grobs");
229 if (!scm_is_pair (accs))
233 TODO: there is a bug in this code. If two accs are on the same
234 Y-position, they share an Ape, and will be printed in overstrike.
236 vector<Accidental_placement_entry*> apes;
237 for (SCM s = accs; scm_is_pair (s); s = scm_cdr (s))
239 Accidental_placement_entry *ape = new Accidental_placement_entry;
240 ape->notename_ = scm_to_int (scm_caar (s));
242 for (SCM t = scm_cdar (s); scm_is_pair (t); t = scm_cdr (t))
243 ape->grobs_.push_back (unsmob_grob (scm_car (t)));
245 apes.push_back (ape);
248 Grob *common[] = {me, 0};
251 First we must extract *all* pointers. We can only determine
252 extents if we're sure that we've found the right common refpoint
254 vector<Grob*> note_cols, heads;
255 for (vsize i = apes.size (); i--;)
257 Accidental_placement_entry *ape = apes[i];
258 for (vsize j = ape->grobs_.size (); j--;)
260 Grob *a = ape->grobs_[j];
263 common[Y_AXIS] = common[Y_AXIS]->common_refpoint (a, Y_AXIS);
267 Grob *head = a->get_parent (Y_AXIS);
269 Grob *col = head->get_parent (X_AXIS);
270 if (Note_column::has_interface (col))
271 note_cols.push_back (col);
273 heads.push_back (head);
278 This is a little kludgy: to get all notes, we look if there are
281 for (vsize i = note_cols.size (); i--;)
283 Grob *c = note_cols[i]->get_parent (X_AXIS);
284 if (Note_collision_interface::has_interface (c))
286 extract_grob_set (c, "elements", gs);
288 concat (note_cols, gs);
292 for (vsize i = note_cols.size (); i--;)
293 concat (heads, extract_grob_array (note_cols[i], "note-heads"));
295 vector_sort (heads, default_compare);
297 common[Y_AXIS] = common_refpoint_of_array (heads, common[Y_AXIS], Y_AXIS);
299 for (vsize i = apes.size (); i--;)
301 Accidental_placement_entry *ape = apes[i];
302 ape->left_skyline_ = empty_skyline (LEFT);
303 ape->right_skyline_ = empty_skyline (RIGHT);
305 for (vsize j = apes[i]->grobs_.size (); j--;)
307 Grob *a = apes[i]->grobs_[j];
309 vector<Box> boxes = Accidental_interface::accurate_boxes (a, common);
311 ape->extents_.insert (ape->extents_.end (), boxes.begin (), boxes.end ());
312 for (vsize j = boxes.size (); j--;)
314 insert_extent_into_skyline (&ape->left_skyline_, boxes[j], Y_AXIS, LEFT);
315 insert_extent_into_skyline (&ape->right_skyline_, boxes[j], Y_AXIS, RIGHT);
321 for (vsize i = apes.size (); i--;)
325 for (vsize j = apes[i]->extents_.size (); j--;)
326 y.unite (apes[i]->extents_[j][Y_AXIS]);
327 apes[i]->vertical_extent_ = y;
330 all_accidental_vertical_extent = total;
331 stagger_apes (&apes);
333 Accidental_placement_entry *head_ape = new Accidental_placement_entry;
334 common[X_AXIS] = common_refpoint_of_array (heads, common[X_AXIS], X_AXIS);
335 vector<Skyline_entry> head_skyline (empty_skyline (LEFT));
336 vector<Box> head_extents;
337 for (vsize i = heads.size (); i--;)
339 Box b (heads[i]->extent (common[X_AXIS], X_AXIS),
340 heads[i]->extent (common[Y_AXIS], Y_AXIS));
342 insert_extent_into_skyline (&head_skyline, b, Y_AXIS, LEFT);
345 head_ape->left_skyline_ = head_skyline;
346 head_ape->offset_ = 0.0;
348 Real padding = robust_scm2double (me->get_property ("padding"), 0.2);
350 vector<Skyline_entry> left_skyline = head_ape->left_skyline_;
351 heighten_skyline (&left_skyline,
352 -robust_scm2double (me->get_property ("right-padding"), 0));
354 Add accs entries right-to-left.
356 for (vsize i = apes.size (); i-- > 0;)
359 = -skyline_meshing_distance (apes[i]->right_skyline_, left_skyline);
361 offset = (i < apes.size () - 1) ? apes[i + 1]->offset_ : 0.0;
365 apes[i]->offset_ = offset;
367 vector<Skyline_entry> new_left_skyline = apes[i]->left_skyline_;
368 heighten_skyline (&new_left_skyline, apes[i]->offset_);
369 merge_skyline (&new_left_skyline, left_skyline, LEFT);
370 left_skyline = new_left_skyline;
373 for (vsize i = apes.size (); i--;)
375 Accidental_placement_entry *ape = apes[i];
376 for (vsize j = ape->grobs_.size (); j--;)
377 ape->grobs_[j]->translate_axis (ape->offset_, X_AXIS);
380 Interval left_extent, right_extent;
381 Accidental_placement_entry *ape = apes[0];
383 for (vsize i = ape->extents_.size (); i--;)
384 left_extent.unite (ape->offset_ + ape->extents_[i][X_AXIS]);
387 for (vsize i = ape->extents_.size (); i--;)
388 right_extent.unite (ape->offset_ + ape->extents_[i][X_AXIS]);
390 left_extent[LEFT] -= robust_scm2double (me->get_property ("left-padding"), 0);
391 Interval width (left_extent[LEFT], right_extent[RIGHT]);
393 SCM scm_width = ly_interval2scm (width);
394 me->flush_extent_cache (X_AXIS);
395 me->set_property ("X-extent", scm_width);
397 for (vsize i = apes.size (); i--;)
403 ADD_INTERFACE (Accidental_placement,
404 "accidental-placement-interface",
405 "Resolve accidental collisions.",