]> git.donarmstrong.com Git - lilypond.git/blob - lily/tie.cc
release: 1.3.145
[lilypond.git] / lily / tie.cc
1 /*
2   tie.cc -- implement Tie
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8 #include <math.h>
9
10
11 #include "spanner.hh"
12 #include "lookup.hh"
13 #include "paper-def.hh"
14 #include "tie.hh"
15 #include "rhythmic-head.hh"
16 #include "bezier.hh"
17 #include "paper-column.hh"
18 #include "debug.hh"
19 #include "staff-symbol-referencer.hh"
20 #include "directional-element-interface.hh"
21 #include "molecule.hh"
22 #include "bezier-bow.hh"
23 #include "stem.hh"
24 #include "note-head.hh"
25
26 /*
27   tie: Connect two noteheads.
28
29   What if we have
30
31   c4 ~ \clef bass ; c4 or
32
33   c4 \staffchange c4
34
35   do we have non-horizontal ties then?
36   */
37
38
39 void
40 Tie::set_head (Grob*me,Direction d, Item * head_l)
41 {
42   assert (!head (me,d));
43   index_set_cell (me->get_grob_property ("heads"), d, head_l->self_scm ());
44   
45   dynamic_cast<Spanner*> (me)->set_bound (d, head_l);
46   me->add_dependency (head_l);
47 }
48
49 void
50 Tie::set_interface (Grob*me)
51 {
52   me->set_grob_property ("heads", gh_cons (SCM_EOL, SCM_EOL));
53   me->set_interface (ly_symbol2scm ("tie-interface"));
54 }
55
56 bool
57 Tie::has_interface (Grob*me)
58 {
59   return me->has_interface (ly_symbol2scm ("tie-interface"));
60 }
61
62 Grob*
63 Tie::head (Grob*me, Direction d) 
64 {
65   SCM c = me->get_grob_property ("heads");
66   c = index_cell (c, d);
67
68   return unsmob_grob (c);
69 }
70
71 Real
72 Tie::position_f (Grob*me) 
73 {
74   Direction d = head (me,LEFT) ? LEFT:RIGHT;
75   return Staff_symbol_referencer::position_f (head (me,d));
76 }
77
78
79 /*
80   Default:  Put the tie oppositie of the stem [Wanske p231]
81
82   In case of chords: Tie_column takes over
83   
84   The direction of the Tie is more complicated (See [Ross] p136 and
85   further).
86 */
87 Direction
88 Tie::get_default_dir (Grob*me) 
89 {
90   Item * sl =  head (me,LEFT) ? Rhythmic_head::stem_l (head (me,LEFT)) :0;
91   Item * sr =  head (me,RIGHT) ? Rhythmic_head::stem_l (head (me,RIGHT)) :0;  
92
93   if (sl && sr)
94     {
95       if (Directional_element_interface::get (sl) == UP
96           && Directional_element_interface::get (sr) == UP)
97         return DOWN;
98     }
99   else if (sl || sr)
100     {
101       Item *s = sl ? sl : sr;
102       return - Directional_element_interface::get (s);
103     }
104
105   
106   return UP;
107 }
108
109
110 SCM
111 Tie::get_control_points (SCM smob)
112 {  
113   Spanner*me = dynamic_cast<Spanner*> (unsmob_grob (smob));
114   Direction headdir = CENTER; 
115   if (head (me,LEFT))
116     headdir = LEFT;
117   else if (head (me,RIGHT))
118     headdir = RIGHT;
119   else
120     {
121       programming_error ("Tie without heads.");
122       me->suicide ();
123       return SCM_UNSPECIFIED;
124     }
125   
126   if (!Directional_element_interface::get (me))
127     Directional_element_interface::set (me, Tie::get_default_dir (me));
128   
129   Real staff_space = Staff_symbol_referencer::staff_space (me);
130
131   Real x_gap_f = gh_scm2double (me->get_grob_property ("x-gap"));
132
133   Grob* l = me->get_bound (LEFT);
134   Grob* r = me->get_bound (RIGHT);  
135
136   Grob* commonx = me->common_refpoint (l, X_AXIS);
137   commonx = me->common_refpoint (r, X_AXIS);
138   
139   Real left_x;
140
141   /*
142     this is a kludge: the tie has to be long enough to be
143     visible, but should not go through key sigs.
144
145  (please fixme)
146    */
147   Real lambda = 0.5;            
148   
149   if (Note_head::has_interface (l))
150     left_x = l->extent (l, X_AXIS)[RIGHT] + x_gap_f;
151   else
152     left_x = l->extent (l, X_AXIS).linear_combination (lambda);
153   
154
155   Real width;
156   if (Note_head::has_interface (l) && Note_head::has_interface (r))
157     {
158       width = 
159         + r->extent (commonx,X_AXIS)[LEFT]
160         - l->extent (commonx, X_AXIS)[RIGHT]
161         -2 * x_gap_f;
162     }
163   else
164     {
165       if (Note_head::has_interface (l))
166         width = r->relative_coordinate (commonx, X_AXIS)
167           - l->extent (commonx, X_AXIS)[RIGHT]
168           - 2 * x_gap_f;
169       else
170         width =
171           - l->extent (commonx, X_AXIS).linear_combination (lambda)  
172           + r->extent (commonx, X_AXIS)[LEFT]
173           - 2 * x_gap_f;
174     }
175   
176   Direction dir = Directional_element_interface::get (me);
177
178   SCM details = me->get_grob_property ("details");
179
180   SCM lim // groetjes aan de chirurgendochter.
181     = scm_assq (ly_symbol2scm ("height-limit"),details);
182   
183   Real h_inf = gh_scm2double (gh_cdr (lim)) *  staff_space;
184   Real r_0 = gh_scm2double (gh_cdr (scm_assq (ly_symbol2scm ("ratio"),details)));
185
186   Bezier b  = slur_shape (width, h_inf, r_0);
187   
188   Offset leave_dir = b.control_[1] - b.control_[0];
189
190   Grob *hed =head (me, headdir);
191   Real dx = (hed->extent (hed, X_AXIS).length () + x_gap_f)/2.0;
192   Real max_gap = leave_dir[Y_AXIS] * dx / leave_dir[X_AXIS];
193
194   /*
195     for small ties (t small) we want to start in the Y-center (so dy = 0), for
196     large ties, the tie should appear to come from the center of the
197     head, so dy = max_gap
198
199     maybe use a different formula?
200
201     TODO: what if 2 heads have different size.
202
203     TODO: for small ties, it is better to start over the heads
204     iso. next to the heads. 
205   */
206   Real t = (width / staff_space - 5.0); // ugh.
207   Real dy = t > 0 ? max_gap * sqr (t / (1 + t)) : 0.0;
208
209   Real ypos = Tie::position_f (me) * staff_space/2 + dir * dy;
210
211   /*
212     Make sure we don't start on a dots
213    */
214   if (Note_head::has_interface (l) && Rhythmic_head::dots_l (l))
215     {
216       Grob* dots = Rhythmic_head::dots_l(l);
217       if(fabs (staff_space * Staff_symbol_referencer::position_f (dots) /2
218                - ypos) < 0.5)
219         {
220           ypos += 0.5 * dir ;
221         }
222     }
223
224   
225   /*
226     todo: prevent ending / staffline collision.
227
228     todo: tie / stem collision
229    */
230
231   b = slur_shape (width,h_inf, r_0);
232   b.scale (1, dir);
233   b.translate (Offset (left_x, ypos));
234   
235
236   /*
237     Avoid colliding of the horizontal part with stafflines.
238
239     
240     TODO: redo this, heuristic is half-baken, and ties often look ugly
241     as a result.
242
243     TODO: doesn't work when on staff with even number of lines.
244    */
245   Array<Real> horizontal (b.solve_derivative (Offset (1,0)));
246   if (horizontal.size ())
247     {
248       /*
249         ugh. Doesnt work for non-horizontal curves.
250        */
251       Real y = b.curve_point (horizontal[0])[Y_AXIS];
252
253       Real ry = rint (y/staff_space) * staff_space;
254       Real diff = ry - y;
255       Real newy = y;
256
257       Real clear = staff_space * gh_scm2double (me->get_grob_property ("staffline-clearance"));
258
259       if (fabs (y) <= Staff_symbol_referencer::staff_radius (me)
260           && fabs (diff) < clear)
261         {
262           Real y1 = ry + clear;
263           Real y2 = ry - clear;
264           
265           newy = (fabs (y1 - y) < fabs (y2 - y)) ? y1 : y2;
266           
267           // newy = ry - 0.5 * staff_space * sign (diff) ;
268
269           /*
270             we don't want horizontal ties
271            */
272           if (fabs (newy - b.control_[0][Y_AXIS]) < 1e-2)
273             {
274               newy = newy + dir * staff_space; 
275             }
276         }
277
278       Real y0 = b.control_ [0][Y_AXIS];
279       b.control_[2][Y_AXIS] = 
280       b.control_[1][Y_AXIS] =
281  (b.control_[1][Y_AXIS] - y0)  * ((newy - y0) / (y - y0)) + y0; 
282     }
283   else
284     programming_error ("Tie is nowhere horizontal");
285
286
287
288   SCM controls = SCM_EOL;
289   for (int i= 4; i--;)
290     controls = gh_cons (ly_offset2scm (b.control_[i]), controls);
291   return controls;
292 }
293
294
295 MAKE_SCHEME_CALLBACK (Tie,brew_molecule,1);
296 SCM
297 Tie::brew_molecule (SCM smob) 
298 {
299   Grob*me = unsmob_grob (smob);
300
301   SCM cp = me->get_grob_property ("control-points");
302   if (cp == SCM_EOL)
303     {
304       cp = get_control_points (smob);
305       me->set_grob_property ("control-points", cp);
306     }
307   
308   Real thick =
309     gh_scm2double (me->get_grob_property ("thickness"))
310     * me->paper_l ()->get_var ("stafflinethickness");
311
312   Bezier b;
313   int i = 0;
314   for (SCM s= cp; s != SCM_EOL; s = gh_cdr (s))
315     {
316       b.control_[i] = ly_scm2offset (gh_car (s));
317       i++;
318     }
319   
320    Molecule a = Lookup::slur (b, Directional_element_interface::get (me) * thick, thick);
321    
322    return a.smobbed_copy ();
323 }
324
325