]> git.donarmstrong.com Git - lilypond.git/blob - lily/tie.cc
* input/regression/tie-dots.ly (Module): remove.
[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--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "tie.hh"
10
11 #include <math.h>
12
13 #include "spanner.hh"
14 #include "lookup.hh"
15 #include "output-def.hh"
16 #include "rhythmic-head.hh"
17 #include "bezier.hh"
18 #include "paper-column.hh"
19 #include "warn.hh"
20 #include "staff-symbol-referencer.hh"
21 #include "directional-element-interface.hh"
22 #include "bezier.hh"
23 #include "stem.hh"
24 #include "note-head.hh"
25 #include "tie-column.hh"
26
27 /*
28   tie: Connect two noteheads.
29
30   What if we have
31
32   c4 ~ \clef bass ; c4 or
33
34   c4 \staffchange c4
35
36   do we have non-horizontal ties then?
37 */
38
39 void
40 Tie::set_head (Grob *me, Direction d, Grob *h)
41 {
42   assert (!head (me, d));
43   index_set_cell (me->get_property ("head-pair"), d, h->self_scm ());
44
45   dynamic_cast<Spanner *> (me)->set_bound (d, h);
46   me->add_dependency (h);
47 }
48
49 void
50 Tie::set_interface (Grob *me)
51 {
52   me->set_property ("head-pair", scm_cons (SCM_EOL, SCM_EOL));
53 }
54
55 Grob *
56 Tie::head (Grob *me, Direction d)
57 {
58   SCM c = me->get_property ("head-pair");
59
60   if (scm_is_pair (c))
61     return unsmob_grob (index_get_cell (c, d));
62   else
63     return 0;
64 }
65
66 int
67 Tie::get_column_rank (Grob *me, Direction d)
68 {
69   Spanner *span = dynamic_cast<Spanner *> (me);
70   Grob *h = head (me, d);
71   if (!h)
72     h = span->get_bound (d);
73
74   Grob *col = dynamic_cast<Item *> (h)->get_column ();
75   return Paper_column::get_rank (col);
76 }
77
78 Real
79 Tie::get_position (Grob *me)
80 {
81   Direction d = head (me, LEFT) ? LEFT : RIGHT;
82   return Staff_symbol_referencer::get_position (head (me, d));
83 }
84
85 /*
86   Default:  Put the tie oppositie of the stem [Wanske p231]
87
88   In case of chords: Tie_column takes over
89
90   The direction of the Tie is more complicated (See [Ross] p136 and
91   further).
92
93   (what about linebreaks? )
94 */
95 Direction
96 Tie::get_default_dir (Grob *me)
97 {
98   Item *sl = head (me, LEFT) ? Rhythmic_head::get_stem (head (me, LEFT)) : 0;
99   Item *sr = head (me, RIGHT) ? Rhythmic_head::get_stem (head (me, RIGHT)) : 0;
100   if (sl && sr)
101     {
102       if (get_grob_direction (sl) == UP
103           && get_grob_direction (sr) == UP)
104         return DOWN;
105     }
106   else if (sl || sr)
107     {
108       Item *s = sl ? sl : sr;
109       return -get_grob_direction (s);
110     }
111
112   return UP;
113 }
114
115 void
116 Tie::set_direction (Grob *me)
117 {
118   if (!get_grob_direction (me))
119     {
120       if (Tie_column::has_interface (me->get_parent (Y_AXIS)))
121         Tie_column::set_directions (me->get_parent (Y_AXIS));
122       else
123         set_grob_direction (me, Tie::get_default_dir (me));
124     }
125 }
126
127
128 SCM
129 Tie::get_control_points (SCM smob)
130 {
131   Spanner *me = unsmob_spanner (smob);
132   if (!head (me, LEFT) && !head (me, RIGHT))
133     {
134       programming_error ("tie without heads");
135       me->suicide ();
136       return SCM_EOL;
137     }
138
139   set_direction (me);
140
141   Direction dir = get_grob_direction (me);
142
143   Real staff_space = Staff_symbol_referencer::staff_space (me);
144   Real staff_position = Tie::get_position (me);
145
146   Grob *common[NO_AXES];
147   for (int a = X_AXIS; a < NO_AXES; a++)
148     {
149       Axis ax ((Axis) a); 
150       common[ax] = me->get_bound (LEFT)->common_refpoint (me, ax); 
151       common[ax] = me->get_bound (RIGHT)->common_refpoint (common[a], ax); 
152     }
153
154   Drul_array<Real> attachments;
155
156   Direction d = LEFT;
157   Real gap = robust_scm2double (me->get_property ("x-gap"), 0.2);
158   do
159     {
160       attachments[d]
161         = robust_relative_extent (me->get_bound (d),
162                                   common[X_AXIS],
163                                   X_AXIS)[-d]
164         - gap * d;
165     }
166   while (flip (&d) != LEFT);
167
168   SCM details = me->get_property ("details");
169
170   SCM limit
171     = scm_assq (ly_symbol2scm ("height-limit"), details);
172
173   Real h_inf = robust_scm2double (scm_cdr (limit), 0.75) * staff_space;
174   Real r_0 = robust_scm2double (scm_cdr (scm_assq (ly_symbol2scm ("ratio"), details)),
175                                 .333);
176
177   Bezier b = slur_shape (attachments[RIGHT] - attachments[LEFT],
178                          h_inf, r_0);
179   b.scale (1, dir);
180   
181   Offset middle = b.curve_point (0.5);
182   Offset edge = b.curve_point (0.0);
183
184   staff_position = rint (staff_position);
185   
186   Real dy = fabs (middle[Y_AXIS] - edge[Y_AXIS]);
187   bool in_space = !(Staff_symbol_referencer::on_staffline (me, (int) staff_position));
188   bool fits_in_space = (dy < 0.6 * staff_space);
189
190   /*
191     Avoid dot
192    */
193   Grob *left_dot = unsmob_grob (me->get_bound (LEFT)->get_object ("dot"));
194   if (left_dot && in_space && fits_in_space)
195     {
196       if (staff_position == Staff_symbol_referencer::get_position (left_dot))
197         {
198           staff_position += dir;
199           in_space = false;
200         }
201     }
202
203   /*
204     Avoid flag.
205    */
206   Grob *left_stem = unsmob_grob (me->get_bound (LEFT)->get_object ("stem"));
207   if (left_stem)
208     {
209       Stencil flag = Stem::get_translated_flag (left_stem);
210       Real y = staff_position * staff_space * 0.5;
211       if (flag.extent (Y_AXIS).contains (y))
212         {
213           staff_position += dir;
214           in_space = !in_space;
215         }
216     }
217
218   /*
219     Putting larger in-space ties next to the notes forces
220     the edges to be opposite (Y-wise) to the tie direction.
221    */
222   if (staff_position == Tie::get_position (me)
223       && in_space
224       && dy > 0.3 * staff_space)
225     {
226       staff_position += 2 * dir; 
227     }
228   
229   if (in_space != fits_in_space)
230     {
231       if (in_space)
232         {
233           staff_position += dir;
234         }
235       else
236         {
237           in_space = true;
238           staff_position += dir;
239         }
240     }
241
242   if (in_space)
243     {
244       if (fabs (dy) < 0.4 * staff_space)
245         {
246           /*
247             vertically center in space.
248           */
249           Offset middle = b.curve_point (0.5);
250           Offset edge = b.curve_point (0.0);
251
252           Real center = (edge[Y_AXIS] + middle[Y_AXIS])/2.0;
253           b.translate (Offset (0,
254                                staff_position * staff_space * 0.5
255                                - center));
256         }
257       else
258         {
259           b.translate (Offset (0,
260                                (staff_position - dir) * staff_space * 0.5
261                                + dir * 0.2 * staff_space));
262         }
263     }
264   else
265     {
266       Real rounding_dy = (1.5 * dir  - middle[Y_AXIS]);
267       
268       b.translate (Offset (0,
269                            0.5 * staff_position * staff_space + rounding_dy));
270     }
271   
272   b.translate (Offset (attachments[LEFT]
273                        - me->relative_coordinate (common[X_AXIS], X_AXIS), 0));
274   
275   SCM controls = SCM_EOL;
276   for (int i = 4; i--;)
277     controls = scm_cons (ly_offset2scm (b.control_[i]), controls);
278   return controls;
279 }
280
281
282
283 MAKE_SCHEME_CALLBACK (Tie, print, 1);
284 SCM
285 Tie::print (SCM smob)
286 {
287   Grob *me = unsmob_grob (smob);
288
289   SCM cp = me->get_property ("control-points");
290   if (!scm_is_pair (cp))                // list is more accurate
291     {
292       cp = get_control_points (smob);
293       me->set_property ("control-points", cp);
294     }
295
296   if (!scm_is_pair (cp))
297     return Stencil ().smobbed_copy ();
298
299   Real staff_thick = Staff_symbol_referencer::line_thickness (me);
300   Real base_thick = robust_scm2double (me->get_property ("thickness"), 1);
301   Real thick = base_thick * staff_thick;
302
303   Bezier b;
304   int i = 0;
305   for (SCM s = cp; s != SCM_EOL; s = scm_cdr (s))
306     {
307       b.control_[i] = ly_scm2offset (scm_car (s));
308       i++;
309     }
310
311   Stencil a;
312
313   SCM p = me->get_property ("dash-period");
314   SCM f = me->get_property ("dash-fraction");
315   if (scm_is_number (p) && scm_is_number (f))
316     a = Lookup::dashed_slur (b,
317                              thick,
318                              robust_scm2double (p, 1.0),
319                              robust_scm2double (f, 0));
320   else
321     a = Lookup::slur (b,
322                       get_grob_direction (me) * staff_thick,
323                       thick);
324
325   return a.smobbed_copy ();
326 }
327
328 ADD_INTERFACE (Tie,
329                "tie-interface",
330                "A tie connecting two noteheads.\n",
331
332                "y-offset dash-period dash-fraction "
333                "staffline-clearance control-points head-pair "
334                "details thickness x-gap direction minimum-length");