]> git.donarmstrong.com Git - lilypond.git/blob - lily/timing-translator.cc
release: 1.3.73
[lilypond.git] / lily / timing-translator.cc
1 /*
2   timing-translator.cc -- implement Timing_translator
3
4
5   source file of the GNU LilyPond music typesetter
6
7   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
9
10 #include "debug.hh"
11 #include "timing-translator.hh"
12 #include "command-request.hh"
13 #include "translator-group.hh"
14 #include "global-translator.hh"
15 #include "multi-measure-rest.hh"
16
17 /*
18   TODO: change the rest of lily, so communication with
19   Timing_translator is only done through properties.  This means the
20   class declaration can go here.  */
21
22 bool
23 Timing_translator::do_try_music (Music*r)
24 {
25   if (Timing_req *t =  dynamic_cast <Timing_req *> (r))
26     {
27       for (int i=0; i < timing_req_l_arr_.size (); i++)
28         {
29           /*
30             merge timing reqs.
31            */
32           if (timing_req_l_arr_[i]->equal_b(t))
33             return true;
34           if (String (classname (timing_req_l_arr_[i])) == classname (r))
35             {
36               r->origin ()->warning (_ ("conflicting timing request"));
37               timing_req_l_arr_[i]->origin ()->warning (_("This is the other timing request")); 
38               return false;
39             }
40         }
41     
42       timing_req_l_arr_.push(t);
43       return true;
44     }
45   return false;
46 }
47
48 /*ugh.
49  */
50 Time_signature_change_req*
51 Timing_translator::time_signature_req_l() const
52 {
53   Time_signature_change_req *m_l=0;
54   for (int i=0; !m_l && i < timing_req_l_arr_.size (); i++)
55     {
56       m_l=dynamic_cast<Time_signature_change_req*> (timing_req_l_arr_[i]);
57     }
58   return m_l;
59 }
60
61 void
62 Timing_translator::do_process_music()
63 {
64   for (int i=0; i < timing_req_l_arr_.size (); i++)
65     {
66       Timing_req * tr_l = timing_req_l_arr_[i];
67
68       if (Time_signature_change_req *m_l = dynamic_cast <Time_signature_change_req *> (tr_l))
69         {
70           int b_i= m_l->beats_i_;
71           int o_i = m_l->one_beat_i_;
72           set_time_signature (b_i, o_i);
73         }
74       else if (dynamic_cast <Barcheck_req *> (tr_l))
75         {
76           if (measure_position ())
77             {
78               tr_l ->origin ()->warning (_f ("barcheck failed at: %s", 
79                                   measure_position ().str ()));
80               // resync
81               daddy_trans_l_->set_property("measurePosition",
82                                            smobify (new Moment));
83
84             }
85         }
86     }
87 }
88
89
90 void
91 Timing_translator::do_pre_move_processing()
92 {
93   timing_req_l_arr_.set_size (0);
94   Translator *t = this;
95   Global_translator *global_l =0;
96   do
97     {
98       t = t->daddy_trans_l_ ;
99       global_l = dynamic_cast<Global_translator*> (t);
100     }
101   while (!global_l);
102
103   /* allbars == ! skipbars */
104   SCM sb = get_property ("skipBars");
105   bool allbars = !to_boolean (sb);
106
107   // urg: multi bar rests: should always process whole of first bar?
108   SCM tim = get_property ("timing");
109   bool timb = to_boolean (tim);
110   if (timb && allbars)
111     {
112       Moment barleft = (measure_length () - measure_position ());
113
114       if (barleft > Moment (0))
115         global_l->add_moment_to_process (now_mom () + barleft);
116     }
117 }
118
119
120 ADD_THIS_TRANSLATOR(Timing_translator);
121
122 void
123 Timing_translator::do_creation_processing()
124 {
125   daddy_trans_l_->set_property ("timing" , SCM_BOOL_T);  
126   daddy_trans_l_->set_property ("currentBarNumber" , gh_int2scm (1));
127   daddy_trans_l_->set_property ("measurePosition", smobify (new Moment));
128   daddy_trans_l_->set_property ("beatLength", smobify (new Moment (1,4)));
129   daddy_trans_l_->set_property ("measureLength", smobify (new Moment (1)));
130 }
131
132 Moment
133 Timing_translator::measure_length () const
134 {
135   SCM l = get_property("measureLength");
136   if (unsmob_moment(l))
137     return *unsmob_moment (l);
138   else
139     return Moment (1);
140 }
141
142
143 void
144 Timing_translator::set_time_signature (int l, int o)
145 {
146   Moment one_beat = Moment (1)/Moment (o);
147   Moment len = Moment (l) * one_beat;
148   daddy_trans_l_->set_property ("measureLength", smobify (new Moment (len)));
149   daddy_trans_l_->set_property ("beatLength", smobify (new Moment (one_beat)));
150 }
151
152 Timing_translator::Timing_translator()
153 {
154 }
155
156
157 Moment
158 Timing_translator::measure_position () const
159 {
160   SCM sm = get_property ("measurePosition");
161   
162   Moment m   =0;
163   if (SMOB_IS_TYPE_B (Moment, sm))
164     {
165       m = *SMOB_TO_TYPE (Moment, sm);
166       while (m < Moment (0))
167         m += measure_length ();
168     }
169   
170   return m;
171 }
172
173 void
174 Timing_translator::do_post_move_processing()
175 {
176   Translator *t = this;
177   Global_translator *global_l =0;
178   do
179     {
180       t = t->daddy_trans_l_ ;
181       global_l = dynamic_cast<Global_translator*> (t);
182     }
183   while (!global_l);
184
185   Moment dt = global_l->now_mom_  - global_l -> prev_mom_;
186   if (dt < Moment (0))
187     {
188       programming_error ("Moving backwards in time");
189       dt = 0;
190     }
191   
192   if (!dt)
193     return;
194
195   Moment * measposp =0;
196
197   SCM s = get_property ("measurePosition");
198   if (SMOB_IS_TYPE_B (Moment, s))
199     {
200       measposp = SMOB_TO_TYPE (Moment,s);
201     }
202   else
203     {
204       measposp = new Moment;
205       daddy_trans_l_->set_property ("measurePosition", smobify (measposp));
206     }
207   
208   *measposp += dt;
209   // don't need to set_property
210   
211   SCM barn = get_property ("currentBarNumber");
212   int b = 0;
213   if (gh_number_p(barn))
214     {
215       b = gh_scm2int (barn);
216     }
217
218   SCM cad = get_property ("timing");
219   bool c= to_boolean (cad );
220
221   Moment len = measure_length ();
222   while (c && *measposp >= len)
223       {
224         *measposp -= len;
225         b ++;
226       }
227
228   daddy_trans_l_->set_property ("currentBarNumber", gh_int2scm (b));
229 }
230