Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / cue-clef-engraver.cc
blobc597b368e18c93b94a0830facf6eec9edbbe8571
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
5 Mats Bengtsson <matsb@s3.kth.se>
6 Copyright (C) 2010--2011 Reinhold Kainhofer <reinhold@kainhofer.com>
8 LilyPond is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 LilyPond is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
22 #include <cctype>
23 using namespace std;
25 #include "item.hh"
26 #include "context.hh"
27 #include "bar-line.hh"
28 #include "staff-symbol-referencer.hh"
29 #include "engraver.hh"
30 #include "direction.hh"
31 #include "side-position-interface.hh"
32 #include "warn.hh"
33 #include "international.hh"
35 #include "translator.icc"
37 class Cue_clef_engraver : public Engraver
39 public:
40 TRANSLATOR_DECLARATIONS (Cue_clef_engraver);
42 protected:
43 void stop_translation_timestep ();
44 void process_music ();
45 DECLARE_ACKNOWLEDGER (bar_line);
47 virtual void derived_mark () const;
48 private:
49 Item *clef_;
50 Item *octavate_;
52 SCM prev_glyph_;
53 SCM prev_cpos_;
54 SCM prev_octavation_;
55 void create_clef ();
56 void create_end_clef ();
57 void set_glyph ();
58 void inspect_clef_properties ();
59 void create_octavate_eight (SCM oct);
62 void
63 Cue_clef_engraver::derived_mark () const
65 scm_gc_mark (prev_octavation_);
66 scm_gc_mark (prev_cpos_);
67 scm_gc_mark (prev_glyph_);
70 Cue_clef_engraver::Cue_clef_engraver ()
72 clef_ = 0;
73 octavate_ = 0;
75 prev_octavation_ = prev_cpos_ = prev_glyph_ = SCM_EOL;
78 void
79 Cue_clef_engraver::set_glyph ()
81 SCM glyph_sym = ly_symbol2scm ("glyph");
82 SCM basic = ly_symbol2scm ("CueClef");
83 execute_pushpop_property (context (), basic, glyph_sym, SCM_UNDEFINED);
84 execute_pushpop_property (context (), basic, glyph_sym, get_property ("cueClefGlyph"));
86 basic = ly_symbol2scm ("CueEndClef");
87 execute_pushpop_property (context (), basic, glyph_sym, SCM_UNDEFINED);
88 execute_pushpop_property (context (), basic, glyph_sym, get_property ("clefGlyph"));
91 /**
92 Generate a clef at the start of a measure. (when you see a Bar,
93 ie. a breakpoint)
95 void
96 Cue_clef_engraver::acknowledge_bar_line (Grob_info info)
98 Item *item = info.item ();
99 if (item && scm_is_string (get_property ("cueClefGlyph")))
100 create_clef ();
103 void
104 Cue_clef_engraver::create_octavate_eight (SCM oct)
106 if (scm_is_number (oct) && scm_to_int (oct))
108 Item *g = make_item ("OctavateEight", SCM_EOL);
110 int abs_oct = scm_to_int (oct);
111 int dir = sign (abs_oct);
112 abs_oct = abs (abs_oct) + 1;
114 SCM txt = scm_number_to_string (scm_from_int (abs_oct),
115 scm_from_int (10));
117 g->set_property ("text",
118 scm_list_n (ly_lily_module_constant ("vcenter-markup"),
119 txt, SCM_UNDEFINED));
120 Side_position_interface::add_support (g, clef_);
122 g->set_parent (clef_, Y_AXIS);
123 g->set_parent (clef_, X_AXIS);
124 g->set_property ("direction", scm_from_int (dir));
125 octavate_ = g;
129 void
130 Cue_clef_engraver::create_clef ()
132 if (!clef_)
134 Item *c = make_item ("CueClef", SCM_EOL);
136 clef_ = c;
137 SCM cpos = get_property ("cueClefPosition");
138 if (scm_is_number (cpos))
139 clef_->set_property ("staff-position", cpos);
141 create_octavate_eight (get_property ("cueClefOctavation"));
145 void
146 Cue_clef_engraver::create_end_clef ()
148 if (!clef_)
150 clef_ = make_item ("CueEndClef", SCM_EOL);
151 SCM cpos = get_property ("clefPosition");
152 if (scm_is_number (cpos))
153 clef_->set_property ("staff-position", cpos);
155 create_octavate_eight (get_property ("clefOctavation"));
159 void
160 Cue_clef_engraver::process_music ()
162 inspect_clef_properties ();
165 void
166 Cue_clef_engraver::inspect_clef_properties ()
168 SCM glyph = get_property ("cueClefGlyph");
169 SCM clefpos = get_property ("cueClefPosition");
170 SCM octavation = get_property ("cueClefOctavation");
172 if (scm_equal_p (glyph, prev_glyph_) == SCM_BOOL_F
173 || scm_equal_p (clefpos, prev_cpos_) == SCM_BOOL_F
174 || scm_equal_p (octavation, prev_octavation_) == SCM_BOOL_F)
176 set_glyph ();
177 if (scm_is_string (glyph))
179 create_clef ();
180 if (clef_)
181 clef_->set_property ("non-default", SCM_BOOL_T);
183 else
184 create_end_clef ();
186 prev_cpos_ = clefpos;
187 prev_glyph_ = glyph;
188 prev_octavation_ = octavation;
193 void
194 Cue_clef_engraver::stop_translation_timestep ()
196 if (clef_)
198 SCM vis = 0;
199 if (to_boolean (clef_->get_property ("non-default")))
200 vis = get_property ("explicitCueClefVisibility");
202 if (vis)
203 clef_->set_property ("break-visibility", vis);
205 clef_ = 0;
206 octavate_ = 0;
210 ADD_ACKNOWLEDGER (Cue_clef_engraver, bar_line);
211 ADD_TRANSLATOR (Cue_clef_engraver,
212 /* doc */
213 "Determine and set reference point for pitches in cued voices.",
215 /* create */
216 "CueClef "
217 "CueEndClef "
218 "OctavateEight ",
220 /* read */
221 "cueClefGlyph "
222 "cueClefOctavation "
223 "cueClefPosition "
224 "explicitCueClefVisibility "
225 "middleCCuePosition "
226 "clefOctavation ",
228 /* write */