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