]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/drum-note-performer.cc
*** empty log message ***
[lilypond.git] / lily / drum-note-performer.cc
index e2f8c697eded5e72b6f047e3ff61c939dba7bb38..27d0de7999d0d065869baa78ccf01f9b0aea3813 100644 (file)
@@ -4,21 +4,24 @@
   source file of the GNU LilyPond music typesetter
 
   (c) 1996--2005 Jan Nieuwenhuizen <janneke@gnu.org>
- */
+*/
 
 #include "performer.hh"
 #include "audio-item.hh"
 #include "audio-column.hh"
 #include "global-context.hh"
 #include "warn.hh"
+#include "pitch.hh"
+#include "music.hh"
 
-class Drum_note_performer : public Performer {
+class Drum_note_performer : public Performer
+{
 public:
   TRANSLATOR_DECLARATIONS (Drum_note_performer);
-  
+
 protected:
-  virtual bool try_music (Music *ev) ;
-  virtual void stop_translation_timestep ();
+  virtual bool try_music (Music *ev);
+  void stop_translation_timestep ();
   virtual void create_audio_elements ();
 
 private:
@@ -26,31 +29,36 @@ private:
   Link_array<Audio_note> notes_;
 };
 
-void 
+
+Drum_note_performer::Drum_note_performer ()
+{
+}
+
+void
 Drum_note_performer::create_audio_elements ()
 {
   SCM tab = 0;
   if (!tab) tab = get_property ("drumPitchTable");
-  
+
   while (note_evs_.size ())
     {
-      Musicn = note_evs_.pop ();
+      Music *n = note_evs_.pop ();
       SCM sym = n->get_property ("drum-type");
       SCM defn = SCM_EOL;
 
       if (scm_is_symbol (sym)
-         &&  (scm_hash_table_p (tab) == SCM_BOOL_T))
+         && (scm_hash_table_p (tab) == SCM_BOOL_T))
        defn = scm_hashq_ref (tab, sym, SCM_EOL);
-      
-      if (Pitch * pit = unsmob_pitch (defn))
+
+      if (Pitch *pit = unsmob_pitch (defn))
        {
-         Audio_note* p = new Audio_note (*pit,  n->get_length (), 0);
+         Audio_note *p = new Audio_note (*pit, n->get_length (), 0);
          Audio_element_info info (p, n);
          announce_element (info);
          notes_.push (p);
        }
     }
-  
+
   note_evs_.clear ();
 }
 
@@ -67,9 +75,9 @@ Drum_note_performer::stop_translation_timestep ()
   notes_.clear ();
   note_evs_.clear ();
 }
+
 bool
-Drum_note_performer::try_music (Musicev)
+Drum_note_performer::try_music (Music *ev)
 {
   if (ev->is_mus_type ("note-event"))
     {
@@ -78,14 +86,12 @@ Drum_note_performer::try_music (Music* ev)
     }
   else if (ev->is_mus_type ("busy-playing-event"))
     return note_evs_.size ();
-  
+
   return false;
 }
 
-ADD_TRANSLATOR (Drum_note_performer,
-                 "Play drum notes.", "",
-                 "note-event busy-playing-event", "", "", "");
+#include "translator.icc"
 
-Drum_note_performer::Drum_note_performer ()
-{
-}
+ADD_TRANSLATOR (Drum_note_performer,
+               "Play drum notes.", "",
+               "note-event busy-playing-event", "", "");