]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/midi-item.cc
* flower
[lilypond.git] / lily / midi-item.cc
index 60d711e11be51845566e9798f8ee065c1903b808..564b5057c07c49f5590409d8e45afedb682cebdb 100644 (file)
@@ -4,7 +4,7 @@
   source file of the GNU LilyPond music typesetter
 
   (c) 1997--2005 Jan Nieuwenhuizen <janneke@gnu.org>
- */
+*/
 
 #include "midi-item.hh"
 
 #include "scm-option.hh"
 #include "killing-cons.tcc"
 
-#define PITCH_WHEEL_TOP    0x3FFF
+#define PITCH_WHEEL_TOP 0x3FFF
 #define PITCH_WHEEL_CENTER 0x2000
 #define PITCH_WHEEL_BOTTOM 0x0000
-#define PITCH_WHEEL_RANGE  (PITCH_WHEEL_TOP - PITCH_WHEEL_BOTTOM)
+#define PITCH_WHEEL_RANGE (PITCH_WHEEL_TOP - PITCH_WHEEL_BOTTOM)
 
-Midi_item*
-Midi_item::get_midi (Audio_itema)
+Midi_item *
+Midi_item::get_midi (Audio_item *a)
 {
-  if (Audio_key* i = dynamic_cast<Audio_key*> (a))
+  if (Audio_key *i = dynamic_cast<Audio_key *> (a))
     return new Midi_key (i);
-  else if (Audio_instrument* i = dynamic_cast<Audio_instrument*> (a))
+  else if (Audio_instrument *i = dynamic_cast<Audio_instrument *> (a))
     return i->str_.length () ? new Midi_instrument (i) : 0;
-  else if (Audio_note* i = dynamic_cast<Audio_note*> (a))
+  else if (Audio_note *i = dynamic_cast<Audio_note *> (a))
     return new Midi_note (i);
-  else if (Audio_dynamic* i = dynamic_cast<Audio_dynamic*> (a))
+  else if (Audio_dynamic *i = dynamic_cast<Audio_dynamic *> (a))
     return new Midi_dynamic (i);
-  else if (Audio_piano_pedal* i = dynamic_cast<Audio_piano_pedal*> (a))
+  else if (Audio_piano_pedal *i = dynamic_cast<Audio_piano_pedal *> (a))
     return new Midi_piano_pedal (i);
-  else if (Audio_tempo* i = dynamic_cast<Audio_tempo*> (a))
+  else if (Audio_tempo *i = dynamic_cast<Audio_tempo *> (a))
     return new Midi_tempo (i);
-  else if (Audio_time_signature* i = dynamic_cast<Audio_time_signature*> (a))
+  else if (Audio_time_signature *i = dynamic_cast<Audio_time_signature *> (a))
     return new Midi_time_signature (i);
-  else if (Audio_text* i = dynamic_cast<Audio_text*> (a))
+  else if (Audio_text *i = dynamic_cast<Audio_text *> (a))
     //return i->text_string_.length () ? new Midi_text (i) : 0;
     return new Midi_text (i);
   else
@@ -56,7 +56,7 @@ Midi_chunk::set (String header_string, String data_string, String footer_string)
   footer_string_ = footer_string;
   header_string_ = header_string;
 }
