* stepmake/stepmake/metafont-rules.make: backport 1.7 fixes.
[lilypond.git] / lily / tuplet-bracket.cc
blobbb61ecbce4f5f0cb01a7d64b23eb2f42c275b48c
1 /*
2 plet-spanner.cc -- implement Tuplet_bracket
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2002 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
9 /*
10 TODO:
12 - tuplet bracket should probably be subject to the same rules as
13 beam sloping/quanting.
15 - There is no support for kneed brackets, or nested brackets.
17 - number placement for parallel beams should be much more advanced:
18 for sloped beams some extra horizontal offset must be introduced.
20 - number placement is usually done over the center note, not the
21 graphical center.
25 #include <math.h>
27 #include "beam.hh"
28 #include "box.hh"
29 #include "warn.hh"
30 #include "font-interface.hh"
31 #include "molecule.hh"
32 #include "paper-def.hh"
33 #include "text-item.hh"
34 #include "tuplet-bracket.hh"
35 #include "stem.hh"
36 #include "note-column.hh"
37 #include "group-interface.hh"
38 #include "directional-element-interface.hh"
39 #include "spanner.hh"
40 #include "staff-symbol-referencer.hh"
41 #include "lookup.hh"
44 static Grob*
45 get_x_bound_grob (Grob *g, Direction my_dir)
47 if (Note_column::get_stem (g)
48 && Note_column::dir (g) == my_dir)
50 g = Note_column::get_stem (g);
52 return g;
57 Grob*
58 Tuplet_bracket::parallel_beam (Grob *me, Link_array<Grob> const &cols, bool *equally_long)
61 ugh: code dup.
63 Grob *s1 = Note_column::get_stem (cols[0]);
64 Grob *s2 = Note_column::get_stem (cols.top());
66 Grob*b1 = s1 ? Stem::get_beam (s1) : 0;
67 Grob*b2 = s2 ? Stem::get_beam (s2) : 0;
69 Spanner*sp = dynamic_cast<Spanner*> (me);
71 *equally_long= false;
72 if (! ( b1 && (b1 == b2) && !sp->broken_b() ))
73 return 0;
75 Link_array<Grob> beam_stems = Pointer_group_interface__extract_grobs
76 (b1, (Grob*)0, "stems");
78 if (beam_stems.size() == 0)
80 programming_error ("Beam under tuplet bracket has no stems!");
81 *equally_long = 0;
82 return 0;
85 *equally_long = (beam_stems[0] == s1 && beam_stems.top() == s2);
86 return b1;
91 TODO:
93 in the case that there is no bracket, but there is a (single) beam,
94 follow beam precisely for determining tuplet number location.
97 MAKE_SCHEME_CALLBACK (Tuplet_bracket,brew_molecule,1);
98 SCM
99 Tuplet_bracket::brew_molecule (SCM smob)
101 Grob *me= unsmob_grob (smob);
102 Molecule mol;
103 Link_array<Grob> columns=
104 Pointer_group_interface__extract_grobs (me, (Grob*)0, "note-columns");
106 if (!columns.size ())
107 return mol.smobbed_copy ();
109 bool equally_long = false;
110 Grob * par_beam = parallel_beam (me, columns, &equally_long);
112 Spanner*sp = dynamic_cast<Spanner*> (me);
114 bool bracket_visibility = !(par_beam && equally_long);
115 bool number_visibility = true;
118 Fixme: the type of this prop is sucky.
120 SCM bracket = me->get_grob_property ("bracket-visibility");
121 if (gh_boolean_p (bracket))
123 bracket_visibility = gh_scm2bool (bracket);
125 else if (bracket == ly_symbol2scm ("if-no-beam"))
126 bracket_visibility = !par_beam;
128 SCM numb = me->get_grob_property ("number-visibility");
129 if (gh_boolean_p (numb))
131 number_visibility = gh_scm2bool (numb);
133 else if (numb == ly_symbol2scm ("if-no-beam"))
134 number_visibility = !par_beam;
136 Grob * commonx = columns[0]->common_refpoint (columns.top (),X_AXIS);
139 Tuplet brackets are normally not broken, but we shouldn't crash if
140 they are.
142 commonx = commonx->common_refpoint (sp->get_bound(LEFT), X_AXIS);
143 commonx = commonx->common_refpoint (sp->get_bound(RIGHT), X_AXIS);
145 Direction dir = Directional_element_interface::get (me);
147 Grob * lgr = get_x_bound_grob (columns[0], dir);
148 Grob * rgr = get_x_bound_grob (columns.top(), dir);
149 Real x0 = lgr->extent (commonx,X_AXIS)[LEFT];
150 Real x1 = rgr->extent (commonx,X_AXIS)[RIGHT];
152 Real w = x1 -x0;
154 Real ly = gh_scm2double (me->get_grob_property ("left-position"));
155 Real ry = gh_scm2double (me->get_grob_property ("right-position"));
156 SCM number = me->get_grob_property ("text");
158 if (gh_string_p (number) && number_visibility)
160 SCM properties = Font_interface::font_alist_chain (me);
161 Molecule num = Text_item::text2molecule (me, number, properties);
162 num.align_to (X_AXIS, CENTER);
163 num.translate_axis (w/2, X_AXIS);
164 num.align_to (Y_AXIS, CENTER);
166 num.translate_axis ((ry-ly)/2, Y_AXIS);
168 mol.add_molecule (num);
171 if (bracket_visibility)
173 Real lt = me->get_paper ()->get_var ("linethickness");
175 SCM thick = me->get_grob_property ("thickness");
176 if (gh_number_p (thick))
177 lt *= gh_scm2double (thick);
179 SCM gap = me->get_grob_property ("gap");
180 SCM ew = me->get_grob_property ("edge-widen");
181 SCM eh = me->get_grob_property ("edge-height");
182 SCM sp = me->get_grob_property ("shorten-pair");
184 Direction d = LEFT;
185 Drul_array<Real> height, width, shorten;
186 do {
187 width[d] = height[d] = shorten[d] = 0.0;
188 if ( ly_number_pair_p (ew) )
189 width[d] += gh_scm2double (index_get_cell (ew, d));
190 if ( ly_number_pair_p (eh) )
191 height[d] += gh_scm2double (index_get_cell (eh, d)) * - dir;
192 if ( ly_number_pair_p (sp) )
193 shorten[d] += gh_scm2double (index_get_cell (sp, d));
195 while (flip (&d) != LEFT);
197 Molecule brack = make_bracket (Y_AXIS,
198 w, ry - ly, lt,
199 height,
200 gh_scm2double (gap),
201 width,
202 shorten);
203 mol.add_molecule (brack);
206 mol.translate_axis (ly, Y_AXIS);
207 mol.translate_axis (x0 - sp->get_bound (LEFT)->relative_coordinate (commonx,X_AXIS),X_AXIS);
208 return mol.smobbed_copy ();
212 should move to lookup?
214 Molecule
215 Tuplet_bracket::make_bracket (Axis protusion_axis,
216 Real dx, Real dy, Real thick, Drul_array<Real> height,
217 Real gap,
218 Drul_array<Real> widen,
219 Drul_array<Real> shorten)
221 Real len = Offset (dx,dy).length ();
222 Real gapx = dx * (gap / len);
223 Real gapy = dy * (gap / len);
224 Drul_array<Real> shortx, shorty;
225 Direction d = LEFT;
226 do {
227 shortx[d] = dx * (shorten[d] / len);
228 shorty[d] = dy * (shorten[d] / len);
230 while (flip (&d) != LEFT);
231 Axis other = other_axis (protusion_axis);
233 Molecule l1 = Lookup::line (thick, Offset(shortx[LEFT], shorty[LEFT]),
234 Offset ( (dx - gapx)/2, (dy - gapy)/2 ));
236 Molecule l2 = Lookup::line (thick, Offset((dx + gapx) / 2,(dy + gapy) / 2),
237 Offset (dx - shortx[RIGHT], dy - shorty[RIGHT]));
239 Offset protusion;
240 protusion[other] = -widen[LEFT];
241 protusion[protusion_axis] = height[LEFT];
242 Molecule p1 = Lookup::line (thick,
243 Offset(shortx[LEFT], shorty[LEFT]),
244 Offset(shortx[LEFT], shorty[LEFT]) + protusion);
245 protusion[other] = widen[RIGHT];
246 protusion[protusion_axis] = height[RIGHT];
247 Molecule p2 = Lookup::line (thick,
248 Offset(dx - shortx[RIGHT], dy - shorty[RIGHT]),
249 Offset(dx - shortx[RIGHT], dy - shorty[RIGHT]) + protusion);
251 Molecule m;
252 m.add_molecule (p1);
253 m.add_molecule (p2);
254 m.add_molecule (l1);
255 m.add_molecule (l2);
257 return m;
262 use first -> last note for slope, and then correct for disturbing
263 notes in between. */
264 void
265 Tuplet_bracket::calc_position_and_height (Grob*me,Real *offset, Real * dy)
267 Link_array<Grob> columns=
268 Pointer_group_interface__extract_grobs (me, (Grob*)0, "note-columns");
271 SCM cols = me->get_grob_property ("note-columns");
272 Grob * commony = common_refpoint_of_list (cols, me, Y_AXIS);
273 Grob * commonx = common_refpoint_of_list (cols, me, X_AXIS);
275 Direction dir = Directional_element_interface::get (me);
278 Use outer non-rest columns to determine slope
280 int l = 0;
281 while (l <columns.size () && Note_column::rest_b (columns[l]))
282 l ++;
284 int r = columns.size ()- 1;
285 while (r >= l && Note_column::rest_b (columns[r]))
286 r--;
288 if (l < r)
290 *dy = columns[r]->extent (commony, Y_AXIS) [dir]
291 - columns[l]->extent (commony, Y_AXIS) [dir] ;
293 else
294 * dy = 0;
297 *offset = - dir * infinity_f;
299 if (!columns.size ())
300 return;
304 Grob * lgr = get_x_bound_grob (columns[0], dir);
305 Grob * rgr = get_x_bound_grob (columns.top(), dir);
306 Real x0 = lgr->extent (commonx,X_AXIS)[LEFT];
307 Real x1 = rgr->extent (commonx,X_AXIS)[RIGHT];
311 Slope.
313 Real factor = columns.size () > 1 ? 1/ (x1 - x0) : 1.0;
315 for (int i = 0; i < columns.size (); i++)
317 Real notey = columns[i]->extent (commony, Y_AXIS)[dir]
318 - me->relative_coordinate (commony, Y_AXIS);
320 Real x = columns[i]->relative_coordinate (commonx, X_AXIS) - x0;
321 Real tuplety = *dy * x * factor;
323 if (notey * dir > (*offset + tuplety) * dir)
324 *offset = notey - tuplety;
327 // padding
328 *offset += gh_scm2double (me->get_grob_property ("padding")) *dir;
332 horizontal brackets should not collide with staff lines.
335 Real ss= Staff_symbol_referencer::staff_space (me);
336 if (*dy == 0 && fabs (*offset) < ss * Staff_symbol_referencer::staff_radius (me))
338 // quantize, then do collision check.
339 *offset *= 2 / ss;
341 *offset = rint (*offset);
342 if (Staff_symbol_referencer::on_staffline (me, (int) rint (*offset)))
343 *offset += dir;
345 *offset *= 0.5 * ss;
351 use first -> last note for slope,
353 void
354 Tuplet_bracket::calc_dy (Grob*me,Real * dy)
356 Link_array<Grob> columns=
357 Pointer_group_interface__extract_grobs (me, (Grob*)0, "note-columns");
360 ugh. refps.
362 Direction d = Directional_element_interface::get (me);
363 *dy = columns.top ()->extent (columns.top (), Y_AXIS) [d]
364 - columns[0]->extent (columns[0], Y_AXIS) [d];
369 We depend on the beams if there are any.
371 MAKE_SCHEME_CALLBACK (Tuplet_bracket,before_line_breaking,1);
373 Tuplet_bracket::before_line_breaking (SCM smob)
375 Grob *me = unsmob_grob (smob);
376 Link_array<Grob> columns=
377 Pointer_group_interface__extract_grobs (me, (Grob*)0, "note-columns");
380 for (int i = columns.size(); i--;)
382 Grob * s =Note_column::get_stem (columns[i]);
383 Grob * b = s ? Stem::get_beam (s): 0;
384 if (b)
385 me->add_dependency (b);
387 return SCM_UNDEFINED;
390 MAKE_SCHEME_CALLBACK (Tuplet_bracket,after_line_breaking,1);
393 Tuplet_bracket::after_line_breaking (SCM smob)
395 Grob * me = unsmob_grob (smob);
396 Link_array<Grob> columns=
397 Pointer_group_interface__extract_grobs (me, (Grob*)0, "note-columns");
399 if (!columns.size ())
401 me->suicide ();
402 return SCM_UNSPECIFIED;
404 if (dynamic_cast<Spanner*> (me)->broken_b ())
406 me->warning ( "Tuplet_bracket was across linebreak. Farewell cruel world.");
407 me->suicide();
408 return SCM_UNSPECIFIED;
411 Direction dir = Directional_element_interface::get (me);
412 if (!dir)
414 dir = Tuplet_bracket::get_default_dir (me);
415 Directional_element_interface::set (me, dir);
418 bool equally_long = false;
419 Grob * par_beam = parallel_beam (me, columns, &equally_long);
422 We follow the beam only if there is one, and we are next to it.
424 Real dy, offset;
425 if (!par_beam
426 || Directional_element_interface::get (par_beam) != dir)
428 calc_position_and_height (me,&offset,&dy);
430 else
432 SCM ps = par_beam->get_grob_property ("positions");
434 Real lp = gh_scm2double (gh_car (ps));
435 Real rp = gh_scm2double (gh_cdr (ps));
438 duh. magic.
440 offset = lp + dir * (0.5 + gh_scm2double (me->get_grob_property ("padding")));
441 dy = rp- lp;
445 SCM lp = me->get_grob_property ("left-position");
446 SCM rp = me->get_grob_property ("right-position");
448 if (gh_number_p (lp) && !gh_number_p (rp))
450 rp = gh_double2scm (gh_scm2double (lp) + dy);
452 else if (gh_number_p (rp) && !gh_number_p (lp))
454 lp = gh_double2scm (gh_scm2double (rp) - dy);
456 else if (!gh_number_p (rp) && !gh_number_p (lp))
458 lp = gh_double2scm (offset);
459 rp = gh_double2scm (offset +dy);
462 me->set_grob_property ("left-position", lp);
463 me->set_grob_property ("right-position", rp);
465 return SCM_UNSPECIFIED;
470 similar to slur.
472 Direction
473 Tuplet_bracket::get_default_dir (Grob*me)
475 Direction d = UP;
476 for (SCM s = me->get_grob_property ("note-columns"); gh_pair_p (s); s = ly_cdr (s))
478 Grob * nc = unsmob_grob (ly_car (s));
479 if (Note_column::dir (nc) < 0)
481 d = DOWN;
482 break;
485 return d;
488 void
489 Tuplet_bracket::add_column (Grob*me, Item*n)
491 Pointer_group_interface::add_grob (me, ly_symbol2scm ("note-columns"), n);
492 me->add_dependency (n);
494 add_bound_item (dynamic_cast<Spanner*> (me), n);
502 ADD_INTERFACE (Tuplet_bracket,"tuplet-bracket-interface",
503 "A bracket with a number in the middle, used for tuplets.",
504 "note-columns edge-widen edge-height shorten-pair padding gap left-position right-position bracket-visibility number-visibility thickness direction");