1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
/*
This file is part of LilyPond, the GNU music typesetter.
Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
LilyPond is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
LilyPond is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
*/
#include "engraver.hh"
#include "context.hh"
#include "directional-element-interface.hh"
#include "duration.hh"
#include "international.hh"
#include "item.hh"
#include "misc.hh"
#include "rhythmic-head.hh"
#include "script-interface.hh"
#include "staff-symbol-referencer.hh"
#include "stem-tremolo.hh"
#include "stem.hh"
#include "stream-event.hh"
#include "translator.icc"
class Stem_engraver : public Engraver
{
Grob *stem_;
Grob *tremolo_;
vector <Grob *> maybe_flags_;
Stream_event *rhythmic_ev_;
Stream_event *tremolo_ev_;
bool tuplet_start_;
TRANSLATOR_DECLARATIONS (Stem_engraver);
protected:
void make_stem (Grob_info, bool);
void listen_tremolo (Stream_event *);
void listen_tuplet_span (Stream_event *);
void acknowledge_rhythmic_head (Grob_info);
void stop_translation_timestep ();
void finalize ();
void kill_unused_flags ();
};
Stem_engraver::Stem_engraver ()
{
tremolo_ev_ = 0;
stem_ = 0;
tremolo_ = 0;
rhythmic_ev_ = 0;
tuplet_start_ = false;
}
void
Stem_engraver::make_stem (Grob_info gi, bool tuplet_start)
{
/* Announce the cause of the head as cause of the stem. The
stem needs a rhythmic structure to fit it into a beam. */
stem_ = make_item ("Stem", gi.grob ()->self_scm ());
if (tuplet_start)
stem_->set_property ("tuplet-start", SCM_BOOL_T);
(void) make_item ("StemStub", gi.grob ()->self_scm ());
if (tremolo_ev_)
{
/* Stem tremolo is never applied to a note by default,
it must be requested. But there is a default for the
tremolo value:
c4:8 c c:
the first and last (quarter) note both get one tremolo flag. */
int requested_type
= robust_scm2int (tremolo_ev_->get_property ("tremolo-type"), 8);
/*
we take the duration log from the Event, since the duration-log
for a note head is always <= 2.
*/
Stream_event *ev = gi.event_cause ();
Duration *dur = unsmob<Duration> (ev->get_property ("duration"));
int tremolo_flags = intlog2 (requested_type) - 2
- (dur->duration_log () > 2 ? dur->duration_log () - 2 : 0);
if (tremolo_flags <= 0)
{
tremolo_ev_->origin ()->warning (_ ("tremolo duration is too long"));
tremolo_flags = 0;
}
if (tremolo_flags)
{
tremolo_ = make_item ("StemTremolo", tremolo_ev_->self_scm ());
/* The number of tremolo flags is the number of flags of the
tremolo-type minus the number of flags of the note itself. */
tremolo_->set_property ("flag-count", scm_from_int (tremolo_flags));
tremolo_->set_parent (stem_, X_AXIS);
stem_->set_object ("tremolo-flag", tremolo_->self_scm ());
tremolo_->set_object ("stem", stem_->self_scm ());
}
}
}
void
Stem_engraver::acknowledge_rhythmic_head (Grob_info gi)
{
if (Rhythmic_head::get_stem (gi.grob ()))
return;
Stream_event *cause = gi.event_cause ();
if (!cause)
return;
Duration *d = unsmob<Duration> (cause->get_property ("duration"));
if (!d)
return;
if (!stem_)
make_stem (gi, tuplet_start_);
int ds = Stem::duration_log (stem_);
int dc = d->duration_log ();
// half notes and quarter notes all have compatible stems.
// Longas are done differently (oops?), so we can't unify
// them with the other stemmed notes.
if (ds == 1)
ds = 2;
if (dc == 1)
dc = 2;
// whole notes and brevis both have no stems
if (ds == -1)
ds = 0;
if (dc == -1)
dc = 0;
if (ds != dc)
{
gi.event_cause ()->origin ()->warning (_f ("adding note head to incompatible stem (type = %d/%d)",
ds < 0 ? 1 << -ds : 1,
ds > 0 ? 1 << ds : 1));
gi.event_cause ()->origin ()->warning (_ ("maybe input should specify polyphonic voices"));
}
Stem::add_head (stem_, gi.grob ());
if (Stem::is_normal_stem (stem_)
&& Stem::duration_log (stem_) > 2
&& !(unsmob<Grob> (stem_->get_object ("flag"))))
{
Item *flag = make_item ("Flag", stem_->self_scm ());
flag->set_parent (stem_, X_AXIS);
stem_->set_object ("flag", flag->self_scm ());
maybe_flags_.push_back (flag);
}
if (tuplet_start_)
stem_->set_property ("tuplet-start", SCM_BOOL_T);
}
void
Stem_engraver::kill_unused_flags ()
{
for (vsize i = 0; i < maybe_flags_.size (); i++)
if (unsmob<Grob> (maybe_flags_[i]->get_parent (X_AXIS)->get_object ("beam")))
maybe_flags_[i]->suicide ();
}
void
Stem_engraver::finalize ()
{
kill_unused_flags ();
}
void
Stem_engraver::stop_translation_timestep ()
{
if (scm_is_string (get_property ("whichBar")))
kill_unused_flags ();
tremolo_ = 0;
if (stem_)
{
/* FIXME: junk these properties. */
SCM prop = get_property ("stemLeftBeamCount");
if (scm_is_number (prop))
{
Stem::set_beaming (stem_, scm_to_int (prop), LEFT);
context ()->unset_property (ly_symbol2scm ("stemLeftBeamCount"));
}
prop = get_property ("stemRightBeamCount");
if (scm_is_number (prop))
{
Stem::set_beaming (stem_, scm_to_int (prop), RIGHT);
context ()->unset_property (ly_symbol2scm ("stemRightBeamCount"));
}
stem_ = 0;
}
tuplet_start_ = false;
tremolo_ev_ = 0;
}
void
Stem_engraver::listen_tuplet_span (Stream_event *ev)
{
Direction dir = to_dir (ev->get_property ("span-direction"));
if (dir == START)
{
// set stem property if stem already exists
if (stem_)
stem_->set_property ("tuplet-start", SCM_BOOL_T);
tuplet_start_ = true; // stash the value for use in later creation
}
}
void
Stem_engraver::listen_tremolo (Stream_event *ev)
{
ASSIGN_EVENT_ONCE (tremolo_ev_, ev);
}
void
Stem_engraver::boot ()
{
ADD_LISTENER (Stem_engraver, tuplet_span);
ADD_LISTENER (Stem_engraver, tremolo);
ADD_ACKNOWLEDGER (Stem_engraver, rhythmic_head);
}
ADD_TRANSLATOR (Stem_engraver,
/* doc */
"Create stems, flags and single-stem tremolos. It also works"
" together with the beam engraver for overriding beaming.",
/* create */
"Flag "
"Stem "
"StemStub "
"StemTremolo ",
/* read */
"stemLeftBeamCount "
"stemRightBeamCount "
"whichBar ",
/* write */
""
);
|