]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/midi-walker.hh
release: 1.5.29
[lilypond.git] / lily / include / midi-walker.hh
index e7c26380f48a33ceb04b973d7351dc6e6415b273..ee839339976820e6127043e5c6e4562497536e64 100644 (file)
@@ -1,41 +1,50 @@
 /*
   midi-walker.hh -- declare Midi_walker
 
-  (c) 1996,97 Han-Wen Nienhuys, Jan Nieuwenhuizen <jan@digicash.com>
-  */
+  (c) 1996--2002 Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+                 Jan Nieuwenhuizen <janneke@gnu.org>
+ */
 
-#ifndef MIDIWALKER_HH
-#define MIDIWALKER_HH
+#ifndef MIDI_WALKER_HH
+#define MIDI_WALKER_HH
 
-#include "proto.hh"
-#include "grouping.hh"
-#include "staff-walker.hh"
-#include "pcursor.hh"
 #include "pqueue.hh"
+#include "lily-proto.hh"
+#include "moment.hh"
 
+struct Midi_note_event : PQueue_ent<Moment, Midi_note*>
+{
+  bool ignore_b_;
+  Midi_note_event ();
+};
 
-/**
-  a simple walker which collects midi stuff, and then outputs.
+int compare (Midi_note_event const& left, Midi_note_event const& right);
 
-  Should derive from Staff_walker
+/**
+  walk audio and output midi
   */
-class Midi_walker : public PCursor<Staff_column*> {
-    Midi_track *track_l_;
-    PQueue<Melodic_req*, Moment> stop_notes;
-    Moment last_moment_;
-
-    /* *************** */
-    void do_stop_notes(Moment);
-    
-    void output_event(Midi_item&, Moment);
+class Midi_walker
+{
 public:
-    
-    Midi_walker(Staff*, Midi_track*);
-    void process_requests();
-    ~Midi_walker();
+  Midi_walker (Audio_staff* audio_staff_l, Midi_track* midi_track_l);
+  ~Midi_walker ();
+
+  void process ();
+  void operator ++ (int);
+  bool ok () const;
+
+private:
+  void do_start_note (Midi_note* note_p);
+  void do_stop_notes (Moment now_mom);
+  void output_event (Moment now_mom, Midi_item* l);
+  
+  Midi_track* track_l_;
+  Audio_staff* staff_l_;
+  int index_;
+  Link_array<Audio_item> * item_l_arr_l_;
+  PQueue<Midi_note_event> stop_note_queue;
+  Moment last_mom_;
 };
 
 
-#endif // MIDIWALKER_HH
-
-
+#endif // MIDI_WALKER_HH