-  
+
 String
 Midi_chunk::data_string () const
 {
@@ -68,8 +68,8 @@ Midi_chunk::to_string () const
 {
   String str = header_string_;
   String dat = data_string ();
-  String length_string = String_convert::int2hex (dat.length () 
-    + footer_string_.length (), 8, '0');
+  String length_string = String_convert::int2hex (dat.length ()
+                                                 + footer_string_.length (), 8, '0');
   length_string = String_convert::hex2bin (length_string);
   str += length_string;
   str += dat;
@@ -88,7 +88,7 @@ Midi_duration::to_string () const
   return String ("<duration: ") + ::to_string (seconds_) + ">";
 }
 
-Midi_event::Midi_event (Moment delta_mom, Midi_itemmidi)
+Midi_event::Midi_event (Moment delta_mom, Midi_item *midi)
 {
   delta_mom_ = delta_mom;
   midi_ = midi;
@@ -96,12 +96,12 @@ Midi_event::Midi_event (Moment delta_mom, Midi_item* midi)
 
 /*
   ugh. midi output badly broken since grace note hackage.
- */
+*/
 String
 Midi_event::to_string () const
 {
-  Rational rat_dt = (delta_mom_.main_part_ * Rational (384) +
-    delta_mom_.grace_part_ * Rational (100))*Rational (4);
+  Rational rat_dt = (delta_mom_.main_part_ * Rational (384)
+                    + delta_mom_.grace_part_ * Rational (100))*Rational (4);
   int delta_i = int (rat_dt);
 
   String delta_string = Midi_item::i2varint_string (delta_i);
@@ -110,11 +110,10 @@ Midi_event::to_string () const
   return delta_string + midi_string;
 }
 
-
 Midi_header::Midi_header (int format_i, int tracks_i, int clocks_per_4_i)
 {
   String str;
-       
+
   String format_string = String_convert::int2hex (format_i, 4, '0');
   str += String_convert::hex2bin (format_string);
        
@@ -127,7 +126,7 @@ Midi_header::Midi_header (int format_i, int tracks_i, int clocks_per_4_i)
   set ("MThd", str, "");
 }
 
-Midi_instrument::Midi_instrument (Audio_instrumenta)
+Midi_instrument::Midi_instrument (Audio_instrument *a)
 {
   audio_ = a;
   audio_->str_.to_lower ();
@@ -141,14 +140,14 @@ Midi_instrument::to_string () const
 
   /*
     UGH. don't use eval.
-   */
+  */
   SCM proc = ly_lily_module_constant ("midi-program");
   SCM program = scm_call_1 (proc, ly_symbol2scm (audio_->str_.to_str0 ()));
   found = (program != SCM_BOOL_F);
   if (found)
     program_byte = scm_to_int (program);
   else
-      warning (_f ("no such MIDI instrument: `%s'", audio_->str_.to_str0 ()));
+    warning (_f ("no such MIDI instrument: `%s'", audio_->str_.to_str0 ()));
 
   String str = ::to_string ((char) (0xc0 + channel_)); //YIKES! FIXME: Should be track. -rz
   str += ::to_string ((char)program_byte);
@@ -168,7 +167,7 @@ String
 Midi_item::i2varint_string (int i)
 {
   int buffer_i = i & 0x7f;
-  while ((i >>= 7) > 0) 
+  while ((i >>= 7) > 0)
     {
       buffer_i <<= 8;
       buffer_i |= 0x80;
@@ -176,7 +175,7 @@ Midi_item::i2varint_string (int i)
     }
 
   String str;
-  while (1) 
+  while (1)
     {
       str += ::to_string ((char)buffer_i);
       if (buffer_i & 0x80)
@@ -187,7 +186,7 @@ Midi_item::i2varint_string (int i)
   return str;
 }
 
-Midi_key::Midi_key (Audio_key*a)
+Midi_key::Midi_key (Audio_key *a)
 {
   audio_ = a;
 }
@@ -254,7 +253,7 @@ Midi_note::get_pitch () const
     {
       warning (_ ("silly pitch"));
       p = 0;
-     }
+    }
   return p;
 }
 
@@ -268,13 +267,13 @@ Midi_note::to_string () const
   // print warning if fine tuning was needed, HJJ
   if (get_fine_tuning () != 0)
     {
-      warning (_f ("Experimental: temporarily fine tuning (of %d cents) a channel.", 
-           get_fine_tuning ()));
+      warning (_f ("Experimental: temporarily fine tuning (of %d cents) a channel.",
+                  get_fine_tuning ()));
 
       finetune = PITCH_WHEEL_CENTER;
       // Move pitch wheel to a shifted position.
       // The pitch wheel range (of 4 semitones) is multiplied by the cents.
-      finetune += (PITCH_WHEEL_RANGE * get_fine_tuning ()) / (4 * 100);
+      finetune += (PITCH_WHEEL_RANGE *get_fine_tuning ()) / (4 * 100);
 
       str += ::to_string ((char) (0xE0 + channel_));
       str += ::to_string ((char) (finetune & 0x7F));
@@ -289,7 +288,7 @@ Midi_note::to_string () const
   return str;
 }
 
-Midi_note_off::Midi_note_off (Midi_noten)
+Midi_note_off::Midi_note_off (Midi_note *n)
   : Midi_note (n->audio_)
 {
   on_ = n;
@@ -298,7 +297,7 @@ Midi_note_off::Midi_note_off (Midi_note* n)
   // Anybody who hears any difference, or knows how this works?
   //  0 should definitely be avoided, notes stick on some sound cards.
   // 64 is supposed to be neutral
-  
+
   aftertouch_byte_ = 64;
 }
 
@@ -316,14 +315,14 @@ Midi_note_off::to_string () const
       // Move pitch wheel back to the central position.
       str += ::to_string ((char) 0x00);
       str += ::to_string ((char) (0xE0 + channel_));
-      str += ::to_string ((char) (PITCH_WHEEL_CENTER & 0x7F));
+      str += ::to_string ((char) (PITCH_WHEEL_CENTER &0x7F));
       str += ::to_string ((char) (PITCH_WHEEL_CENTER >> 7));
     }
 
   return str;
 }
 
