lilypond-1.5.9
[lilypond.git] / lily / arpeggio.cc
blob900949224c34ce87afb0529127e99b3b06f7562d
1 /*
2 arpegggio.cc -- implement Arpeggio
4 source file of the GNU LilyPond music typesetter
6 (c) 2000--2001 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
9 #include "molecule.hh"
10 #include "paper-def.hh"
11 #include "arpeggio.hh"
12 #include "grob.hh"
13 #include "stem.hh"
14 #include "staff-symbol-referencer.hh"
15 #include "staff-symbol.hh"
16 #include "warn.hh"
17 #include "font-interface.hh"
19 bool
20 Arpeggio::has_interface (Grob* me)
22 return me && me->has_interface (ly_symbol2scm ("arpeggio-interface"));
25 MAKE_SCHEME_CALLBACK (Arpeggio, brew_molecule, 1);
26 SCM
27 Arpeggio::brew_molecule (SCM smob)
29 Grob *me = unsmob_grob (smob);
31 Grob * common = me;
32 for (SCM s = me->get_grob_property ("stems"); gh_pair_p (s); s = gh_cdr (s))
34 Grob * stem = unsmob_grob (gh_car (s));
35 common = common->common_refpoint (Staff_symbol_referencer::staff_symbol_l (stem),
36 Y_AXIS);
40 TODO:
42 Using stems here is not very convenient; should store noteheads
43 instead, and also put them into the support. Now we will mess up
44 in vicinity of a collision.
47 Interval heads;
48 Real my_y = me->relative_coordinate (common, Y_AXIS);
50 for (SCM s = me->get_grob_property ("stems"); gh_pair_p (s); s = gh_cdr (s))
52 Grob * stem = unsmob_grob (gh_car (s));
53 Grob * ss = Staff_symbol_referencer::staff_symbol_l (stem);
54 Interval iv =Stem::head_positions (stem);
55 iv *= Staff_symbol::staff_space (ss)/2.0;
57 heads.unite (iv + ss->relative_coordinate (common, Y_AXIS)
58 - my_y);
61 if (heads.empty_b ())
63 programming_error ("Huh? Dumb blonde encountered?");
65 Nee Valerie, jij bent _niet_ dom.
67 return SCM_EOL;
70 Molecule mol;
71 Molecule arpeggio = Font_interface::get_default_font (me)->find_by_name ("scripts-arpeggio");
73 Real y = heads[LEFT];
74 while (y < heads[RIGHT])
76 mol.add_at_edge (Y_AXIS, UP,arpeggio, 0.0);
77 y+= arpeggio. extent (Y_AXIS).length ();
79 mol.translate_axis (heads[LEFT], Y_AXIS);
81 return mol.smobbed_copy () ;
85 We have to do a callback, because brew_molecule () triggers a
86 vertical alignment if it is cross-staff.
87 This callback also adds padding.
89 MAKE_SCHEME_CALLBACK (Arpeggio, width_callback,2);
90 SCM
91 Arpeggio::width_callback (SCM smob, SCM axis)
93 Grob * me = unsmob_grob (smob);
94 Axis a = (Axis)gh_scm2int (axis);
95 assert (a == X_AXIS);
96 Molecule arpeggio = Font_interface::get_default_font (me)->find_by_name ("scripts-arpeggio");
98 return ly_interval2scm (arpeggio.extent (X_AXIS) * 1.5);