]> git.donarmstrong.com Git - lilypond.git/blob - lily/dynamic-engraver.cc
release: 1.1.28
[lilypond.git] / lily / dynamic-engraver.cc
1 /*
2   dynamic-reg.cc -- implement Dynamic_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8 #include "debug.hh"
9 #include "crescendo.hh"
10 #include "dynamic-engraver.hh"
11 #include "musical-request.hh"
12 #include "lookup.hh"
13 #include "paper-def.hh"
14 #include "score-column.hh"
15 #include "staff-sym.hh"
16 #include "note-column.hh"
17 #include "g-text-item.hh"
18 #include "g-staff-side.hh"
19 #include "engraver.hh"
20 #include "stem.hh"
21 #include "note-head.hh"
22
23 /**
24    print text & hairpin dynamics.
25  */
26 class Dynamic_engraver : public Engraver
27 {
28   G_text_item * text_p_;
29   G_staff_side_item * staff_side_p_;
30   
31   Crescendo * to_end_cresc_p_;
32   Crescendo * cresc_p_;
33   Span_dynamic_req * cresc_req_l_;
34   Array<Dynamic_req*> dynamic_req_l_arr_;
35   void  typeset_all ();
36 public:
37   VIRTUAL_COPY_CONS(Translator);
38   Dynamic_engraver();
39   
40 protected:
41   virtual void do_removal_processing ();
42   virtual void acknowledge_element (Score_element_info);
43   virtual bool do_try_music (Music *req_l);
44   virtual void do_process_requests();
45   virtual void do_pre_move_processing();
46   virtual void do_post_move_processing();
47 };
48
49
50
51 Dynamic_engraver::Dynamic_engraver()
52 {
53   do_post_move_processing();
54   text_p_ =0;
55   staff_side_p_ =0;
56   to_end_cresc_p_ = cresc_p_ = 0;
57   cresc_req_l_ = 0;
58 }
59
60 void
61 Dynamic_engraver::do_post_move_processing()
62 {
63   dynamic_req_l_arr_.clear();
64 }
65
66 bool
67 Dynamic_engraver::do_try_music (Music * r)
68 {
69   if(Dynamic_req * d = dynamic_cast <Dynamic_req *> (r))
70     {
71       for (int i=0; i < dynamic_req_l_arr_.size (); i++)
72         if (d->equal_b (dynamic_req_l_arr_[i]))
73           return true;
74       
75       dynamic_req_l_arr_.push (d);
76       return true;
77     }
78   return false;
79 }
80 void
81 Dynamic_engraver::do_process_requests()
82 {
83   Crescendo*  new_cresc_p=0;
84   for (int i=0; i < dynamic_req_l_arr_.size(); i++)
85     {
86       Dynamic_req *dreq_l = dynamic_req_l_arr_[i];
87       if (Absolute_dynamic_req *absd = dynamic_cast<Absolute_dynamic_req *> (dreq_l))
88         {
89           if (text_p_)
90             {
91               dynamic_req_l_arr_[i]->warning (_("Got a dynamic already.  Continuing dazed and confused"));
92               continue;
93             }
94           
95           String loud = absd->loudness_str_;
96
97           text_p_ = new G_text_item;
98           text_p_->text_str_ =  loud; // ugh
99           Scalar prop = get_property ("dynamicStyle", 0);
100
101           text_p_->style_str_ = prop.length_i () ? prop :  "dynamic";
102
103           staff_side_p_ = new G_staff_side_item;
104           staff_side_p_->set_victim (text_p_);
105           staff_side_p_->axis_ = Y_AXIS;
106           
107
108           prop = get_property ("dynamicDir", 0);
109           if (prop.isnum_b ())
110             {
111               staff_side_p_->dir_ = (Direction) (int) prop;
112             }
113
114
115           announce_element (Score_element_info (text_p_, dreq_l));
116           announce_element (Score_element_info (staff_side_p_, dreq_l));
117         }
118       else if (Span_dynamic_req *span_l = dynamic_cast <Span_dynamic_req *> (dreq_l))
119         {
120           if (span_l->spantype_ == STOP)
121             {
122               if (!cresc_p_)
123                 {
124                   span_l->warning (_ ("can't find (de)crescendo to end"));
125                 }
126               else
127                 {
128                   assert (!to_end_cresc_p_);
129                   to_end_cresc_p_ =cresc_p_;
130                   cresc_p_ = 0;
131                   Scalar prop = get_property ("dynamicDir", 0);
132                   if (prop.isnum_b ())
133                     {
134                       to_end_cresc_p_->dir_ = (Direction) (int) prop;
135                     }
136                   
137                 }
138             }
139           else if (span_l->spantype_ == START)
140             {
141               cresc_req_l_ = span_l;
142               assert (!new_cresc_p);
143               new_cresc_p  = new Crescendo;
144               new_cresc_p->grow_dir_ = span_l->dynamic_dir_;
145               announce_element (Score_element_info (new_cresc_p, span_l));
146             }
147         }
148     }
149
150   if (new_cresc_p)
151     {
152       if (cresc_p_)
153         {
154           ::warning (_ ("Too many crescendi here"));
155           typeset_element (cresc_p_);
156           cresc_p_ = 0;
157         }
158       
159       cresc_p_ = new_cresc_p;
160       cresc_p_->set_bounds(LEFT,get_staff_info().musical_l ());
161       if (text_p_)
162         {
163           cresc_p_->dyn_b_drul_[LEFT] = true;
164           if (to_end_cresc_p_)
165             to_end_cresc_p_->dyn_b_drul_[RIGHT] = true;
166         }
167     }
168 }
169
170 void
171 Dynamic_engraver::do_pre_move_processing()
172 {
173   Staff_symbol* s_l = get_staff_info().staff_sym_l_;
174   if (to_end_cresc_p_)
175     to_end_cresc_p_->add_support (s_l);
176   if (staff_side_p_)
177     {
178       staff_side_p_->add_support (s_l);
179       //      staff_side_p_->dim_cache_[Y_AXIS].parent_l_ =  &s_l->dim_cache_[Y_AXIS];
180     }
181
182   typeset_all ();
183 }
184
185
186
187 ADD_THIS_TRANSLATOR(Dynamic_engraver);
188
189 void
190 Dynamic_engraver::do_removal_processing ()
191 {
192   if (cresc_p_)
193     {
194       typeset_element (cresc_p_ );
195       cresc_req_l_->warning (_ ("unended crescendo"));
196       cresc_p_ =0;
197     }
198   typeset_all ();
199 }
200
201
202 void
203 Dynamic_engraver::typeset_all ()
204 {  
205   if (to_end_cresc_p_)
206     {
207       to_end_cresc_p_->set_bounds(RIGHT,get_staff_info().musical_l ());
208       typeset_element (to_end_cresc_p_);
209       to_end_cresc_p_ =0;
210     }
211   if (text_p_)
212     {
213       typeset_element (text_p_);
214       typeset_element (staff_side_p_);
215       text_p_ =0;
216       staff_side_p_ =0;
217     }
218 }
219
220
221 void
222 Dynamic_engraver::acknowledge_element (Score_element_info i)
223 {
224   if (dynamic_cast<Stem *> (i.elem_l_)
225       || dynamic_cast<Note_head *> (i.elem_l_)
226       )
227     {
228       if (staff_side_p_)
229         staff_side_p_->add_support (i.elem_l_);
230
231       if (to_end_cresc_p_)
232         to_end_cresc_p_->add_support (i.elem_l_);
233
234       if (cresc_p_)
235         cresc_p_->add_support (i.elem_l_);
236     }
237 }