-Midi_dynamic::Midi_dynamic (Audio_dynamica)
+Midi_dynamic::Midi_dynamic (Audio_dynamic *a)
 {
   audio_ = a;
 }
@@ -338,9 +337,9 @@ Midi_dynamic::to_string () const
     Main volume controller (per channel):
     07 MSB
     27 LSB
-   */
+  */
   static Real const full_scale = 127;
-  
+
   int volume = (int) (audio_->volume_*full_scale);
   if (volume <= 0)
     volume = 1;
@@ -352,7 +351,7 @@ Midi_dynamic::to_string () const
   return str;
 }
 
-Midi_piano_pedal::Midi_piano_pedal (Audio_piano_pedala)
+Midi_piano_pedal::Midi_piano_pedal (Audio_piano_pedal *a)
 {
   audio_ = a;
 }
@@ -375,7 +374,7 @@ Midi_piano_pedal::to_string () const
   return str;
 }
 
-Midi_tempo::Midi_tempo (Audio_tempoa)
+Midi_tempo::Midi_tempo (Audio_tempo *a)
 {
   audio_ = a;
 }
@@ -411,19 +410,19 @@ Midi_track::Midi_track ()
   //                00 00 00 3B     chunk length (59)
   //        00      FF 58 04 04 02 18 08    time signature
   //        00      FF 51 03 07 A1 20       tempo
-// FF 59 02 sf mi  Key Signature
-//         sf = -7:  7 flats
-//         sf = -1:  1 flat
-//         sf = 0:  key of C
-//         sf = 1:  1 sharp
-//         sf = 7: 7 sharps
-//         mi = 0:  major key
-//         mi = 1:  minor key
+
+  // FF 59 02 sf mi  Key Signature
+  //         sf = -7:  7 flats
+  //         sf = -1:  1 flat
+  //         sf = 0:  key of C
+  //         sf = 1:  1 sharp
+  //         sf = 7: 7 sharps
+  //         mi = 0:  major key
+  //         mi = 1:  minor key
 
   number_ = 0;
-       
-  char constdata_str0 = ""
+
+  char const *data_str0 = ""
     //        "00" "ff58" "0404" "0218" "08"
     // "00" "ff51" "0307" "a120"
     // why a key at all, in midi?
@@ -431,24 +430,24 @@ Midi_track::Midi_track ()
     // "00" "ff59" "02" "00" "00"
     // key: F (scsii-menuetto)
     //                           "00" "ff59" "02" "ff" "00"
-       ;
+    ;
 
   String data_string;
   // only for format 0 (currently using format 1)?
   data_string += String_convert::hex2bin (data_str0);
 
-  char constfooter_str0 = "00" "ff2f" "00";
+  char const *footer_str0 = "00" "ff2f" "00";
   String footer_string = String_convert::hex2bin (footer_str0);
 
   set ("MTrk", data_string, footer_string);
 }
 
-void 
-Midi_track::add (Moment delta_time_mom, Midi_itemmidi)
+void
+Midi_track::add (Moment delta_time_mom, Midi_item *midi)
 {
   assert (delta_time_mom >= Moment (0));
 
-  Midi_event * e = new Midi_event (delta_time_mom, midi);
+  Midi_event *e = new Midi_event (delta_time_mom, midi);
   event_p_list_.append (new Killing_cons<Midi_event> (e, 0));
 }
 
@@ -458,11 +457,11 @@ Midi_track::data_string () const
   String str = Midi_chunk::data_string ();
   if (midi_debug_global_b)
     str += "\n";
-  for (Cons<Midi_event> *i = event_p_list_.head_; i; i = i->next_) 
+  for (Cons<Midi_event> *i = event_p_list_.head_; i; i = i->next_)
     {
       str += i->car_->to_string ();
       if (midi_debug_global_b)
-        str += "\n";
+       str += "\n";
     }
   return str;
 }