]> git.donarmstrong.com Git - lilypond.git/blob - lily/dynamic-engraver.cc
release: 1.1.38
[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--1999 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-symbol.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_elt_property (script_priority_scm_sym,
105                                            gh_int2scm (100));
106                                            
107           staff_side_p_->set_victim (text_p_);
108           staff_side_p_->axis_ = Y_AXIS;
109           
110
111           prop = get_property ("dynamicDir", 0);
112           if (prop.isnum_b ())
113             {
114               staff_side_p_->dir_ = (Direction) (int) prop;
115             }
116
117
118           announce_element (Score_element_info (text_p_, dreq_l));
119           announce_element (Score_element_info (staff_side_p_, dreq_l));
120         }
121       else if (Span_dynamic_req *span_l
122                = dynamic_cast <Span_dynamic_req *> (dreq_l))
123         {
124           if (span_l->spantype_ == STOP)
125             {
126               if (!cresc_p_)
127                 {
128                   span_l->warning (_ ("can't find (de)crescendo to end"));
129                 }
130               else
131                 {
132                   assert (!to_end_cresc_p_);
133                   to_end_cresc_p_ =cresc_p_;
134                   cresc_p_ = 0;
135                   Scalar prop = get_property ("dynamicDir", 0);
136                   if (prop.isnum_b ())
137                     {
138                       to_end_cresc_p_->dir_ = (Direction) (int) prop;
139                     }
140                   
141                 }
142             }
143           else if (span_l->spantype_ == START)
144             {
145               cresc_req_l_ = span_l;
146               assert (!new_cresc_p);
147               new_cresc_p  = new Crescendo;
148               new_cresc_p->grow_dir_ = span_l->dynamic_dir_;
149               announce_element (Score_element_info (new_cresc_p, span_l));
150             }
151         }
152     }
153
154   if (new_cresc_p)
155     {
156       if (cresc_p_)
157         {
158           ::warning (_ ("Too many crescendi here"));
159           typeset_element (cresc_p_);
160           cresc_p_ = 0;
161         }
162       
163       cresc_p_ = new_cresc_p;
164       cresc_p_->set_bounds(LEFT,get_staff_info().musical_pcol_l ());
165       if (text_p_)
166         {
167           cresc_p_->dyn_b_drul_[LEFT] = true;
168           if (to_end_cresc_p_)
169             to_end_cresc_p_->dyn_b_drul_[RIGHT] = true;
170         }
171     }
172 }
173
174 void
175 Dynamic_engraver::do_pre_move_processing()
176 {
177   typeset_all ();
178 }
179
180
181
182 ADD_THIS_TRANSLATOR(Dynamic_engraver);
183
184 void
185 Dynamic_engraver::do_removal_processing ()
186 {
187   if (cresc_p_)
188     {
189       typeset_element (cresc_p_ );
190       cresc_req_l_->warning (_ ("unended crescendo"));
191       cresc_p_ =0;
192     }
193   typeset_all ();
194 }
195
196
197 void
198 Dynamic_engraver::typeset_all ()
199 {  
200   if (to_end_cresc_p_)
201     {
202       to_end_cresc_p_->set_bounds(RIGHT,get_staff_info().musical_pcol_l ());
203       typeset_element (to_end_cresc_p_);
204       to_end_cresc_p_ =0;
205     }
206   if (text_p_)
207     {
208       typeset_element (text_p_);
209       typeset_element (staff_side_p_);
210       text_p_ =0;
211       staff_side_p_ =0;
212     }
213 }
214
215
216 void
217 Dynamic_engraver::acknowledge_element (Score_element_info i)
218 {
219   if (dynamic_cast<Stem *> (i.elem_l_)
220       || dynamic_cast<Note_head *> (i.elem_l_)
221       )
222     {
223       if (staff_side_p_)
224         staff_side_p_->add_support (i.elem_l_);
225
226       if (to_end_cresc_p_)
227         to_end_cresc_p_->add_support (i.elem_l_);
228
229       if (cresc_p_)
230         cresc_p_->add_support (i.elem_l_);
231     }
232 }