summaryrefslogtreecommitdiff
path: root/lily/slur.cc
blob: a55a77812fe7869426af5efbfb09cb0d22d6adfa (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
/*
  slur.cc -- implement  Slur

  source file of the GNU LilyPond music typesetter

  (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
    Jan Nieuwenhuizen <janneke@gnu.org>
*/

/*
  [TODO]
    * fix broken interstaff slurs
    * begin and end should be treated as a/acknowledge Scripts.
    * broken slur should have uniform trend
    * smart changing of endings
    * smart changing of (Y-?)offsets to avoid ugly beziers
       (along-side-stem)
 */

#include "directional-element-interface.hh"
#include "group-interface.hh"
#include "slur.hh"
#include "lookup.hh"
#include "paper-def.hh"
#include "note-column.hh"
#include "stem.hh"
#include "paper-column.hh"
#include "molecule.hh"
#include "debug.hh"
#include "slur-bezier-bow.hh"
#include "main.hh"
#include "group-interface.hh"
#include "staff-symbol-referencer.hh"
#include "spanner.hh"


void
Slur::set_interface (Score_element*me)
{
  me->set_elt_property ("attachment", gh_cons (SCM_BOOL_F, SCM_BOOL_F));
  me->set_interface (ly_symbol2scm ("slur-interface"));
}

void
Slur::add_column (Score_element*me, Score_element*n)
{
  if (!gh_pair_p (n->get_elt_property ("note-heads")))
    warning (_ ("Putting slur over rest.  Ignoring."));
  else
    {
      Pointer_group_interface (me, "note-columns").add_element (n);
      me->add_dependency (n);
    }

  add_bound_item (dynamic_cast<Spanner*> (me), dynamic_cast<Item*>(n));
}

void
Slur::de_uglyfy (Score_element*me, Slur_bezier_bow* bb, Real default_height)
{
  Real length = bb->curve_.control_[3][X_AXIS] ; 
  Real ff = bb->fit_factor ();
  for (int i = 1; i < 3; i++)
    {
      Real ind = abs (bb->curve_.control_[(i-1)*3][X_AXIS]
		      - bb->curve_.control_[i][X_AXIS]) / length;
      Real h = bb->curve_.control_[i][Y_AXIS] * ff / length;

      Real f = default_height / length;
      SCM up = me->get_elt_property ("de-uglify-parameters");
      
      Real c1 = gh_scm2double (gh_car (up));
      Real c2 = gh_scm2double (gh_cadr (up));
      Real c3 = gh_scm2double (gh_caddr (up)); 
      
      if (h > c1 * f)
	{
	  h = c1 * f; 
	}
      else if (h > c2 + c3 * ind)
	{
	  h = c2 + c3 * ind; 
	}
      
      bb->curve_.control_[i][Y_AXIS] = h * length;
    } 

  bb->curve_.assert_sanity ();
}

Direction
Slur::get_default_dir (Score_element*me) 
{
  Link_array<Score_element> encompass_arr =
    Pointer_group_interface__extract_elements (me, (Score_element*)0, "note-columns");
  
  Direction d = DOWN;
  for (int i=0; i < encompass_arr.size (); i ++) 
    {
      if (Note_column::dir (encompass_arr[i]) < 0) 
	{
	  d = UP;
	  break;
	}
    }
  return d;
}


MAKE_SCHEME_CALLBACK (Slur, after_line_breaking);
SCM
Slur::after_line_breaking (SCM smob)
{
  Score_element *me = unsmob_element (smob);
  if (!scm_ilength (me->get_elt_property ("note-columns")))
    {
      me->suicide ();
      return SCM_UNSPECIFIED;
    }
  set_extremities (me);
  set_control_points (me);
  return SCM_UNSPECIFIED;
} 

void
Slur::set_extremities (Score_element*me)
{
  if (!Directional_element_interface::get (me))
    Directional_element_interface ::set (me,get_default_dir (me));

  Direction dir = LEFT;
  do 
    {
      if (!gh_symbol_p (index_cell (me->get_elt_property ("attachment"), dir)))
	{
	  for (SCM s = me->get_elt_property ("extremity-rules");
	       s != SCM_EOL; s = gh_cdr (s))
	    {
	      SCM r = gh_call2 (gh_caar (s), me->self_scm (),
				 gh_int2scm ((int)dir));
	      if (r != SCM_BOOL_F)
		{
		  index_set_cell (me->get_elt_property ("attachment"), dir,
				  gh_cdar (s));
		  break;
		}
	    }
	}
    }
  while (flip (&dir) != LEFT);
}

Real
Slur::get_first_notecolumn_y (Score_element *me, Direction dir)
{
  Score_element *col = dir == LEFT
    ? unsmob_element (gh_car (scm_reverse (me->get_elt_property
					   ("note-columns"))))
    : unsmob_element
    (gh_car (me->get_elt_property ("note-columns")));
  
  Score_element *common[] =
  {
    0,
    me->common_refpoint (col, Y_AXIS)
  };
  Real y;
  if (col == ((Spanner*)me)->get_bound (dir))
    {
      y = get_attachment (me, dir, common)[Y_AXIS];
    }
  else
    {
      y = encompass_offset (me, col, common)[Y_AXIS]
	- me->relative_coordinate (common[Y_AXIS], Y_AXIS); 
    }
  return y;
}

Offset
Slur::broken_trend_offset (Score_element *me, Direction dir)
{
  /*
    A broken slur should maintain the same vertical trend
    the unbroken slur would have had.
  */
  Offset o;
  if (Spanner *mother =  dynamic_cast<Spanner*> (me->original_l_))
    {
      for (int i = dir == LEFT ? 0 : mother->broken_into_l_arr_.size () - 1;
	   dir == LEFT ? i < mother->broken_into_l_arr_.size () : i > 0;
	   dir == LEFT ? i++ : i--)
	{
	  if (mother->broken_into_l_arr_[i - dir] == me)
	    {
	      Score_element *neighbour = mother->broken_into_l_arr_[i];
	      if (dir == RIGHT)
		neighbour->set_elt_property ("direction",
					     me->get_elt_property ("direction"));
	      Real neighbour_y = get_first_notecolumn_y (neighbour, dir);
	      Real y = get_first_notecolumn_y (me, -dir);
	      o = Offset (0, (y + neighbour_y) / 2);
	      break;
	    }
	}
    }
  return o;
}

Offset
Slur::get_attachment (Score_element*me,Direction dir,
		      Score_element **common) 
{
  SCM s = me->get_elt_property ("attachment");
  if (!gh_symbol_p (index_cell (s, dir)))
    {
      set_extremities (me);
      s = me->get_elt_property ("attachment");
    }
  SCM a = dir == LEFT ? gh_car (s) : gh_cdr (s);
  Spanner*sp = dynamic_cast<Spanner*>(me);
  String str = ly_symbol2string (a);
  Real ss = Staff_symbol_referencer::staff_space ((Score_element*)me);
  Real hs = ss / 2.0;
  Offset o;
  
  Score_element *stem = 0;
  if (Note_column::has_interface (sp->get_bound (dir)))
    {
      Score_element * n =sp->get_bound (dir);
      if ((stem = Note_column::stem_l (n)))
	{

	  if (str == "head")
	    {
	      o = Offset (0, Stem::head_positions (stem)
			  [Directional_element_interface::get (me)] * hs);
	      /*
		Default position is centered in X, on outer side of head Y
	       */
	      o += Offset (0.5 * n->extent (X_AXIS).length (),
			   0.5 * ss * Directional_element_interface::get (me));
	    }
	  else if (str == "alongside-stem")
	    {
	      o = Offset (0, Stem::chord_start_f (stem));
	      /*
		Default position is on stem X, on outer side of head Y
	       */
	      o += Offset (n->extent (X_AXIS).length ()
			   * (1 + Stem::get_direction (stem)),
			   0.5 * ss * Directional_element_interface::get (me));
	    }
	  else if (str == "stem")
	    {
	      o = Offset (0, Stem::stem_end_position (stem) * hs);
	      /*
		Default position is on stem X, at stem end Y
	       */
	      o += Offset (0.5 *
			   (n->extent (X_AXIS).length ()
			    - stem->extent (X_AXIS).length ())
			    * (1 + Stem::get_direction (stem)),
			    0);
	    }
	}
    }
  else if (str == "loose-end")
    {
      SCM other_a = dir == LEFT ? gh_cdr (s) : gh_car (s);
      if (ly_symbol2string (other_a) != "loose-end")
	{
#if 0
	  /*
	    The braindead way: horizontal
	  */
	  o = Offset (0, get_attachment (me, -dir, common)[Y_AXIS]);
#else
	  o = broken_trend_offset (me, dir);
#endif

	  
	}
	
    }

  SCM alist = me->get_elt_property ("extremity-offset-alist");
int stemdir = stem ? Stem::get_direction (stem) : 1;
  int slurdir = gh_scm2int (me->get_elt_property ("direction"));
  SCM l = scm_assoc
      (scm_listify (a,
                gh_int2scm (stemdir * dir),
                gh_int2scm (slurdir * dir),
                  SCM_UNDEFINED), alist);

  if (l != SCM_BOOL_F)
    {
      o += ly_scm2offset (gh_cdr (l)) * ss * dir;
    }

  /*
    What if get_bound () is not a note-column?
   */
  if (str != "loose-end"
      && sp->get_bound (dir)->common_refpoint (common[Y_AXIS], Y_AXIS) == common[Y_AXIS])
    {      
      o[Y_AXIS] += sp->get_bound (dir)->relative_coordinate (common[Y_AXIS], Y_AXIS) 
	- me->relative_coordinate (common[Y_AXIS], Y_AXIS);
    }

  return o;
}

Offset
Slur::encompass_offset (Score_element*me,
			Score_element* col,
			Score_element **common) 
{
  Offset o;
  Score_element* stem_l = unsmob_element (col->get_elt_property ("stem"));
  
  Direction dir = Directional_element_interface::get (me);
  
  if (!stem_l)
    {
      warning (_ ("Slur over rest?"));
      o[X_AXIS] = col->relative_coordinate (common[X_AXIS], X_AXIS);
      o[Y_AXIS] = col->relative_coordinate (common[Y_AXIS], Y_AXIS);
      return o;  
    }
  Direction stem_dir = Directional_element_interface::get (stem_l);
  o[X_AXIS] = stem_l->relative_coordinate (0, X_AXIS);

  /*
    Simply set x to middle of notehead
   */

  o[X_AXIS] -= 0.5 * stem_dir * col->extent (X_AXIS).length ();

  if ((stem_dir == dir)
      && !stem_l->extent (Y_AXIS).empty_b ())
    {
      o[Y_AXIS] = stem_l->relative_coordinate (common[Y_AXIS], Y_AXIS); // iuhg
      o[Y_AXIS] += stem_l->extent (Y_AXIS)[dir];
    }
  else
    {
      o[Y_AXIS] = col->relative_coordinate (common[Y_AXIS], Y_AXIS);	// ugh
      o[Y_AXIS] += col->extent (Y_AXIS)[dir];
    }

  /*
   leave a gap: slur mustn't touch head/stem
   */
  o[Y_AXIS] += dir * gh_scm2double (me->get_elt_property ("y-free")) *
    me->paper_l ()->get_var ("staffspace");
  return o;
}

Array<Offset>
Slur::get_encompass_offset_arr (Score_element*me) 
{
  Spanner*sp = dynamic_cast<Spanner*>(me);
  SCM eltlist = me->get_elt_property ("note-columns");
  Score_element *common[] = {me->common_refpoint (eltlist,X_AXIS),
			     me->common_refpoint (eltlist,Y_AXIS)};


  common[X_AXIS] = common[X_AXIS]->common_refpoint (sp->get_bound (RIGHT), X_AXIS);
  common[X_AXIS] = common[X_AXIS]->common_refpoint (sp->get_bound (LEFT), X_AXIS);
  
  Link_array<Score_element>  encompass_arr;
  while (gh_pair_p (eltlist))
    {
      encompass_arr.push (unsmob_element (gh_car (eltlist)));      
      eltlist =gh_cdr (eltlist);
    }
  encompass_arr.reverse ();

  
  Array<Offset> offset_arr;

  Offset origin (me->relative_coordinate (common[X_AXIS], X_AXIS),
		 me->relative_coordinate (common[Y_AXIS], Y_AXIS)); 

  int first = 1;
  int last = encompass_arr.size () - 2;

  offset_arr.push (get_attachment (me, LEFT, common));

  /*
    left is broken edge
  */

  if (encompass_arr[0] != sp->get_bound (LEFT))
    {
      first--;

      // ?
      offset_arr[0][Y_AXIS] -=
	encompass_arr[0]->relative_coordinate (common[Y_AXIS], Y_AXIS) 
	- me->relative_coordinate (common[Y_AXIS], Y_AXIS); 
    }

  /*
    right is broken edge
  */
  if (encompass_arr.top () != sp->get_bound (RIGHT))
    {
      last++;
    }

  for (int i = first; i <= last; i++)
    {
      Offset o (encompass_offset (me, encompass_arr[i], common));
      offset_arr.push (o - origin);
    }

  offset_arr.push (Offset (sp->spanner_length (), 0) + get_attachment (me, RIGHT,common));

  if (encompass_arr[0] != sp->get_bound (LEFT))
    {
      offset_arr.top ()[Y_AXIS] -= encompass_arr.top ()->relative_coordinate (common[Y_AXIS], Y_AXIS) 
	- me->relative_coordinate (common[Y_AXIS], Y_AXIS);
    }

  return offset_arr;
}


MAKE_SCHEME_CALLBACK(Slur,set_spacing_rods);
SCM
Slur::set_spacing_rods (SCM smob)
{
  Score_element*me = unsmob_element (smob);

  Rod r;
  Spanner*sp = dynamic_cast<Spanner*>(me);
  r.item_l_drul_[LEFT] = sp->get_bound (LEFT);
  r.item_l_drul_[RIGHT] = sp->get_bound (RIGHT);
  r.distance_f_ =
    gh_scm2double (me->get_elt_property ("minimum-length"))
    * me->paper_l ()->get_var ("staffspace");

  r.add_to_cols ();
  return SCM_UNSPECIFIED;
}


/*
  Ugh should have dash-length + dash-period
 */
MAKE_SCHEME_CALLBACK (Slur, brew_molecule);
SCM
Slur::brew_molecule (SCM smob)
{
  Score_element * me = unsmob_element (smob);
  if (!scm_ilength (me->get_elt_property ("note-columns")))
    {
      me->suicide ();
      return SCM_EOL;
    }

  Real thick = me->paper_l ()->get_var ("stafflinethickness") *
    gh_scm2double (me->get_elt_property ("thickness"));
  Bezier one = get_curve (me);

  Molecule a;
  SCM d =  me->get_elt_property ("dashed");
  if (gh_number_p (d))
    a = me->lookup_l ()->dashed_slur (one, thick, thick * gh_scm2double (d));
  else
    a = me->lookup_l ()->slur (one, Directional_element_interface::get (me) * thick, thick);

  return a.create_scheme();
}

void
Slur::set_control_points (Score_element*me)
{
  Real staff_space = Staff_symbol_referencer::staff_space ((Score_element*)me);

  SCM details = me->get_elt_property ("details");
  SCM h_inf_scm = scm_assq (ly_symbol2scm ("height-limit"), details);
  SCM r_0_scm = scm_assq (ly_symbol2scm ("ratio"), details);

  Real r_0 = gh_scm2double (gh_cdr (r_0_scm));
  Real h_inf = staff_space * gh_scm2double (gh_cdr (h_inf_scm));
  
  Slur_bezier_bow bb (get_encompass_offset_arr (me),
		      Directional_element_interface::get (me),
		      h_inf, r_0);

  if (bb.fit_factor () > 1.0)
    {
      Real length = bb.curve_.control_[3][X_AXIS]; 
      Real default_height = slur_height (length, h_inf, r_0);

      SCM ssb = scm_assq (ly_symbol2scm ("beautiful"), details);
      Real sb =gh_scm2double (gh_cdr (ssb));

      bb.minimise_enclosed_area (me->paper_l(), sb);
      SCM sbf = scm_assq (ly_symbol2scm ("force-blowfit"), details);
      Real bff = 1.0;
      if (gh_pair_p (sbf) && gh_number_p (gh_cdr (sbf)))
	  bff = gh_scm2double (gh_cdr (sbf));

      bb.curve_.control_[1][Y_AXIS] *= bff;
      bb.curve_.control_[2][Y_AXIS] *= bff;
      bb.blow_fit ();

      
      Real beautiful = length * default_height * sb;
      Real area = bb.enclosed_area_f ();
      
      /*
	Slurs that fit beautifully are not ugly
      */
      if (area > beautiful)
	de_uglyfy (me, &bb, default_height);
    }

  Bezier b = bb.get_bezier ();


  SCM controls = SCM_EOL;
  for (int i= 4; i--;)
    {
      controls = gh_cons ( ly_offset2scm (b.control_[i]), controls);
      /*
	BRRR WHURG.
	All these null control-points, where do they all come from?
      */
      if (i && b.control_[i][X_AXIS] == 0)
	me->suicide ();
    }

  me->set_elt_property ("control-points", controls);
}
  
Bezier
Slur::get_curve (Score_element*me) 
{
  Bezier b;
  int i = 0;

  if (!Directional_element_interface::get (me)
      || ! gh_symbol_p (index_cell (me->get_elt_property ("attachment"), LEFT)))
    set_extremities (me);
  
  if (!gh_pair_p (me->get_elt_property ("control-points")))
    set_control_points (me);

  for (SCM s= me->get_elt_property ("control-points"); s != SCM_EOL; s = gh_cdr (s))
    {
      b.control_[i] = ly_scm2offset (gh_car (s));
      i++;
    }

  Array<Offset> enc (get_encompass_offset_arr (me));
  Direction dir = Directional_element_interface::get (me);
  
  Real x1 = enc[0][X_AXIS];
  Real x2 = enc.top ()[X_AXIS];

  Real off = 0.0;
  for (int i=1; i < enc.size ()-1; i++)
    {
      Real x = enc[i][X_AXIS];
      if (x > x1 && x <x2)
	{
	  Real y = b.get_other_coordinate (X_AXIS, x);
	  off = off >? dir *  (enc[i][Y_AXIS] - y);
	}
    }
  b.translate (Offset (0, dir * off));
  return b;
}


bool
Slur::has_interface (Score_element*me)
{
  return me->has_interface (ly_symbol2scm ("slur-interface"));
}