]> git.donarmstrong.com Git - lilypond.git/blob - lily/slur.cc
release: 1.3.50
[lilypond.git] / lily / slur.cc
1 /*
2   slur.cc -- implement  Slur
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7     Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 /*
11   [TODO]
12     * begin and end should be treated as a/acknowledge Scripts.
13     * broken slur should have uniform trend
14  */
15
16 #include "directional-element-interface.hh"
17 #include "group-interface.hh"
18 #include "slur.hh"
19 #include "lookup.hh"
20 #include "paper-def.hh"
21 #include "note-column.hh"
22 #include "stem.hh"
23 #include "paper-column.hh"
24 #include "molecule.hh"
25 #include "debug.hh"
26 #include "box.hh"
27 #include "bezier-bow.hh"
28 #include "main.hh"
29 #include "cross-staff.hh"
30 #include "group-interface.hh"
31 #include "staff-symbol-referencer.hh"
32
33
34
35 class Slur_bezier_bow : public Bezier_bow
36 {
37 public:
38   Slur_bezier_bow (Array<Offset> encompass, Direction dir);
39   Array<Real> area_x_gradients_array (Real area);
40   void blow_fit ();
41   Real enclosed_area_f () const;
42   Real fit_factor () const;
43   void minimise_enclosed_area (Paper_def* paper_l, Real default_height);
44 };
45
46 Slur_bezier_bow::Slur_bezier_bow (Array<Offset> encompass, Direction dir)
47   : Bezier_bow (encompass, dir)
48 {
49 }
50
51 void
52 Slur_bezier_bow::blow_fit ()
53 {
54   Real len = curve_.control_[3][X_AXIS]; 
55   Real h = curve_.control_[1][Y_AXIS] * fit_factor () / len;
56   curve_.control_[1][Y_AXIS] = h * len;
57   curve_.control_[2][Y_AXIS] = h * len;  
58   curve_.assert_sanity ();
59 }
60
61
62 Real
63 Slur_bezier_bow::enclosed_area_f () const
64 {
65   Real a = 0;
66   for (int i=0; i < encompass_.size (); i++)
67     {
68       Interval x;
69       Interval y;
70       if (i == 0)
71         {
72           x = Interval (0, encompass_[1][X_AXIS] / 2);
73           y = Interval (0,
74                         curve_.get_other_coordinate (X_AXIS,
75                                                      encompass_[1][X_AXIS]
76                                                      / 2));
77         }
78       else if (i == encompass_.size () - 1)
79         {
80           x = Interval ((encompass_[i-1][X_AXIS] + encompass_[i][X_AXIS])/2, 
81                         encompass_[i][X_AXIS]);
82           y = Interval (0,
83                         (curve_.get_other_coordinate (X_AXIS,
84                                                       (x[MIN] + x[MAX]) / 2)));
85         }
86       else
87         {
88           x = Interval ((encompass_[i-1][X_AXIS] + encompass_[i][X_AXIS]) / 2, 
89                         (encompass_[i][X_AXIS] + encompass_[i+1][X_AXIS]) / 2);
90           y = Interval (encompass_[i][Y_AXIS],
91                         (curve_.get_other_coordinate (X_AXIS, x[MIN])
92                          + curve_.get_other_coordinate (X_AXIS,
93                                                         (x[MIN] + x[MAX]) / 2)
94                          + curve_.get_other_coordinate (X_AXIS, x[MAX])) / 3);
95         }
96       
97       Real da = x.length () * y.length ();
98       a += da;
99     }
100   return a;
101 }
102
103 Array<Real>
104 Slur_bezier_bow::area_x_gradients_array (Real area)
105 {
106   Real len = curve_.control_[3][X_AXIS]; 
107   Real grow = len / 10.0;
108   Array<Real> da (2);
109   for (int i=0; i < 2; i++)
110     {
111       Real r = curve_.control_[i+1][X_AXIS];
112       curve_.control_[i+1][X_AXIS] += grow;
113       da[i] = (enclosed_area_f () - area) / grow;
114       curve_.control_[i+1][X_AXIS] = r; 
115     }
116   return da;
117 }
118
119 void
120 Slur_bezier_bow::minimise_enclosed_area (Paper_def* paper_l,
121                                          Real default_height)
122 {
123   Real length = curve_.control_[3][X_AXIS]; 
124   Real sb = paper_l->get_var ("slur_beautiful");
125   Real beautiful = length * default_height * sb;
126
127   DEBUG_OUT << to_str ("Beautiful: %f\n", beautiful);
128   DEBUG_OUT << to_str ("Length: %f\n", length);
129   DEBUG_OUT << to_str ("D-height: %f\n", default_height);
130   DEBUG_OUT << to_str ("FitFac: %f\n", fit_factor ());
131
132   if (fit_factor () > 1.0)
133     blow_fit ();
134   
135   Real pct_c0 = paper_l->get_var ("bezier_pct_c0");
136   Real pct_c3 = paper_l->get_var ("bezier_pct_c3");
137   Real pct_in_max = paper_l->get_var ("bezier_pct_in_max");
138   Real pct_out_max = paper_l->get_var ("bezier_pct_out_max");
139   Real steps = paper_l->get_var ("bezier_area_steps");
140
141   for (int i=0; i < steps; i++)
142     {
143       Real area = enclosed_area_f ();
144       if (!i)
145         DEBUG_OUT << to_str ("Init area: %f\n", area);
146
147       if (area <= beautiful)
148         break;
149
150       Array<Real> da = area_x_gradients_array (area);
151
152       // urg
153       Real pct = pct_c0 + pct_c3 * length * length * length;
154       pct *= (steps - i) / steps;
155       if (da[0] > 0 || da[1] < 0)
156         pct = pct <? pct_out_max;
157       else
158         pct = pct <? pct_in_max;
159
160       Real u = (abs (curve_.control_[1][X_AXIS] / da[0])
161                 <? abs ((curve_.control_[3][X_AXIS]
162                          - curve_.control_[2][X_AXIS]) / da[1]));
163
164       DEBUG_OUT << to_str ("pct: %f\n", pct);
165       DEBUG_OUT << to_str ("u: %f\n", u);
166
167       DEBUG_OUT << to_str ("da: (%f, %f)\n", da[0], da[1]);
168       DEBUG_OUT << to_str ("da*u: (%f, %f)\n", da[0]*u*pct, da[1]*u*pct);
169       DEBUG_OUT << to_str ("cx: (%f, %f)\n", curve_.control_[1][X_AXIS],
170                            curve_.control_[2][X_AXIS]);
171
172       curve_.control_[1][X_AXIS] -= da[0] * u * pct;
173       curve_.control_[2][X_AXIS] -= da[1] * u * pct;
174     }
175
176   Real area = enclosed_area_f ();
177   DEBUG_OUT << to_str ("Exarea: %f\n", area);
178 }
179
180
181
182 /*
183   max ( encompass.y / curve.y )
184   
185  */
186 Real
187 Slur_bezier_bow::fit_factor () const
188 {
189   Real x1 = encompass_[0][X_AXIS];
190   Real x2 = encompass_.top ()[X_AXIS];
191
192   Real factor = 0.0;
193   for (int i=1; i < encompass_.size ()-1; i++)
194     {
195       if (encompass_[i][X_AXIS] > x1 && encompass_[i][X_AXIS] < x2)
196         {
197          Real y = curve_.get_other_coordinate (X_AXIS, encompass_[i][X_AXIS]);
198          if (y>0)
199            {
200              Real f = encompass_[i][Y_AXIS] / y;
201              factor = factor >? f;
202            }
203         }
204     }
205
206
207   return factor;
208 }
209
210
211
212
213
214 /*
215   Slur
216 */
217
218 Slur::Slur ()
219 {
220   // URG
221   dy_f_drul_[LEFT] = dy_f_drul_[RIGHT] = 0.0;
222   dx_f_drul_[LEFT] = dx_f_drul_[RIGHT] = 0.0;
223
224   set_elt_property ("note-columns", SCM_EOL);
225   set_elt_property ("control-points", SCM_EOL);
226 }
227
228 void
229 Slur::add_column (Note_column*n)
230 {
231   if (!gh_pair_p (n->get_elt_property ("note-heads")))
232     warning (_ ("Putting slur over rest.  Ignoring."));
233   else
234     {
235       Group_interface (this, "note-columns").add_element (n);
236       add_dependency (n);
237     }
238 }
239
240 void
241 Slur::de_uglyfy (Slur_bezier_bow* bb, Real default_height)
242 {
243   Real length = bb->curve_.control_[3][X_AXIS] ; 
244   Real ff = bb->fit_factor ();
245   for (int i = 1; i < 3; i++)
246     {
247       Real ind = abs (bb->curve_.control_[(i-1)*3][X_AXIS]
248                       - bb->curve_.control_[i][X_AXIS]) / length;
249       Real h = bb->curve_.control_[i][Y_AXIS] * ff / length;
250
251       Real f = default_height / length;
252       Real c1 = paper_l ()->get_var ("bezier_control1");
253       Real c2 = paper_l ()->get_var ("bezier_control2");
254       Real c3 = paper_l ()->get_var ("bezier_control3");
255       if (h > c1 * f)
256         {
257           h = c1 * f; 
258         }
259       else if (h > c2 + c3 * ind)
260         {
261           h = c2 + c3 * ind; 
262         }
263       
264       bb->curve_.control_[i][Y_AXIS] = h * length;
265     } 
266
267   bb->curve_.assert_sanity ();
268 }
269
270 Direction
271 Slur::get_default_dir () const
272 {
273   Link_array<Note_column> encompass_arr =
274     Group_interface__extract_elements (this, (Note_column*)0, "note-columns");
275   
276   Direction d = DOWN;
277   for (int i=0; i < encompass_arr.size (); i ++) 
278     {
279       if (encompass_arr[i]->dir () < 0) 
280         {
281           d = UP;
282           break;
283         }
284     }
285   return d;
286 }
287
288 void
289 Slur::do_add_processing ()
290 {
291   Link_array<Note_column> encompass_arr =
292     Group_interface__extract_elements (this, (Note_column*)0, "note-columns");
293
294   if (encompass_arr.size ())
295     {
296       set_bound (LEFT, encompass_arr[0]);    
297       if (encompass_arr.size () > 1)
298         set_bound (RIGHT, encompass_arr.top ());
299     }
300 }
301
302
303
304 Offset
305 Slur::encompass_offset (Note_column const* col) const
306 {
307   Offset o;
308   Stem* stem_l = col->stem_l ();
309   Direction dir = directional_element (this).get ();
310   
311   if (!stem_l)
312     {
313       warning (_ ("Slur over rest?"));
314      o[X_AXIS] = col->relative_coordinate (0, X_AXIS);
315       o[Y_AXIS] = col->extent (Y_AXIS)[dir];
316       return o;  
317     }
318   Direction stem_dir = directional_element (stem_l).get ();
319   o[X_AXIS] = stem_l->relative_coordinate (0, X_AXIS);
320
321   /*
322     Simply set x to middle of notehead
323    */
324
325   o[X_AXIS] -= 0.5 * stem_dir * col->extent (X_AXIS).length ();
326
327   if ((stem_dir == dir)
328       && !stem_l->extent (Y_AXIS).empty_b ())
329     {
330       o[Y_AXIS] = stem_l->extent (Y_AXIS)[dir];
331     }
332   else
333     {
334       o[Y_AXIS] = col->extent (Y_AXIS)[dir];
335     }
336
337   /*
338    leave a gap: slur mustn't touch head/stem
339    */
340   o[Y_AXIS] += dir * paper_l ()->get_var ("slur_y_free");
341   o[Y_AXIS] -= calc_interstaff_dist (stem_l, this);
342   return o;
343 }
344
345 void
346 Slur::after_line_breaking ()
347 {
348   set_extremities ();
349   set_control_points ();
350
351
352 /*
353   urg
354   FIXME
355  */
356 void
357 Slur::set_extremities ()
358 {
359   Link_array<Note_column> encompass_arr =
360     Group_interface__extract_elements (this, (Note_column*)0, "note-columns");
361
362   if (!encompass_arr.size ())
363     {
364       set_elt_property ("transparent", SCM_BOOL_T);
365       set_extent_callback (0, X_AXIS);
366       set_extent_callback (0, Y_AXIS);
367       return;
368     }
369
370   if (!directional_element (this).get ())
371     directional_element (this).set (get_default_dir ());
372
373
374   /* 
375    Slur and tie placement [OSU]
376
377    Slurs:
378    * x = centre of head - d * x_gap_f
379
380    TODO:
381    * y = length < 5ss : horizontal tangent + d * 0.25 ss
382      y = length >= 5ss : y next interline - d * 0.25 ss
383    */
384
385   Real staff_space = paper_l ()->get_var ("interline");
386   Real half_staff_space = staff_space / 2;
387
388   Real x_gap_f = paper_l ()->get_var ("slur_x_gap");
389   Real y_gap_f = paper_l ()->get_var ("slur_y_gap");
390
391   Drul_array<Note_column*> note_column_drul;
392   note_column_drul[LEFT] = encompass_arr[0];
393   note_column_drul[RIGHT] = encompass_arr.top ();
394
395   bool fix_broken_b = false;
396
397   Direction my_dir = directional_element (this).get ();
398   
399   Direction d = LEFT;
400   do 
401     {
402       dx_f_drul_[d] = 0;
403       dy_f_drul_[d] = 0;
404       
405       if ((note_column_drul[d] == get_bound (d))
406           && note_column_drul[d]->first_head ()
407           && (note_column_drul[d]->stem_l ()))
408         {
409           Stem* stem_l = note_column_drul[d]->stem_l ();
410           /*
411             side directly attached to note head;
412             no beam getting in the way
413           */
414           if ((stem_l->extent (Y_AXIS).empty_b ()
415                || !((stem_l->get_direction () == my_dir) && (my_dir != d)))
416               && !((my_dir == stem_l->get_direction ())
417                    && stem_l->beam_l () && (stem_l->beam_count (-d) >= 1)))
418             {
419               dx_f_drul_[d] = get_bound (d)->extent (X_AXIS).length () / 2;
420               dx_f_drul_[d] -= d * x_gap_f;
421
422               if (stem_l->get_direction () != my_dir)
423                 {
424                   dy_f_drul_[d] = note_column_drul[d]->extent (Y_AXIS)[my_dir];
425                 }
426               else
427                 {
428                   dy_f_drul_[d] = stem_l->chord_start_f ()
429                     + my_dir * half_staff_space;
430                 }
431               dy_f_drul_[d] += my_dir * y_gap_f;
432             }
433           /*
434             side attached to (visible) stem
435           */
436           else
437             {
438               dx_f_drul_[d] = stem_l->relative_coordinate (0, X_AXIS)
439                 - get_bound (d)->relative_coordinate (0, X_AXIS);
440               /*
441                 side attached to beamed stem
442                */
443               if (stem_l->beam_l () && (stem_l->beam_count (-d) >= 1))
444                 {
445                   dy_f_drul_[d] = stem_l->extent (Y_AXIS)[my_dir];
446                   dy_f_drul_[d] += my_dir * 2 * y_gap_f;
447                 }
448               /*
449                 side attached to notehead, with stem getting in the way
450                */
451               else
452                 {
453                   dx_f_drul_[d] -= d * x_gap_f;
454                   
455                   dy_f_drul_[d] = stem_l->chord_start_f ()
456                     + my_dir * half_staff_space;
457                   dy_f_drul_[d] += my_dir * y_gap_f;
458                 }
459             }
460         }
461       /*
462         loose end
463       */
464       else
465         {
466           dx_f_drul_[d] = get_broken_left_end_align ();
467                 
468           /*
469             broken: should get y from other piece, so that slur
470             continues up/down trend
471
472             for now: be horizontal..
473           */
474           fix_broken_b = true;
475         }
476     }
477   while (flip (&d) != LEFT);
478
479   int cross_count =  cross_staff_count ();
480   bool interstaff_b = (0 < cross_count) && (cross_count < encompass_arr.size ());
481
482   Drul_array<Offset> info_drul;
483   Drul_array<Real> interstaff_interval;
484
485   do
486     {
487       info_drul[d] = encompass_offset (encompass_arr.boundary (d, 0));
488       interstaff_interval[d] = - calc_interstaff_dist (encompass_arr.boundary (d,0),
489                                                      this);
490     }
491   while (flip (&d) != LEFT);
492   
493   Real interstaff_f = interstaff_interval[RIGHT] - interstaff_interval[LEFT];
494
495   if (fix_broken_b)
496     {
497       Direction d = (encompass_arr.top () != get_bound (RIGHT)) ?
498         RIGHT : LEFT;
499       dy_f_drul_[d] = info_drul[d][Y_AXIS];
500       if (!interstaff_b)
501         {
502           dy_f_drul_[d] -= interstaff_interval[d];
503           if (cross_count)      // interstaff_i  ? 
504             {
505               dy_f_drul_[LEFT] += interstaff_interval[d];
506               dy_f_drul_[RIGHT] += interstaff_interval[d];
507             }
508         }
509     }
510         
511   if (!fix_broken_b)
512     dy_f_drul_[RIGHT] += interstaff_f;
513 }
514
515
516 int
517 Slur::cross_staff_count ()const
518 {
519   Link_array<Note_column> encompass_arr =
520     Group_interface__extract_elements (this, (Note_column*)0, "note-columns");
521
522   int k=0;
523
524   for (int i = 0; i < encompass_arr.size (); i++)
525     {
526       if (calc_interstaff_dist (encompass_arr[i], this))
527         k++;
528     }
529   return k;
530 }
531
532
533 Array<Offset>
534 Slur::get_encompass_offset_arr () const
535 {
536   Link_array<Note_column> encompass_arr =
537     Group_interface__extract_elements (this, (Note_column*)0, "note-columns");
538   
539   Array<Offset> offset_arr;
540
541 #if 0
542   /*
543     check non-disturbed slur
544     FIXME: x of ends off by a tiny bit!!
545   */
546   offset_arr.push (Offset (0, dy_f_drul_[LEFT]));
547   offset_arr.push (Offset (0, dy_f_drul_[RIGHT]));
548   return offset_arr;
549 #endif
550   
551   Offset origin (relative_coordinate (0, X_AXIS), 0);
552
553   int first = 1;
554   int last = encompass_arr.size () - 2;
555
556   offset_arr.push (Offset (dx_f_drul_[LEFT], dy_f_drul_[LEFT]));
557
558   /*
559     left is broken edge
560   */
561
562   int cross_count  = cross_staff_count ();
563   bool cross_b = cross_count && cross_count < encompass_arr.size ();
564   if (encompass_arr[0] != get_bound (LEFT))
565     {
566       first--;
567       Real is   = calc_interstaff_dist (encompass_arr[0], this);
568       if (cross_b)
569         offset_arr[0][Y_AXIS] += is;
570     }
571
572   /*
573     right is broken edge
574   */
575   if (encompass_arr.top () != get_bound (RIGHT))
576     {
577       last++;
578     }
579
580   for (int i = first; i <= last; i++)
581     {
582       Offset o (encompass_offset (encompass_arr[i]));
583       offset_arr.push (o - origin);
584     }
585
586   offset_arr.push (Offset (spanner_length ()+  dx_f_drul_[RIGHT],
587                            dy_f_drul_[RIGHT]));
588
589   return offset_arr;
590 }
591
592
593 Array<Rod>
594 Slur::get_rods () const
595 {
596   Array<Rod> a;
597   Rod r;
598   
599   r.item_l_drul_[LEFT] = get_bound (LEFT);
600   r.item_l_drul_[RIGHT] = get_bound (RIGHT);
601   r.distance_f_ = paper_l ()->get_var ("slur_x_minimum");
602
603   a.push (r);
604   return a;
605 }
606
607
608
609 /*
610   Ugh should have dash-length + dash-period
611  */
612 Molecule
613 Slur::do_brew_molecule () const
614 {
615   Real thick = paper_l ()->get_var ("slur_thickness");
616   Bezier one = get_curve ();
617
618   Molecule a;
619   SCM d =  get_elt_property ("dashed");
620   if (gh_number_p (d))
621     a = lookup_l ()->dashed_slur (one, thick, thick * gh_scm2double (d));
622   else
623     a = lookup_l ()->slur (one, directional_element (this).get () * thick, thick);
624
625   return a;
626 }
627
628 void
629 Slur::set_control_points ()
630 {
631   Slur_bezier_bow bb (get_encompass_offset_arr (),
632                       directional_element (this).get ());
633
634   Real staff_space = Staff_symbol_referencer_interface (this).staff_space ();
635   Real h_inf = paper_l ()->get_var ("slur_height_limit_factor") * staff_space;
636   Real r_0 = paper_l ()->get_var ("slur_ratio");
637
638   bb.set_default_bezier (h_inf, r_0);
639
640   if (bb.fit_factor () > 1.0)
641     {
642       Real length = bb.curve_.control_[3][X_AXIS]; 
643       Real default_height = bb.get_default_height (h_inf, r_0, length);
644       bb.minimise_enclosed_area (paper_l(), default_height);
645       
646       Real bff = paper_l ()->get_var ("slur_force_blowfit");
647       bb.curve_.control_[1][Y_AXIS] *= bff;
648       bb.curve_.control_[2][Y_AXIS] *= bff;
649       bb.blow_fit ();
650
651       Real sb = paper_l ()->get_var ("slur_beautiful");
652       Real beautiful = length * default_height * sb;
653       Real area = bb.enclosed_area_f ();
654       
655       /*
656         Slurs that fit beautifully are not ugly
657       */
658       if (area > beautiful)
659         de_uglyfy (&bb, default_height);
660     }
661
662   Bezier b = bb.get_bezier ();
663
664
665   SCM controls = SCM_EOL;
666   for (int i= 4; i--;)
667     controls = gh_cons ( ly_offset2scm (b.control_[i]), controls);
668
669   set_elt_property ("control-points", controls);
670 }
671   
672   
673 Bezier
674 Slur::get_curve () const
675 {
676   Bezier b;
677   int i = 0;
678
679   if (!directional_element (this).get ())
680     ((Slur*)this)->set_extremities ();
681   
682   if (!gh_pair_p (get_elt_property ("control-points")))
683     ((Slur*)this)->set_control_points ();
684   
685   
686   for (SCM s= get_elt_property ("control-points"); s != SCM_EOL; s = gh_cdr (s))
687     {
688       b.control_[i] = ly_scm2offset (gh_car (s));
689       i++;
690     }
691   
692   Array<Offset> enc (get_encompass_offset_arr ());
693   Direction dir = directional_element (this).get ();
694   
695   Real x1 = enc[0][X_AXIS];
696   Real x2 = enc.top ()[X_AXIS];
697   
698   Real off = 0.0;
699   for (int i=1; i < enc.size ()-1; i++)
700     {
701       Real x = enc[i][X_AXIS];
702       if (x > x1 && x <x2)
703         {
704           Real y = b.get_other_coordinate (X_AXIS, x);
705           off = off >? dir *  (enc[i][Y_AXIS] - y);
706         }
707     }
708   b.translate (Offset (0, dir * off));
709   return b;
710 }
711