Allow for nested contexts of any depth.
[lilypond.git] / lily / staff-symbol-referencer.cc
blob38c39e04fe1851ec00dbc26893937040e065acee
1 /*
2 staff-symbol-referencer.cc -- implement Staff_symbol_referencer
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
9 #include "staff-symbol-referencer.hh"
11 #include "staff-symbol.hh"
12 #include "grob.hh"
13 #include "output-def.hh"
14 #include "libc-extension.hh"
16 int
17 Staff_symbol_referencer::line_count (Grob *me)
19 Grob *st = get_staff_symbol (me);
20 return st ? Staff_symbol::line_count (st) : 0;
23 bool
24 Staff_symbol_referencer::on_line (Grob *me, int pos)
26 Grob *st = get_staff_symbol (me);
27 return st ? Staff_symbol::on_line (st, pos) : false;
30 bool
31 Staff_symbol_referencer::on_staff_line (Grob *me, int pos)
33 return on_line (me, pos) && abs (pos) <= 2 * staff_radius (me);
36 Grob *
37 Staff_symbol_referencer::get_staff_symbol (Grob *me)
39 if (Staff_symbol::has_interface (me))
40 return me;
42 SCM st = me->get_object ("staff-symbol");
43 return unsmob_grob (st);
46 Real
47 Staff_symbol_referencer::staff_space (Grob *me)
49 Grob *st = get_staff_symbol (me);
50 if (st)
51 return Staff_symbol::staff_space (st);
52 return 1.0;
55 Real
56 Staff_symbol_referencer::line_thickness (Grob *me)
58 Grob *st = get_staff_symbol (me);
59 if (st)
60 return Staff_symbol::get_line_thickness (st);
61 return me->layout ()->get_dimension (ly_symbol2scm ("line-thickness"));
64 Real
65 Staff_symbol_referencer::get_position (Grob *me)
67 Real p = 0.0;
68 Grob *st = get_staff_symbol (me);
69 Grob *c = st ? me->common_refpoint (st, Y_AXIS) : 0;
70 if (st && c)
72 Real y = me->relative_coordinate (c, Y_AXIS)
73 - st->relative_coordinate (c, Y_AXIS);
75 p += 2.0 * y / Staff_symbol::staff_space (st);
76 return p;
78 else if (!st)
79 return me->relative_coordinate (me->get_parent (Y_AXIS), Y_AXIS) * 2;
80 return robust_scm2double (me->get_property ("staff-position"), p);
84 Interval
85 Staff_symbol_referencer::extent_in_staff (Grob *me)
87 Grob *st = get_staff_symbol (me);
88 Grob *c = st ? me->common_refpoint (st, Y_AXIS) : 0;
90 Interval retval;
91 if (st && c)
93 retval = me->extent (c, Y_AXIS)
94 - st->relative_coordinate (c, Y_AXIS);
97 return retval;
101 Staff_symbol_referencer::get_rounded_position (Grob *me)
103 return int (rint (get_position (me)));
106 MAKE_SCHEME_CALLBACK (Staff_symbol_referencer, callback, 1);
108 Staff_symbol_referencer::callback (SCM smob)
110 Grob *me = unsmob_grob (smob);
112 SCM pos = me->get_property ("staff-position");
113 Real off = 0.0;
114 if (scm_is_number (pos))
116 Real space = Staff_symbol_referencer::staff_space (me);
117 off = scm_to_double (pos) * space / 2.0;
120 return scm_from_double (off);
123 /* This sets the position relative to the center of the staff symbol.
125 The function is hairy, because it can be called in two situations:
127 1. There is no staff yet; we must set staff-position
129 2. There is a staff, and perhaps someone even applied a
130 translate_axis (). Then we must compensate for the translation
132 In either case, we set a callback to be sure that our new position
133 will be extracted from staff-position */
135 void
136 Staff_symbol_referencer::set_position (Grob *me, Real p)
138 Grob *st = get_staff_symbol (me);
139 Real oldpos = 0.0;
140 if (st && me->common_refpoint (st, Y_AXIS))
142 oldpos = get_position (me);
146 Real ss = Staff_symbol_referencer::staff_space (me);
147 me->translate_axis ((p - oldpos) * ss * 0.5, Y_AXIS);
150 /* Half of the height, in staff space, i.e. 2.0 for a normal staff. */
151 Real
152 Staff_symbol_referencer::staff_radius (Grob *me)
154 return (line_count (me) - 1) / 2.0;
158 compare_position (Grob *const &a, Grob *const &b)
160 return sign (Staff_symbol_referencer::get_position ((Grob *)a)
161 - Staff_symbol_referencer::get_position ((Grob *) b));
164 bool
165 position_less (Grob *const &a, Grob *const &b)
167 return Staff_symbol_referencer::get_position (a)
168 < Staff_symbol_referencer::get_position (b);
171 ADD_INTERFACE (Staff_symbol_referencer,
172 "An object whose Y@tie{}position is meant relative to a staff"
173 " symbol. These usually"
174 " have @code{Staff_symbol_referencer::callback} in their"
175 " @code{Y-offset-callbacks}.",
177 /* properties */
178 "staff-position "