]> git.donarmstrong.com Git - lilypond.git/blob - lily/dynamic-engraver.cc
* lily/hairpin.cc: lengthen hairpin if space is available.
[lilypond.git] / lily / dynamic-engraver.cc
1 /*
2   dynamic-engraver.cc -- implement Dynamic_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "axis-group-interface.hh"
10 #include "context.hh"
11 #include "dimensions.hh"
12 #include "directional-element-interface.hh"
13 #include "engraver.hh"
14 #include "event.hh"
15 #include "group-interface.hh"
16 #include "hairpin.hh"
17 #include "interval.hh"
18 #include "item.hh"
19 #include "slur.hh"
20 #include "note-column.hh"
21 #include "paper-column.hh"
22 #include "script-interface.hh"
23 #include "side-position-interface.hh"
24 #include "staff-symbol-referencer.hh"
25 #include "warn.hh"
26
27 /*
28   TODO:
29
30   * direction of text-dynamic-event if not equal to direction of
31   line-spanner
32
33   - TODO: this engraver is too complicated. We should split it into
34   the handling of the basic grobs and the  linespanner
35
36   - TODO: the line-spanner is not killed after the (de)crescs are
37   finished.
38
39 */
40
41 /**
42    print text & hairpin dynamics.
43  */
44 class Dynamic_engraver : public Engraver
45 {
46   Item *script_;
47   Spanner *line_spanner_;
48   Spanner *slur_;
49   Spanner *cresc_;
50
51   Spanner *finished_line_spanner_;
52   Spanner *finished_cresc_;
53
54   Music *script_ev_;
55   Music *current_cresc_ev_;
56   
57   Drul_array<Music*> accepted_spanreqs_drul_;
58
59   Link_array<Note_column> pending_columns_;
60   Link_array<Grob> pending_elements_;
61   
62   void typeset_all ();
63
64   TRANSLATOR_DECLARATIONS (Dynamic_engraver);
65   
66 protected:
67   virtual void finalize ();
68   virtual void acknowledge_grob (Grob_info);
69   virtual bool try_music (Music *req);
70   virtual void stop_translation_timestep ();
71   virtual void process_music ();  
72 };
73
74
75
76
77 Dynamic_engraver::Dynamic_engraver ()
78 {
79   script_ = 0;
80   slur_ = 0;
81   finished_cresc_ = 0;
82   line_spanner_ = 0;
83   finished_line_spanner_ = 0;
84   current_cresc_ev_ = 0;
85   cresc_ =0;
86
87   script_ev_ = 0;
88   accepted_spanreqs_drul_[START] = 0;
89   accepted_spanreqs_drul_[STOP] = 0;
90 }
91
92 bool
93 Dynamic_engraver::try_music (Music *m)
94 {
95   if (m->is_mus_type ("absolute-dynamic-event"))
96     {
97       /*
98         TODO: probably broken.
99       */
100       script_ev_ = m;
101       return true;
102     }
103   else if (m->is_mus_type ("decrescendo-event")
104            || m->is_mus_type ("crescendo-event"))
105     {
106       Direction d = to_dir (m->get_property ("span-direction"));
107
108       accepted_spanreqs_drul_[d] = m;
109       if (current_cresc_ev_ && d == START)
110         accepted_spanreqs_drul_[STOP] = m;
111       return true;
112     }
113   return false;
114 }
115
116 void
117 Dynamic_engraver::process_music ()
118 {
119   if (accepted_spanreqs_drul_[START] || accepted_spanreqs_drul_[STOP] || script_ev_)
120     {
121       if (!line_spanner_)
122         {
123           Music * rq = accepted_spanreqs_drul_[START];
124           line_spanner_ = make_spanner ("DynamicLineSpanner", rq ? rq->self_scm (): SCM_EOL );
125
126           if (script_ev_)
127             rq =  script_ev_;
128         }
129     }
130   
131   /*
132     During a (de)crescendo, pending event will not be cleared,
133     and a line-spanner will always be created, as \< \! are already
134     two events.
135
136     Note: line-spanner must always have at least same duration
137     as (de)crecsendo, b.o. line-breaking.
138   */
139
140   
141
142   /*
143     maybe we should leave dynamic texts to the text-engraver and
144     simply acknowledge them?
145   */
146   if (script_ev_)
147     {
148       script_ = make_item ("DynamicText", script_ev_->self_scm ());
149       script_->set_property ("text",
150                              script_ev_->get_property ("text"));
151
152       
153       if (Direction d = to_dir (script_ev_->get_property ("direction")))
154         set_grob_direction (line_spanner_, d);
155
156       Axis_group_interface::add_element (line_spanner_, script_);
157     }
158
159   Music *stop_ev = accepted_spanreqs_drul_ [STOP] ?
160     accepted_spanreqs_drul_[STOP] : script_ev_;
161
162   if (accepted_spanreqs_drul_[STOP] || script_ev_)
163     {
164       /*
165         finish side position alignment if the (de)cresc ends here, and
166         there are no new dynamics.
167        */
168
169
170       if (cresc_)
171         {
172           assert (!finished_cresc_ && cresc_);
173
174           cresc_->set_bound (RIGHT, script_
175                                ? script_
176                                : unsmob_grob (get_property ("currentMusicalColumn")));
177           add_bound_item (line_spanner_, cresc_->get_bound (RIGHT));
178           
179
180           finished_cresc_ = cresc_;
181           cresc_ = 0;
182           current_cresc_ev_ = 0;
183         }
184       else if (accepted_spanreqs_drul_[STOP])
185         {
186           accepted_spanreqs_drul_[STOP]->origin ()->warning (_ ("can't find start of (de)crescendo"));
187           stop_ev = 0;
188         }
189       
190     }
191   
192   if (accepted_spanreqs_drul_[START])
193     {
194       if (current_cresc_ev_)
195         {
196           String msg = _ ("already have a decrescendo");
197           if (current_cresc_ev_->is_mus_type ("decrescendo-event"))
198             msg = _ ("already have a crescendo");
199
200           accepted_spanreqs_drul_[START]->origin ()->warning (msg);
201           current_cresc_ev_->origin ()->warning (_("Cresc started here"));
202         }
203       else
204         {
205           current_cresc_ev_ = accepted_spanreqs_drul_[START];
206
207           if (Direction d = to_dir (current_cresc_ev_->get_property ("direction")))
208             set_grob_direction (line_spanner_, d);
209
210           /*
211             TODO: Use symbols.
212           */
213
214           String start_type = 
215             ly_symbol2string (current_cresc_ev_->get_property ("name"));
216
217           /*
218             ugh. Use push/pop?
219           */
220           if (start_type == "DecrescendoEvent")
221             start_type = "decrescendo";
222           else if (start_type == "CrescendoEvent")
223             start_type = "crescendo";
224           
225           SCM s = get_property ((start_type + "Spanner").to_str0 ());
226           if (!scm_is_symbol (s) || s == ly_symbol2scm ("hairpin"))
227             {
228               cresc_  = make_spanner ("Hairpin", accepted_spanreqs_drul_[START]->self_scm ());
229               if (finished_cresc_)
230                 {
231                   Pointer_group_interface::add_grob (finished_cresc_,
232                                                      ly_symbol2scm ("adjacent-hairpins"),
233                                                      cresc_);
234                   
235                   Pointer_group_interface::add_grob (cresc_,
236                                                      ly_symbol2scm ("adjacent-hairpins"),
237                                                      finished_cresc_);
238                 }
239               cresc_->set_property ("grow-direction",
240                                     scm_int2num ((start_type == "crescendo")
241                                                  ? BIGGER : SMALLER));
242               
243             }
244
245           
246           /*
247             This is a convenient (and legacy) interface to TextSpanners
248             for use in (de)crescendi.
249             Hmm.
250           */
251           else
252             {
253               cresc_  = make_spanner ("DynamicTextSpanner", accepted_spanreqs_drul_[START]->self_scm ());
254               cresc_->set_property ("style", s);
255               context ()->set_property ((start_type
256                                          + "Spanner").to_str0 (), SCM_EOL);
257               s = get_property ((start_type + "Text").to_str0 ());
258               /*
259                 FIXME: use get_markup () to check type.
260               */
261               if (scm_is_string (s) || ly_c_pair_p (s))
262                 {
263                   cresc_->set_property ("edge-text",
264                                         scm_cons (s, scm_makfrom0str ("")));
265                   context ()->set_property ((start_type + "Text").to_str0 (),
266                                             SCM_EOL);
267                 }
268             }
269
270           cresc_->set_bound (LEFT, script_
271                              ? script_
272                              : unsmob_grob (get_property ("currentMusicalColumn")));
273
274           Axis_group_interface::add_element (line_spanner_, cresc_);
275
276           add_bound_item (line_spanner_, cresc_->get_bound (LEFT));
277         }
278     }
279 }
280
281 void
282 Dynamic_engraver::stop_translation_timestep ()
283 {
284   typeset_all ();
285   if (!current_cresc_ev_)
286     {
287       
288       finished_line_spanner_ = line_spanner_;
289       line_spanner_ = 0;
290       typeset_all ();
291     }
292
293   script_ev_ = 0;
294   accepted_spanreqs_drul_[START] = 0;
295   accepted_spanreqs_drul_[STOP] = 0;
296 }
297
298 void
299 Dynamic_engraver::finalize ()
300 {
301   typeset_all ();
302   
303   if (line_spanner_
304       && !line_spanner_->is_live ())
305     line_spanner_ = 0;
306   if (line_spanner_)
307     {
308       finished_line_spanner_ = line_spanner_;
309       typeset_all ();
310     }
311
312   if (cresc_
313       && !cresc_->is_live ())
314     cresc_ = 0;
315   if (cresc_)
316     {
317       current_cresc_ev_->origin ()->warning (_ ("unterminated (de)crescendo"));
318       cresc_->suicide ();
319       cresc_ = 0;
320     }
321 }
322
323 void
324 Dynamic_engraver::typeset_all ()
325 {
326   if (finished_cresc_)
327     {
328       if (!finished_cresc_->get_bound (RIGHT))
329         {
330           finished_cresc_->set_bound (RIGHT, script_
331                                       ? script_
332                                       : unsmob_grob (get_property ("currentMusicalColumn")));
333           
334           if (finished_line_spanner_)
335             add_bound_item (finished_line_spanner_,
336                             finished_cresc_->get_bound (RIGHT));
337         }
338       finished_cresc_ =0;
339     }
340   
341   script_ = 0;
342   if (finished_line_spanner_)
343     {
344       /*
345         We used to have
346         
347              extend-spanner-over-elements (finished_line_spanner_);
348
349         but this is rather kludgy, since finished_line_spanner_
350         typically has a staff-symbol field set , extending it over the
351         entire staff.
352
353       */
354
355       Grob * l = finished_line_spanner_->get_bound (LEFT);
356       Grob * r = finished_line_spanner_->get_bound (RIGHT);      
357       if (!r && l)
358         finished_line_spanner_->set_bound (RIGHT, l);
359       else if (!l && r)
360         finished_line_spanner_->set_bound (LEFT, r);
361       else if (!r && !l)
362         {
363           /*
364             This is a isolated dynamic apparently, and does not even have
365             any interesting support item.
366            */
367           Grob * cc = unsmob_grob (get_property ("currentMusicalColumn"));
368           Item * ci = dynamic_cast<Item*>(cc);
369           finished_line_spanner_->set_bound (RIGHT, ci);
370           finished_line_spanner_->set_bound (LEFT, ci);   
371         }
372         
373       finished_line_spanner_ = 0;
374     }
375 }
376
377 void
378 Dynamic_engraver::acknowledge_grob (Grob_info info)
379 {
380   if (!line_spanner_)
381     return;
382
383   if (Note_column::has_interface (info.grob_))
384     {
385       if (line_spanner_
386           /* Don't refill killed spanner */
387           && line_spanner_->is_live ())
388         {
389           Side_position_interface::add_support (line_spanner_,info.grob_);
390           add_bound_item (line_spanner_,dynamic_cast<Item*> (info.grob_));
391         }
392
393       if (script_ && !script_->get_parent (X_AXIS))
394         {
395           SCM head = scm_last_pair (info.grob_->get_property ("note-heads"));
396           if (ly_c_pair_p (head))
397             script_->set_parent (unsmob_grob (ly_car (head)),  X_AXIS);
398         }
399     }
400   else if (Script_interface::has_interface (info.grob_) && script_)
401     {
402       SCM p = info.grob_->get_property ("script-priority");
403
404       /*
405         UGH.
406
407         DynamicText doesn't really have a script-priority field.
408        */
409       if (scm_is_number (p)
410           && scm_to_int (p)
411           < scm_to_int (script_->get_property ("script-priority")))
412         Side_position_interface::add_support (line_spanner_, info.grob_);
413     }
414   else if (Slur::has_interface (info.grob_))
415     slur_ = dynamic_cast<Spanner*> (info.grob_);
416 }
417
418 ENTER_DESCRIPTION (Dynamic_engraver,
419 /* descr */       
420 "This engraver creates hairpins, dynamic texts, and their vertical\n"
421 "alignments.  The symbols are collected onto a DynamicLineSpanner grob\n"
422 "which takes care of vertical positioning.  "
423 ,
424                   
425 /* creats*/       "DynamicLineSpanner DynamicText Hairpin TextSpanner",
426 /* accepts */     "absolute-dynamic-event crescendo-event decrescendo-event",
427 /* acks  */      "note-column-interface script-interface slur-interface",
428 /* reads */       "",
429 /* write */       "");