]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.9
authorfred <fred>
Sun, 24 Mar 2002 19:54:07 +0000 (19:54 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:54:07 +0000 (19:54 +0000)
mi2mu/mudela-voice.cc

index 5fd2704726cbd3c9fdb447cf18722f37a02a2a2d..a22844b86b73961dfe22f66f7618962be952119f 100644 (file)
 
 Mudela_voice::Mudela_voice (Mudela_staff* mudela_staff_l)
 {
-    mudela_staff_l_ = mudela_staff_l;
+  mudela_staff_l_ = mudela_staff_l;
 }
 
 void
 Mudela_voice::add_item (Mudela_item* mudela_item_l)
 {
-    mudela_item_l_list_.bottom().add (mudela_item_l);
+  mudela_item_l_list_.bottom().add (mudela_item_l);
 }
 
 Moment 
 Mudela_voice::begin_mom()
 {
-    return mudela_item_l_list_.size() ? 
+  return mudela_item_l_list_.size() ? 
        mudela_item_l_list_.top()->at_mom() : Moment (0);
 }
 
 Moment 
 Mudela_voice::end_mom()
 {
-    return mudela_item_l_list_.size() ? 
+  return mudela_item_l_list_.size() ? 
        mudela_item_l_list_.bottom()->at_mom() : Moment (0);
 }
 
@@ -41,34 +41,37 @@ static int const FAIRLY_LONG_VOICE_i = 6;
 void
 Mudela_voice::output (Mudela_stream& mudela_stream_r)
 {
-    if  (!mudela_item_l_list_.size())
+  if  (!mudela_item_l_list_.size())
        return;
-    
-    if  (mudela_item_l_list_.size() > FAIRLY_LONG_VOICE_i)
+  
+  if  (mudela_item_l_list_.size() > FAIRLY_LONG_VOICE_i)
        mudela_stream_r << "\n";
 
-    int current_bar_i = 0;
-    Moment bar_mom = mudela_staff_l_->mudela_meter_p_->bar_mom();
+  int current_bar_i = 0;
+  Moment bar_mom = mudela_staff_l_->mudela_meter_p_->bar_mom();
 
-    for  (PCursor<Mudela_item*> i (mudela_item_l_list_); i.ok(); i++) {
+  for  (PCursor<Mudela_item*> i (mudela_item_l_list_); i.ok(); i++) 
+    {
        Moment at_mom = i->mudela_column_l_->at_mom();
        int bar_i = (int) (at_mom / bar_mom) + 1;
-       if  (bar_i > current_bar_i) {
-           if  (current_bar_i) {
+       if  (bar_i > current_bar_i) 
+         {
+           if  (current_bar_i) 
+             {
                if  (at_mom == Moment (bar_i - 1) * bar_mom)
                    mudela_stream_r << "|";
                mudela_stream_r << "\n% ";
                mudela_stream_r << String_convert::i2dec_str (bar_i, 0, ' ');
                mudela_stream_r << "\n";
-           }
+             }
            LOGOUT(NORMAL_ver) << '[' << bar_i << ']' << flush; 
            current_bar_i = bar_i;
-       }
+         }
 
-       mudela_stream_r << i->str();
+       mudela_stream_r << **i;
     }
 
-    if  (mudela_item_l_list_.size() > FAIRLY_LONG_VOICE_i)
+  if  (mudela_item_l_list_.size() > FAIRLY_LONG_VOICE_i)
        mudela_stream_r << "\n";
 }