Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / staff-symbol.cc
blobd1629dfb243fbe26d88323a052a9b9aeffd1ce3d
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #include "staff-symbol.hh"
22 #include "lookup.hh"
23 #include "dimensions.hh"
24 #include "output-def.hh"
25 #include "warn.hh"
26 #include "item.hh"
27 #include "staff-symbol-referencer.hh"
28 #include "spanner.hh"
30 MAKE_SCHEME_CALLBACK (Staff_symbol, print, 1);
32 SCM
33 Staff_symbol::print (SCM smob)
35 Grob *me = unsmob_grob (smob);
36 Spanner *sp = dynamic_cast<Spanner *> (me);
37 Grob *common
38 = sp->get_bound (LEFT)->common_refpoint (sp->get_bound (RIGHT), X_AXIS);
40 Interval span_points (0, 0);
43 For raggedright without ragged staves, simply set width to the linewidth.
45 (ok -- lousy UI, since width is in staff spaces)
47 --hwn.
49 Real t = me->layout ()->get_dimension (ly_symbol2scm ("line-thickness"));
50 t *= robust_scm2double (me->get_property ("thickness"), 1.0);
52 Direction d = LEFT;
55 SCM width_scm = me->get_property ("width");
56 if (d == RIGHT && scm_is_number (width_scm))
59 don't multiply by Staff_symbol_referencer::staff_space (me),
60 since that would make aligning staff symbols of different sizes to
61 one right margin hell.
63 span_points[RIGHT] = scm_to_double (width_scm);
65 else
67 Item *x = sp->get_bound (d);
69 span_points[d] = x->relative_coordinate (common, X_AXIS);
70 if (!x->break_status_dir ()
71 && !x->extent (x, X_AXIS).is_empty ())
72 span_points[d] += x->extent (x, X_AXIS)[d];
75 span_points[d] -= d* t / 2;
77 while (flip (&d) != LEFT);
79 Stencil m;
81 SCM line_positions = me->get_property ("line-positions");
82 Stencil line
83 = Lookup::horizontal_line (span_points
84 -me->relative_coordinate (common, X_AXIS),
85 t);
87 Real space = staff_space (me);
88 if (scm_is_pair (line_positions))
90 for (SCM s = line_positions; scm_is_pair (s);
91 s = scm_cdr (s))
93 Stencil b (line);
94 b.translate_axis (scm_to_double (scm_car (s))
95 * 0.5 * space, Y_AXIS);
96 m.add_stencil (b);
99 else
101 int l = Staff_symbol::line_count (me);
102 Real height = (l - 1) * staff_space (me) / 2;
103 for (int i = 0; i < l; i++)
105 Stencil b (line);
106 b.translate_axis (height - i * space, Y_AXIS);
107 m.add_stencil (b);
110 return m.smobbed_copy ();
115 Staff_symbol::get_steps (Grob *me)
117 return line_count (me) * 2;
121 Staff_symbol::line_count (Grob *me)
123 SCM c = me->get_property ("line-count");
124 if (scm_is_number (c))
125 return scm_to_int (c);
126 else
127 return 0;
130 Real
131 Staff_symbol::staff_space (Grob *me)
133 return robust_scm2double (me->get_property ("staff-space"), 1.0);
136 Real
137 Staff_symbol::get_line_thickness (Grob *me)
139 Real lt = me->layout ()->get_dimension (ly_symbol2scm ("line-thickness"));
141 return robust_scm2double (me->get_property ("thickness"), 1.0) * lt;
144 Real
145 Staff_symbol::get_ledger_line_thickness (Grob *me)
147 SCM lt_pair = me->get_property ("ledger-line-thickness");
148 Offset z = robust_scm2offset (lt_pair, Offset (1.0, 0.1));
150 return z[X_AXIS] * get_line_thickness (me) + z[Y_AXIS] * staff_space (me);
153 MAKE_SCHEME_CALLBACK (Staff_symbol, height,1);
155 Staff_symbol::height (SCM smob)
157 Grob *me = unsmob_grob (smob);
158 Real t = me->layout ()->get_dimension (ly_symbol2scm ("line-thickness"));
159 t *= robust_scm2double (me->get_property ("thickness"), 1.0);
161 SCM line_positions = me->get_property ("line-positions");
163 Interval y_ext;
164 Real space = staff_space (me);
165 if (scm_is_pair (line_positions))
167 for (SCM s = line_positions; scm_is_pair (s);
168 s = scm_cdr (s))
169 y_ext.add_point (scm_to_double (scm_car (s)) * 0.5 * space);
171 else
173 int l = Staff_symbol::line_count (me);
174 Real height = (l - 1) * staff_space (me) / 2;
175 y_ext = Interval (-height, height);
177 y_ext.widen (t/2);
178 return ly_interval2scm (y_ext);
181 bool
182 Staff_symbol::on_line (Grob *me, int pos)
184 SCM line_positions = me->get_property ("line-positions");
185 if (scm_is_pair (line_positions))
187 Real min_line = HUGE_VAL;
188 Real max_line = -HUGE_VAL;
189 for (SCM s = line_positions; scm_is_pair (s); s = scm_cdr (s))
191 Real current_line = scm_to_double (scm_car (s));
192 if (pos == current_line)
193 return true;
194 if (current_line > max_line)
195 max_line = current_line;
196 if (current_line < min_line)
197 min_line = current_line;
200 if (pos < min_line)
201 return (( (int) (rint (pos - min_line)) % 2) == 0);
202 if (pos > max_line)
203 return (( (int) (rint (pos - max_line)) % 2) == 0);
205 return false;
207 else
208 return ((abs (pos + line_count (me)) % 2) == 1);
211 Interval
212 Staff_symbol::line_span (Grob *me)
214 SCM line_positions = me->get_property ("line-positions");
215 Interval iv;
217 if (scm_is_pair (line_positions))
218 for (SCM s = line_positions; scm_is_pair (s); s = scm_cdr (s))
219 iv.add_point (scm_to_double (scm_car (s)));
220 else
222 int count = line_count (me);
223 return Interval (-count + 1, count - 1);
226 return iv;
229 ADD_INTERFACE (Staff_symbol,
230 "This spanner draws the lines of a staff. A staff symbol"
231 " defines a vertical unit, the @emph{staff space}. Quantities"
232 " that go by a half staff space are called @emph{positions}."
233 " The center (i.e., middle line or space) is position@tie{}0."
234 " The length of the symbol may be set by hand through the"
235 " @code{width} property.",
237 /* properties */
238 "ledger-line-thickness "
239 "line-count "
240 "line-positions "
241 "staff-space "
242 "thickness "
243 "width "