Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / item.cc
blob0a853484e05bb58c1a1f3ca7594d0b977a610abf
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 "item.hh"
22 #include "axis-group-interface.hh"
23 #include "paper-score.hh"
24 #include "warn.hh"
25 #include "paper-column.hh"
26 #include "lily-guile.hh"
27 #include "system.hh"
28 #include "pointer-group-interface.hh"
30 #include "moment.hh"
33 Grob *
34 Item::clone () const
36 return new Item (*this);
39 Item::Item (SCM s)
40 : Grob (s)
42 broken_to_drul_[LEFT] = broken_to_drul_[RIGHT] = 0;
43 cached_pure_height_valid_ = false;
46 /**
47 Item copy ctor. Copy nothing: everything should be a elt property
48 or a special purpose pointer (such as broken_to_drul_[]) */
49 Item::Item (Item const &s)
50 : Grob (s)
52 broken_to_drul_[LEFT] = broken_to_drul_[RIGHT] = 0;
53 cached_pure_height_valid_ = false;
56 bool
57 Item::is_non_musical (Grob *me)
59 if (me->original ())
60 return false;
62 Item *i = dynamic_cast<Item *> (me->get_parent (X_AXIS));
63 return i ? Item::is_non_musical (i) : to_boolean (me->get_property ("non-musical"));
66 Paper_column *
67 Item::get_column () const
69 Item *parent = dynamic_cast<Item *> (get_parent (X_AXIS));
70 return parent ? parent->get_column () : 0;
73 System *
74 Item::get_system () const
76 Grob *g = get_parent (X_AXIS);
77 return g ? g->get_system () : 0;
80 void
81 Item::copy_breakable_items ()
83 Drul_array<Item *> new_copies;
84 Direction i = LEFT;
87 Grob *dolly = clone ();
88 Item *item = dynamic_cast<Item *> (dolly);
89 get_root_system (this)->typeset_grob (item);
90 new_copies[i] = item;
92 while (flip (&i) != LEFT);
94 broken_to_drul_ = new_copies;
97 bool
98 Item::is_broken () const
100 return broken_to_drul_[LEFT] || broken_to_drul_[RIGHT];
104 Generate items for begin and end-of line.
106 void
107 Item::discretionary_processing ()
109 if (is_broken ())
110 return;
112 if (Item::is_non_musical (this))
113 copy_breakable_items ();
116 Grob *
117 Item::find_broken_piece (System *l) const
119 if (get_system () == l)
120 return (Item *) (this);
122 Direction d = LEFT;
125 Grob *s = broken_to_drul_[d];
126 if (s && s->get_system () == l)
127 return s;
129 while (flip (&d) != LEFT);
131 return 0;
134 Item *
135 Item::find_prebroken_piece (Direction d) const
137 Item *me = (Item *) (this);
138 if (!d)
139 return me;
140 return dynamic_cast<Item *> (broken_to_drul_[d]);
143 Direction
144 Item::break_status_dir () const
146 if (original ())
148 Item *i = dynamic_cast<Item *> (original ());
150 return (i->broken_to_drul_[LEFT] == this) ? LEFT : RIGHT;
152 else
153 return CENTER;
156 void
157 Item::handle_prebroken_dependencies ()
159 Grob::handle_prebroken_dependencies ();
162 Can't do this earlier, because try_visibility_lambda () might set
163 the elt property transparent, which would then be copied.
165 if (!Item::break_visible (this))
166 suicide ();
169 bool
170 Item::break_visible (Grob *g)
172 Item *it = dynamic_cast<Item*> (g);
173 SCM vis = g->get_property ("break-visibility");
174 if (scm_is_vector (vis))
175 return to_boolean (scm_c_vector_ref (vis, it->break_status_dir () + 1));
176 return true;
179 bool
180 Item::pure_is_visible (int start, int end) const
182 SCM vis = get_property ("break-visibility");
183 if (scm_is_vector (vis))
185 int pos = 1;
186 int pc_rank = Paper_column::get_rank (get_column ());
187 if (pc_rank == start)
188 pos = 2;
189 else if (pc_rank == end)
190 pos = 0;
191 return to_boolean (scm_vector_ref (vis, scm_from_int (pos)));
193 return true;
196 Interval_t<int>
197 Item::spanned_rank_interval () const
199 int c = get_column ()->get_rank ();
200 return Interval_t<int> (c, c);
203 Interval_t<Moment>
204 spanned_time_interval (Item *l, Item *r)
206 Drul_array<Item*> bounds (l, r);
207 Interval_t<Moment> iv;
209 Direction d = LEFT;
212 if (bounds[d] && bounds[d]->get_column ())
213 iv[d] = robust_scm2moment (bounds[d]->get_column ()->get_property ("when"),
214 iv[d]);
216 while (flip (&d) != LEFT);
220 if (!bounds[d] || !bounds[d]->get_column ())
221 iv[d] = iv[-d];
223 while (flip (&d) != LEFT);
226 return iv;
230 void
231 Item::derived_mark () const
233 if (broken_to_drul_[LEFT])
234 scm_gc_mark (broken_to_drul_[LEFT]->self_scm ());
235 if (broken_to_drul_[RIGHT])
236 scm_gc_mark (broken_to_drul_[RIGHT]->self_scm ());
239 Item *
240 unsmob_item (SCM s)
242 return dynamic_cast<Item *> (unsmob_grob (s));
245 Interval
246 Item::pure_height (Grob *g, int start, int end)
248 if (cached_pure_height_valid_)
249 return cached_pure_height_ + pure_relative_y_coordinate (g, start, end);
251 cached_pure_height_ = Grob::pure_height (this, start, end);
252 cached_pure_height_valid_ = true;
253 return cached_pure_height_ + pure_relative_y_coordinate (g, start, end);
256 ADD_INTERFACE (Item,
257 "Grobs can be distinguished in their role in the horizontal"
258 " spacing. Many grobs define constraints on the spacing by"
259 " their sizes, for example, note heads, clefs, stems, and all"
260 " other symbols with a fixed shape. These grobs form a"
261 " subtype called @code{Item}.\n"
262 "\n"
263 "Some items need special treatment for line breaking. For"
264 " example, a clef is normally only printed at the start of a"
265 " line (i.e., after a line break). To model this,"
266 " @q{breakable} items (clef, key signature, bar lines, etc.)"
267 " are copied twice. Then we have three versions of each"
268 " breakable item: one version if there is no line break, one"
269 " version that is printed before the line break (at the end of"
270 " a system), and one version that is printed after the line"
271 " break.\n"
272 "\n"
273 "Whether these versions are visible and take up space is"
274 " determined by the outcome of the @code{break-visibility}"
275 " grob property, which is a function taking a direction"
276 " (@code{-1}, @code{0} or@tie{}@code{1}) as an argument. It"
277 " returns a cons of booleans, signifying whether this grob"
278 " should be transparent and have no extent.\n"
279 "\n"
280 "The following variables for @code{break-visibility} are"
281 " predefined:\n"
282 "@example\n"
283 " grob will show: before no after\n"
284 " break break break\n"
285 " all-invisible no no no\n"
286 " begin-of-line-visible no no yes\n"
287 " end-of-line-visible yes no no\n"
288 " all-visible yes yes yes\n"
289 " begin-of-line-invisible yes yes no\n"
290 " end-of-line-invisible no yes yes\n"
291 " center-invisible yes no yes\n"
292 "@end example",
294 /* properties */
295 "break-visibility "
296 "extra-spacing-height "
297 "extra-spacing-width "
298 "non-musical "