]> git.donarmstrong.com Git - lilypond.git/blobdiff - mi2mu/mudela-voice.cc
release: 1.0.1
[lilypond.git] / mi2mu / mudela-voice.cc
index 6f91c8ff256cc742a07ba1b142a0c2ae6fb32166..6f92d03f2257fd3a4e8258dba6db7d2c79f06d63 100644 (file)
@@ -1,7 +1,7 @@
 //
 // mudela-voice.cc -- implement Mudela_voice
 //
-// copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
+// copyright 1997 Jan Nieuwenhuizen <janneke@gnu.org>
 
 #include "string-convert.hh"
 #include "mi2mu-global.hh"
@@ -26,14 +26,14 @@ Moment
 Mudela_voice::begin_mom()
 {
   return mudela_item_l_list_.size() ? 
-       mudela_item_l_list_.top()->at_mom() : Moment (0);
+    mudela_item_l_list_.top()->at_mom() : Moment (0);
 }
 
 Moment 
 Mudela_voice::end_mom()
 {
   return mudela_item_l_list_.size() ? 
-       mudela_item_l_list_.bottom()->at_mom() : Moment (0);
+    mudela_item_l_list_.bottom()->at_mom() : Moment (0);
 }
 
 static int const FAIRLY_LONG_VOICE_i = 6;
@@ -42,36 +42,36 @@ void
 Mudela_voice::output (Mudela_stream& mudela_stream_r)
 {
   if  (!mudela_item_l_list_.size())
-       return;
+    return;
   
   if  (mudela_item_l_list_.size() > FAIRLY_LONG_VOICE_i)
-       mudela_stream_r << "\n";
+    mudela_stream_r << '\n';
 
   int current_bar_i = 0;
-  Moment bar_mom = mudela_staff_l_->mudela_meter_l_->bar_mom();
+  Moment bar_mom = mudela_staff_l_->mudela_time_signature_l_->bar_mom();
 
   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  (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;
-         }
+      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  (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;
+      mudela_stream_r << **i;
     }
 
   if  (mudela_item_l_list_.size() > FAIRLY_LONG_VOICE_i)
-       mudela_stream_r << "\n";
+    mudela_stream_r << '\n';
 }