]> git.donarmstrong.com Git - lilypond.git/blob - lily/beam-engraver.cc
* scm/titling.scm (default-score-title): remove caps for piece.
[lilypond.git] / lily / beam-engraver.cc
1 /*   
2   beam-engraver.cc --  implement Beam_engraver
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "engraver.hh"
11 #include "event.hh"
12 #include "beam.hh"
13 #include "stem.hh"
14 #include "warn.hh"
15 #include "beaming.hh"
16 #include "score-engraver.hh"
17 #include "rest.hh"
18 #include "drul-array.hh"
19 #include "item.hh"
20 #include "spanner.hh"
21 #include "context.hh"
22
23 class Beam_engraver : public Engraver
24 {
25 protected:  
26   Music * start_ev_;
27   
28   Spanner *finished_beam_;
29   Spanner *beam_;
30   Music * prev_start_ev_;
31
32   Music * now_stop_ev_;
33   
34   Beaming_info_list * beam_info_;
35   Beaming_info_list * finished_beam_info_;  
36
37   /// location  within measure where beam started.
38   Moment beam_start_location_;
39
40   /// moment (global time) where beam started.
41   Moment beam_start_mom_;
42
43   bool subdivide_beams_;
44   Moment beat_length_;
45
46   void typeset_beam ();
47   void set_melisma (bool);
48
49   Moment last_stem_added_at_;
50   virtual void stop_translation_timestep ();
51   virtual void start_translation_timestep ();
52   virtual void finalize ();
53
54   virtual void acknowledge_grob (Grob_info);
55   virtual bool try_music (Music*);
56   virtual void process_music ();
57
58   virtual bool valid_start_point ();
59   virtual bool valid_end_point ();
60   
61 public:
62   TRANSLATOR_DECLARATIONS (Beam_engraver);
63 };
64
65
66 /*
67   Hmm. this isn't necessary, since grace beams and normal beams are
68   always nested.
69  */
70 bool
71 Beam_engraver::valid_start_point ()
72 {
73   Moment n = now_mom ();
74
75   return n.grace_part_ == Rational (0);
76 }
77
78 bool
79 Beam_engraver::valid_end_point ()
80 {
81   return valid_start_point ();
82 }
83
84 Beam_engraver::Beam_engraver ()
85 {
86   beam_ = 0;
87   finished_beam_ =0;
88   finished_beam_info_=0;
89   beam_info_ =0;
90   now_stop_ev_ = 0;
91   start_ev_ = 0;
92   prev_start_ev_ =0;
93 }
94
95 bool
96 Beam_engraver::try_music (Music *m)
97 {
98   if (m->is_mus_type ("beam-event"))
99     {
100       Direction d = to_dir (m->get_property ("span-direction"));
101       if (d == START && !valid_start_point ())
102         return false;
103       if (d == STOP && !valid_end_point ())
104         return false;
105
106       if (d == START)
107         {
108           start_ev_ = m;
109         }
110       else if (d==STOP)
111         {
112           now_stop_ev_ = m;
113         }
114       return true;
115     }
116   return false;
117 }
118
119 void
120 Beam_engraver::set_melisma (bool ml)
121 {
122   SCM b = get_property ("autoBeaming");
123   if (!to_boolean (b))
124     context ()->set_property ("beamMelismaBusy", ml ? SCM_BOOL_T :SCM_BOOL_F);
125 }
126
127 void
128 Beam_engraver::process_music ()
129 {
130   if (beam_ && !to_boolean (get_property ("allowBeamBreak")))
131     {
132       get_score_engraver ()->forbid_breaks ();
133     }
134
135   if (start_ev_)
136     {
137       if (beam_)
138         {
139           start_ev_->origin ()->warning (_ ("already have a beam"));
140           return;
141         }
142
143       set_melisma (true);
144       prev_start_ev_ = start_ev_;
145       beam_ = make_spanner ("Beam", start_ev_->self_scm ());
146       Moment mp (robust_scm2moment (get_property ("measurePosition"), Moment (0));
147
148       beam_start_location_ = mp;
149       beam_start_mom_ = now_mom ();
150       
151       beam_info_ = new Beaming_info_list;
152       
153       /* urg, must copy to Auto_beam_engraver too */
154     }
155
156 }
157
158
159 void
160 Beam_engraver::typeset_beam ()
161 {
162   if (finished_beam_)
163     {
164       finished_beam_info_->beamify (beat_length_, subdivide_beams_);
165       Beam::set_beaming (finished_beam_, finished_beam_info_);
166       
167       delete finished_beam_info_;
168       finished_beam_info_ =0;
169       finished_beam_ = 0;
170     }
171 }
172
173 void
174 Beam_engraver::start_translation_timestep ()
175 {
176   start_ev_ = 0;
177   
178   if (beam_)
179     {
180       set_melisma (true);
181       
182       subdivide_beams_ = to_boolean (get_property ("subdivideBeams"));
183       beat_length_ = robust_scm2moment (get_property ("beatLength"), Moment (1,4));
184     }
185 }
186
187 void
188 Beam_engraver::stop_translation_timestep ()
189 {
190   typeset_beam ();
191   if (now_stop_ev_ )
192     {
193       finished_beam_ = beam_;
194       finished_beam_info_ = beam_info_;
195
196       now_stop_ev_ = 0;
197       beam_ = 0;
198       beam_info_ = 0;
199       typeset_beam ();
200       set_melisma (false);
201     }
202 }
203
204 void
205 Beam_engraver::finalize ()
206 {
207   typeset_beam ();
208   if (beam_)
209     {
210       prev_start_ev_->origin ()->warning (_ ("unterminated beam"));
211
212       /*
213         we don't typeset it, (we used to, but it was commented
214         out. Reason unknown) */
215       beam_->suicide ();
216       delete beam_info_;
217     }
218 }
219
220 void
221 Beam_engraver::acknowledge_grob (Grob_info info)
222 {
223   if (beam_)
224     {
225       if (Rest::has_interface (info.grob_))
226         {
227           info.grob_->add_offset_callback (Beam::rest_collision_callback_proc, Y_AXIS);
228         }
229       else if (Stem::has_interface (info.grob_))
230         {
231           Moment now = now_mom ();
232
233           if (!valid_start_point ())
234             return ;
235           
236           Item *stem = dynamic_cast<Item*> (info.grob_);
237           if (Stem::get_beam (stem))
238             return;
239
240           Music* m = info.music_cause ();
241           if (!m->is_mus_type ("rhythmic-event"))
242             {
243               String s = _ ("stem must have Rhythmic structure");
244               if (info.music_cause ())
245                 info.music_cause ()->origin ()->warning (s);
246               else
247                 ::warning (s);
248           
249               return;
250             }
251
252
253           last_stem_added_at_ = now;
254           int durlog  = unsmob_duration (m->get_property ("duration"))-> duration_log ();
255           if (durlog <= 2)
256             {
257               m->origin ()->warning (_ ("stem doesn't fit in beam"));
258               prev_start_ev_->origin ()->warning (_ ("beam was started here"));
259               /*
260                 don't return, since
261
262                 [r4 c8] can just as well be modern notation.
263               */
264             }
265
266           stem->set_property ("duration-log",
267                                     scm_int2num (durlog));
268           Moment stem_location = now - beam_start_mom_ + beam_start_location_;
269           beam_info_->add_stem (stem_location,
270  (durlog- 2) >? 0);
271           Beam::add_stem (beam_, stem);
272         }
273     }
274 }
275
276
277
278
279
280 ENTER_DESCRIPTION (Beam_engraver,
281 /* descr */       "Handles Beam events by engraving Beams.    If omitted, then notes will be "
282 "printed with flags instead of beams.",
283 /* creats*/       "Beam",
284 /* accepts */     "beam-event",
285 /* acks  */      "stem-interface rest-interface",
286 /* reads */       "beamMelismaBusy beatLength subdivideBeams",
287 /* write */       "");
288
289
290 class Grace_beam_engraver : public Beam_engraver
291 {
292 public:
293   TRANSLATOR_DECLARATIONS (Grace_beam_engraver);  
294
295 protected:
296   virtual bool valid_start_point ();
297   virtual bool valid_end_point ();
298 };
299
300 Grace_beam_engraver::Grace_beam_engraver ()
301 {
302 }
303
304 bool
305 Grace_beam_engraver::valid_start_point ()
306 {
307   Moment n = now_mom ();
308
309   return n.grace_part_ != Rational (0);
310 }
311
312
313 bool
314 Grace_beam_engraver::valid_end_point ()
315 {
316   return beam_ && valid_start_point ();
317 }
318
319
320
321 ENTER_DESCRIPTION (Grace_beam_engraver,
322 /* descr */       "Handles Beam events by engraving Beams.  If omitted, then notes will "
323 "be printed with flags instead of beams. Only engraves beams when we "
324 " are at grace points in time. "
325 ,
326 /* creats*/       "Beam",
327 /* accepts */     "beam-event",
328 /* acks  */      "stem-interface rest-interface",
329 /* reads */       "beamMelismaBusy beatLength allowBeamBreak subdivideBeams",
330 /* write */       "");
331