]> git.donarmstrong.com Git - lilypond.git/blob - lily/slur-scoring.cc
Use queue for prioritizing slur scores.
[lilypond.git] / lily / slur-scoring.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1996--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
5   Jan Nieuwenhuizen <janneke@gnu.org>
6
7   LilyPond is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   LilyPond is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21
22 #include "slur-scoring.hh"
23
24 #include <queue>
25
26 #include "accidental-interface.hh"
27 #include "beam.hh"
28 #include "directional-element-interface.hh"
29 #include "libc-extension.hh"
30 #include "main.hh"
31 #include "note-column.hh"
32 #include "output-def.hh"
33 #include "paper-column.hh"
34 #include "pitch.hh"
35 #include "pointer-group-interface.hh"
36 #include "slur-configuration.hh"
37 #include "slur.hh"
38 #include "spanner.hh"
39 #include "staff-symbol-referencer.hh"
40 #include "staff-symbol.hh"
41 #include "stem.hh"
42 #include "warn.hh"
43
44 /*
45   TODO:
46
47   - curve around flag for y coordinate
48
49   - short-cut: try a smaller region first.
50
51   - handle non-visible stems better.
52
53   - try to prune number of scoring criteria
54
55   - take encompass-objects more into account when determining
56   slur shape
57
58   - calculate encompass scoring directly after determining slur shape.
59
60   - optimize.
61 */
62 struct Slur_score_state;
63
64 Slur_score_state::Slur_score_state ()
65 {
66   musical_dy_ = 0.0;
67   valid_ = false;
68   edge_has_beams_ = false;
69   has_same_beam_ = false;
70   is_broken_ = false;
71   dir_ = CENTER;
72   slur_ = 0;
73   common_[X_AXIS] = 0;
74   common_[Y_AXIS] = 0;
75 }
76
77 Slur_score_state::~Slur_score_state ()
78 {
79   junk_pointers (configurations_);
80 }
81
82 /*
83   If a slur is broken across a line break, the direction
84   of the post-break slur must be the same as the pre-break
85   slur.
86 */
87 Direction
88 Slur_score_state::slur_direction () const
89 {
90   Grob *left_neighbor = slur_->broken_neighbor (LEFT);
91
92   if (left_neighbor && left_neighbor->is_live ())
93     return get_grob_direction (left_neighbor);
94
95   Direction dir = get_grob_direction (slur_);
96
97   if (Grob *right_neighbor = slur_->broken_neighbor (RIGHT))
98     set_grob_direction (right_neighbor, dir);
99
100   return dir;
101 }
102
103 Encompass_info
104 Slur_score_state::get_encompass_info (Grob *col) const
105 {
106   Grob *stem = unsmob_grob (col->get_object ("stem"));
107   Encompass_info ei;
108
109   if (!stem)
110     {
111       programming_error ("no stem for note column");
112       ei.x_ = col->relative_coordinate (common_[X_AXIS], X_AXIS);
113       ei.head_ = ei.stem_ = col->extent (common_[Y_AXIS],
114                                          Y_AXIS)[dir_];
115       return ei;
116     }
117   Direction stem_dir = get_grob_direction (stem);
118
119   if (Grob *head = Note_column::first_head (col))
120     ei.x_ = head->extent (common_[X_AXIS], X_AXIS).center ();
121   else
122     ei.x_ = col->extent (common_[X_AXIS], X_AXIS).center ();
123
124   Grob *h = Stem::extremal_heads (stem)[Direction (dir_)];
125   if (!h)
126     {
127       ei.head_ = ei.stem_ = col->extent (common_[Y_AXIS], Y_AXIS)[dir_];
128       return ei;
129     }
130
131   ei.head_ = h->extent (common_[Y_AXIS], Y_AXIS)[dir_];
132
133   if ((stem_dir == dir_)
134       && !stem->extent (stem, Y_AXIS).is_empty ())
135     {
136       ei.stem_ = stem->extent (common_[Y_AXIS], Y_AXIS)[dir_];
137       if (Grob *b = Stem::get_beam (stem))
138         ei.stem_ += stem_dir * 0.5 * Beam::get_beam_thickness (b);
139
140       Interval x = stem->extent (common_[X_AXIS], X_AXIS);
141       ei.x_ = x.is_empty ()
142         ? stem->relative_coordinate (common_[X_AXIS], X_AXIS)
143         : x.center ();
144     }
145   else
146     ei.stem_ = ei.head_;
147
148   return ei;
149 }
150
151 Drul_array<Bound_info>
152 Slur_score_state::get_bound_info () const
153 {
154   Drul_array<Bound_info> extremes;
155
156   Direction d = LEFT;
157   Direction dir = dir_;
158
159   do
160     {
161       extremes[d].bound_ = slur_->get_bound (d);
162       if (Note_column::has_interface (extremes[d].bound_))
163         {
164           extremes[d].note_column_ = extremes[d].bound_;
165           extremes[d].stem_ = Note_column::get_stem (extremes[d].note_column_);
166           if (extremes[d].stem_)
167             {
168               extremes[d].stem_dir_ = get_grob_direction (extremes[d].stem_);
169
170               for (int a = X_AXIS; a < NO_AXES; a++)
171                 {
172                   Axis ax = Axis (a);
173                   Interval s = extremes[d].stem_->extent (common_[ax], ax);
174                   if (s.is_empty ())
175                     {
176                       /*
177                         do not issue warning. This happens for rests and
178                         whole notes.
179                       */
180                       s = Interval (0, 0)
181                         + extremes[d].stem_->relative_coordinate (common_[ax], ax);
182                     }
183                   extremes[d].stem_extent_[ax] = s;
184                 }
185
186               extremes[d].slur_head_
187                 = Stem::extremal_heads (extremes[d].stem_)[dir];
188               if (!extremes[d].slur_head_
189                   && Note_column::has_rests (extremes[d].bound_))
190                 extremes[d].slur_head_ = Note_column::get_rest (extremes[d].bound_);
191               extremes[d].staff_ = Staff_symbol_referencer
192                 ::get_staff_symbol (extremes[d].stem_);
193               extremes[d].staff_space_ = Staff_symbol_referencer
194                 ::staff_space (extremes[d].stem_);
195             }
196
197           if (extremes[d].slur_head_)
198             extremes[d].slur_head_x_extent_
199               = extremes[d].slur_head_->extent (common_[X_AXIS], X_AXIS);
200
201         }
202     }
203   while (flip (&d) != LEFT);
204
205   return extremes;
206 }
207
208 void
209 Slur_score_state::fill (Grob *me)
210 {
211   slur_ = dynamic_cast<Spanner *> (me);
212   columns_
213     = internal_extract_grob_array (me, ly_symbol2scm ("note-columns"));
214   
215   if (columns_.empty ())
216     {
217       me->suicide ();
218       return;
219     }
220
221   Slur::replace_breakable_encompass_objects (me);
222   staff_space_ = Staff_symbol_referencer::staff_space (me);
223   Real lt = me->layout ()->get_dimension (ly_symbol2scm ("line-thickness"));
224   thickness_ = robust_scm2double (me->get_property ("thickness"), 1.0) * lt;
225
226   dir_ = slur_direction ();
227   parameters_.fill (me);
228
229   extract_grob_set (me, "note-columns", columns);
230   extract_grob_set (me, "encompass-objects", extra_objects);
231
232   Spanner *sp = dynamic_cast<Spanner *> (me);
233
234   for (int i = X_AXIS; i < NO_AXES; i++)
235     {
236       Axis a = (Axis)i;
237       common_[a] = common_refpoint_of_array (columns, me, a);
238       common_[a] = common_refpoint_of_array (extra_objects, common_[a], a);
239
240       Direction d = LEFT;
241       do
242         {
243           /*
244             If bound is not in note-columns, we don't want to know about
245             its Y-position
246           */
247           if (a != Y_AXIS)
248             common_[a] = common_[a]->common_refpoint (sp->get_bound (d), a);
249         }
250       while (flip (&d) != LEFT);
251     }
252
253   extremes_ = get_bound_info ();
254   is_broken_ = (!extremes_[LEFT].note_column_
255                 || !extremes_[RIGHT].note_column_);
256
257   has_same_beam_
258     = (extremes_[LEFT].stem_ && extremes_[RIGHT].stem_
259        && Stem::get_beam (extremes_[LEFT].stem_) == Stem::get_beam (extremes_[RIGHT].stem_));
260
261   base_attachments_ = get_base_attachments ();
262
263   Drul_array<Real> end_ys
264     = get_y_attachment_range ();
265
266   configurations_ = enumerate_attachments (end_ys);
267   for (vsize i = 0; i < columns_.size (); i++)
268     encompass_infos_.push_back (get_encompass_info (columns_[i]));
269
270   extra_encompass_infos_ = get_extra_encompass_infos ();
271   valid_ = true;
272
273   musical_dy_ = 0.0;
274   Direction d = LEFT;
275   do
276     {
277       if (!is_broken_
278           && extremes_[d].slur_head_)
279         musical_dy_ += d
280           * extremes_[d].slur_head_->relative_coordinate (common_[Y_AXIS], Y_AXIS);
281     }
282   while (flip (&d) != LEFT);
283
284   edge_has_beams_
285     = (extremes_[LEFT].stem_ && Stem::get_beam (extremes_[LEFT].stem_))
286     || (extremes_[RIGHT].stem_ && Stem::get_beam (extremes_[RIGHT].stem_));
287
288   if (is_broken_)
289     musical_dy_ = 0.0;
290 }
291
292
293 MAKE_SCHEME_CALLBACK (Slur, calc_control_points, 1)
294 SCM
295 Slur::calc_control_points (SCM smob)
296 {
297   Spanner *me = unsmob_spanner (smob);
298
299   Slur_score_state state;
300   state.fill (me);
301
302   if (!state.valid_)
303     return SCM_EOL;
304
305   state.generate_curves ();
306
307   SCM end_ys = me->get_property ("positions");
308   SCM inspect_quants = me->get_property ("inspect-quants");
309   if (is_number_pair (inspect_quants))
310     end_ys = inspect_quants;
311   
312   Slur_configuration *best = NULL;
313   if (is_number_pair (end_ys))
314     best = state.get_forced_configuration (ly_scm2interval(end_ys));
315   else
316     best = state.get_best_curve ();
317
318 #if DEBUG_SLUR_SCORING
319   bool debug_slurs = to_boolean (me->layout ()
320                                  ->lookup_variable (ly_symbol2scm ("debug-slur-scoring")));
321   if (debug_slurs)
322     {
323       string total = best->card ();
324       total += to_string (" TOTAL=%.2f idx=%d", best->score (), best->index_); 
325       me->set_property ("quant-score", ly_string2scm (total));
326     }
327 #endif
328   
329   SCM controls = SCM_EOL;
330   for (int i = 4; i--;)
331     {
332       Offset o = best->curve_.control_[i]
333         - Offset (me->relative_coordinate (state.common_[X_AXIS], X_AXIS),
334                   me->relative_coordinate (state.common_[Y_AXIS], Y_AXIS));
335       controls = scm_cons (ly_offset2scm (o), controls);
336     }
337
338   return controls;
339 }
340
341 Slur_configuration*
342 Slur_score_state::get_forced_configuration (Interval ys) const
343 {
344   Slur_configuration *best = NULL;
345   Real mindist = 1e6;
346   for (vsize i = 0; i < configurations_.size (); i++)
347     {
348       Real d = fabs (configurations_[i]->attachment_[LEFT][Y_AXIS] - ys[LEFT])
349         + fabs (configurations_[i]->attachment_[RIGHT][Y_AXIS] - ys[RIGHT]);
350       if (d < mindist)
351         {
352           best = configurations_[i];
353           mindist = d;
354         }
355     }
356
357   while (!best->done ())
358     best->run_next_scorer (*this);
359   
360   if (mindist > 1e5)
361     programming_error ("cannot find quant");
362
363   return best;
364 }
365
366
367 Slur_configuration *
368 Slur_score_state::get_best_curve () const
369 {
370   std::priority_queue<Slur_configuration*, std::vector<Slur_configuration*>,
371                       Slur_configuration_less> queue;
372   for (vsize i = 0; i < configurations_.size (); i++)
373     queue.push (configurations_[i]);
374
375   Slur_configuration *best = NULL;
376   while (true) {
377     best = queue.top ();
378     if (best->done ())
379       break;
380     
381     queue.pop ();
382     best->run_next_scorer (*this);
383     queue.push (best);
384   }
385
386   return best;
387 }
388
389 Grob *
390 Slur_score_state::breakable_bound_item (Direction d) const
391 {
392   Grob *col = slur_->get_bound (d)->get_column ();
393
394   extract_grob_set (slur_, "encompass-objects", extra_encompasses);
395
396   for (vsize i = 0; i < extra_encompasses.size (); i++)
397     {
398       Item *item = dynamic_cast<Item*> (extra_encompasses[i]);
399       if (item && col == item->get_column ())
400         return item;
401     }
402
403   return 0;
404 }
405
406 /*
407   TODO: should analyse encompasses to determine sensible region, and
408   should limit slopes available.
409 */
410
411 Drul_array<Real>
412 Slur_score_state::get_y_attachment_range () const
413 {
414   Drul_array<Real> end_ys;
415   Direction d = LEFT;
416   do
417     {
418       if (extremes_[d].note_column_)
419         {
420           end_ys[d] = dir_
421             * max (max (dir_ * (base_attachments_[d][Y_AXIS]
422                                 + parameters_.region_size_ * dir_),
423                         dir_ * (dir_ + extremes_[d].note_column_->extent (common_[Y_AXIS], Y_AXIS)[dir_])),
424                    dir_ * base_attachments_[-d][Y_AXIS]);
425         }
426       else
427         end_ys[d] = base_attachments_[d][Y_AXIS] + parameters_.region_size_ * dir_;
428     }
429   while (flip (&d) != LEFT);
430
431   return end_ys;
432 }
433
434 bool
435 spanner_less (Spanner *s1, Spanner *s2)
436 {
437   Slice b1, b2;
438   Direction d = LEFT;
439   do
440     {
441       b1[d] = s1->get_bound (d)->get_column ()->get_rank ();
442       b2[d] = s2->get_bound (d)->get_column ()->get_rank ();
443     }
444   while (flip (&d) != LEFT);
445
446   return b2[LEFT] <= b1[LEFT] && b2[RIGHT] >= b1[RIGHT]
447     && (b2[LEFT] != b1[LEFT] || b2[RIGHT] != b1[RIGHT]);
448 }
449
450 Drul_array<Offset>
451 Slur_score_state::get_base_attachments () const
452 {
453   Drul_array<Offset> base_attachment;
454   Direction d = LEFT;
455   do
456     {
457       Grob *stem = extremes_[d].stem_;
458       Grob *head = extremes_[d].slur_head_;
459
460       Real x = 0.0;
461       Real y = 0.0;
462       if (extremes_[d].note_column_)
463         {
464
465           /*
466             fixme: X coord should also be set in this case.
467           */
468           if (stem
469               && !Stem::is_invisible (stem)
470               && extremes_[d].stem_dir_ == dir_
471               && Stem::get_beaming (stem, -d)
472               && Stem::get_beam (stem)
473               && (!spanner_less (slur_, Stem::get_beam (stem))
474                   || has_same_beam_))
475             y = extremes_[d].stem_extent_[Y_AXIS][dir_];
476           else if (head)
477             y = head->extent (common_[Y_AXIS], Y_AXIS)[dir_];
478           y += dir_ * 0.5 * staff_space_;
479
480           y = move_away_from_staffline (y, head);
481
482           Grob *fh = Note_column::first_head (extremes_[d].note_column_);
483           x
484             = (fh ? fh->extent (common_[X_AXIS], X_AXIS)
485                : extremes_[d].bound_->extent (common_[X_AXIS], X_AXIS))
486             .linear_combination (CENTER);
487         }
488       base_attachment[d] = Offset (x, y);
489     }
490   while (flip (&d) != LEFT);
491
492   do
493     {
494       if (!extremes_[d].note_column_)
495         {
496           Real x = 0;
497           Real y = 0;
498
499           if (Grob *g = breakable_bound_item (d))
500             {
501               x = robust_relative_extent (g, common_[X_AXIS], X_AXIS)[RIGHT];
502             }
503           else if (d == RIGHT)
504             x = robust_relative_extent (extremes_[d].bound_, common_[X_AXIS], X_AXIS)[d];
505           else
506             x = slur_->get_broken_left_end_align ();
507           
508           Grob *col = (d == LEFT) ? columns_[0] : columns_.back ();
509
510           if (extremes_[-d].bound_ != col)
511             {
512               y = robust_relative_extent (col, common_[Y_AXIS], Y_AXIS)[dir_];
513               y += dir_ * 0.5 * staff_space_;
514
515               if (get_grob_direction (col) == dir_
516                   && Note_column::get_stem (col)
517                   && !Stem::is_invisible (Note_column::get_stem (col)))
518                 y -= dir_ * 1.5 * staff_space_;
519             }
520           else
521             y = base_attachment[-d][Y_AXIS];
522
523           y = move_away_from_staffline (y, col);
524
525           base_attachment[d] = Offset (x, y);
526         }
527     }
528   while (flip (&d) != LEFT);
529
530   do
531     {
532       for (int a = X_AXIS; a < NO_AXES; a++)
533         {
534           Real &b = base_attachment[d][Axis (a)];
535
536           if (isinf (b) || isnan (b))
537             {
538               programming_error ("slur attachment is inf/nan");
539               b = 0.0;
540             }
541         }
542     }
543   while (flip (&d) != LEFT);
544
545   return base_attachment;
546 }
547
548 Real
549 Slur_score_state::move_away_from_staffline (Real y,
550                                             Grob *on_staff) const
551 {
552   if (!on_staff)
553     return y;
554   
555   Grob *staff_symbol = Staff_symbol_referencer::get_staff_symbol (on_staff);
556   if (!staff_symbol)
557     return y;
558
559   Real pos
560     = (y - staff_symbol->relative_coordinate (common_[Y_AXIS],
561                                               Y_AXIS))
562     * 2.0 / staff_space_;
563
564   if (fabs (pos - my_round (pos)) < 0.2
565       && Staff_symbol_referencer::on_line (on_staff, (int) rint (pos))
566       && Staff_symbol_referencer::line_count (on_staff) - 1 >= rint (pos))
567     y += 1.5 * staff_space_ * dir_ / 10;
568
569   return y;
570 }
571
572 vector<Offset>
573 Slur_score_state::generate_avoid_offsets () const
574 {
575   vector<Offset> avoid;
576   vector<Grob*> encompasses = columns_;
577
578   for (vsize i = 0; i < encompasses.size (); i++)
579     {
580       if (extremes_[LEFT].note_column_ == encompasses[i]
581           || extremes_[RIGHT].note_column_ == encompasses[i])
582         continue;
583
584       Encompass_info inf (get_encompass_info (encompasses[i]));
585       Real y = dir_ * (max (dir_ * inf.head_, dir_ * inf.stem_));
586
587       avoid.push_back (Offset (inf.x_, y + dir_ * parameters_.free_head_distance_));
588     }
589
590   extract_grob_set (slur_, "encompass-objects", extra_encompasses);
591   for (vsize i = 0; i < extra_encompasses.size (); i++)
592     {
593       if (Slur::has_interface (extra_encompasses[i]))
594         {
595           Grob *small_slur = extra_encompasses[i];
596           Bezier b = Slur::get_curve (small_slur);
597
598           Offset z = b.curve_point (0.5);
599           z += Offset (small_slur->relative_coordinate (common_[X_AXIS], X_AXIS),
600                        small_slur->relative_coordinate (common_[Y_AXIS], Y_AXIS));
601
602           z[Y_AXIS] += dir_ * parameters_.free_slur_distance_;
603           avoid.push_back (z);
604         }
605       else if (extra_encompasses[i]->get_property ("avoid-slur") == ly_symbol2scm ("inside"))
606         {
607           Grob *g = extra_encompasses [i];
608           Interval xe = g->extent (common_[X_AXIS], X_AXIS);
609           Interval ye = g->extent (common_[Y_AXIS], Y_AXIS);
610
611           if (!xe.is_empty ()
612               && !ye.is_empty ())
613             avoid.push_back (Offset (xe.center (), ye[dir_]));
614         }
615     }  
616   return avoid;
617 }
618
619 void
620 Slur_score_state::generate_curves () const
621 {
622   Real r_0 = robust_scm2double (slur_->get_property ("ratio"), 0.33);
623   Real h_inf = staff_space_ * scm_to_double (slur_->get_property ("height-limit"));
624
625   vector<Offset> avoid = generate_avoid_offsets ();
626   for (vsize i = 0; i < configurations_.size (); i++)
627     configurations_[i]->generate_curve (*this, r_0, h_inf, avoid);
628 }
629
630 vector<Slur_configuration*>
631 Slur_score_state::enumerate_attachments (Drul_array<Real> end_ys) const
632 {
633   vector<Slur_configuration*> scores;
634
635   Drul_array<Offset> os;
636   os[LEFT] = base_attachments_[LEFT];
637   Real minimum_length = staff_space_
638     * robust_scm2double (slur_->get_property ("minimum-length"), 2.0);
639
640   for (int i = 0; dir_ * os[LEFT][Y_AXIS] <= dir_ * end_ys[LEFT]; i++)
641     {
642       os[RIGHT] = base_attachments_[RIGHT];
643       for (int j = 0; dir_ * os[RIGHT][Y_AXIS] <= dir_ * end_ys[RIGHT]; j++)
644         {
645           Direction d = LEFT;
646           Drul_array<bool> attach_to_stem (false, false);
647           do
648             {
649               os[d][X_AXIS] = base_attachments_[d][X_AXIS];
650               if (extremes_[d].stem_
651                   && !Stem::is_invisible (extremes_[d].stem_)
652                   && extremes_[d].stem_dir_ == dir_)
653                 {
654                   Interval stem_y = extremes_[d].stem_extent_[Y_AXIS];
655                   stem_y.widen (0.25 * staff_space_);
656                   if (stem_y.contains (os[d][Y_AXIS]))
657                     {
658                       os[d][X_AXIS] = extremes_[d].stem_extent_[X_AXIS][-d]
659                         - d * 0.3;
660                       attach_to_stem[d] = true;
661                     }
662                   else if (dir_ * extremes_[d].stem_extent_[Y_AXIS][dir_]
663                            < dir_ * os[d][Y_AXIS]
664                            && !extremes_[d].stem_extent_[X_AXIS].is_empty ())
665
666                     os[d][X_AXIS] = extremes_[d].stem_extent_[X_AXIS].center ();
667                 }
668             }
669           while (flip (&d) != LEFT);
670
671           Offset dz;
672           dz = os[RIGHT] - os[LEFT];
673           if (dz[X_AXIS] < minimum_length
674               || fabs (dz[Y_AXIS] / dz[X_AXIS]) > parameters_.max_slope_)
675             {
676               do
677                 {
678                   if (extremes_[d].slur_head_
679                       && !extremes_[d].slur_head_x_extent_.is_empty ())
680                     {
681                       os[d][X_AXIS] = extremes_[d].slur_head_x_extent_.center ();
682                       attach_to_stem[d] = false;
683                     }
684                 }
685               while (flip (&d) != LEFT);
686             }
687
688           dz = os[RIGHT] - os[LEFT];
689           do
690             {
691               if (extremes_[d].slur_head_
692                   && !attach_to_stem[d])
693                 {
694                   /* Horizontally move tilted slurs a little.  Move
695                      more for bigger tilts.
696
697                      TODO: parameter */
698                   os[d][X_AXIS]
699                     -= dir_ * extremes_[d].slur_head_x_extent_.length ()
700                     * sin (dz.arg ()) / 3;
701                 }
702             }
703           while (flip (&d) != LEFT);
704
705           scores.push_back (Slur_configuration::new_config (os, scores.size ()));
706
707           os[RIGHT][Y_AXIS] += dir_ * staff_space_ / 2;
708         }
709
710       os[LEFT][Y_AXIS] += dir_ * staff_space_ / 2;
711     }
712
713   assert (scores.size () > 0);
714   return scores;
715 }
716
717 vector<Extra_collision_info>
718 Slur_score_state::get_extra_encompass_infos () const
719 {
720   extract_grob_set (slur_, "encompass-objects", encompasses);
721   vector<Extra_collision_info> collision_infos;
722   for (vsize i = encompasses.size (); i--;)
723     {
724       if (Slur::has_interface (encompasses[i]))
725         {
726           Spanner *small_slur = dynamic_cast<Spanner *> (encompasses[i]);
727           Bezier b = Slur::get_curve (small_slur);
728
729           Offset relative (small_slur->relative_coordinate (common_[X_AXIS], X_AXIS),
730                            small_slur->relative_coordinate (common_[Y_AXIS], Y_AXIS));
731
732           for (int k = 0; k < 3; k++)
733             {
734               Direction hdir = Direction (k - 1);
735
736               /*
737                 Only take bound into account if small slur starts
738                 together with big slur.
739               */
740               if (hdir && small_slur->get_bound (hdir) != slur_->get_bound (hdir))
741                 continue;
742
743               Offset z = b.curve_point (k / 2.0);
744               z += relative;
745
746               Interval yext;
747               yext.set_full ();
748               yext[dir_] = z[Y_AXIS] + dir_ * thickness_ * 1.0;
749
750               Interval xext (-1, 1);
751               xext = xext * (thickness_ * 2) + z[X_AXIS];
752               Extra_collision_info info (small_slur,
753                                          hdir,
754                                          xext,
755                                          yext,
756                                          parameters_.extra_object_collision_penalty_);
757               collision_infos.push_back (info);
758             }
759         }
760       else
761         {
762           Grob *g = encompasses [i];
763           Interval xe = g->extent (common_[X_AXIS], X_AXIS);
764           Interval ye = g->extent (common_[Y_AXIS], Y_AXIS);
765
766           Real xp = 0.0;
767           Real penalty = parameters_.extra_object_collision_penalty_;
768           if (Accidental_interface::has_interface (g))
769             {
770               penalty = parameters_.accidental_collision_;
771
772               Rational alt = ly_scm2rational (g->get_property ("alteration"));
773               SCM scm_style = g->get_property ("style");
774               if (!scm_is_symbol (scm_style)
775                   && !to_boolean (g->get_property ("parenthesized"))
776                   && !to_boolean (g->get_property ("restore-first")))
777                 {
778                   /* End copy accidental.cc */
779                   if (alt == FLAT_ALTERATION
780                       || alt == DOUBLE_FLAT_ALTERATION)
781                     xp = LEFT;
782                   else if (alt == SHARP_ALTERATION)
783                     xp = 0.5 * dir_;
784                   else if (alt == NATURAL_ALTERATION)
785                     xp = -dir_;
786                 }
787             }
788
789           ye.widen (thickness_ * 0.5);
790           xe.widen (thickness_ * 1.0);
791           Extra_collision_info info (g, xp, xe, ye, penalty);
792           collision_infos.push_back (info);
793         }
794     }
795
796   return collision_infos;
797 }
798  
799 Extra_collision_info::Extra_collision_info (Grob *g, Real idx, Interval x, Interval y, Real p)
800 {
801   idx_ = idx;
802   extents_[X_AXIS] = x;
803   extents_[Y_AXIS] = y;
804   penalty_ = p;
805   grob_ = g;
806   type_ = g->get_property ("avoid-slur");
807 }
808
809 Extra_collision_info::Extra_collision_info ()
810 {
811   idx_ = 0.0;
812   penalty_ = 0.;
813   grob_ = 0;
814   type_ = SCM_EOL; 
815 }