]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/midi-walker.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / midi-walker.hh
index 5bdea63b14d507930f4a864f328ba397eaecf967..a01add8f1e1d41daa337111893747abae3adf941 100644 (file)
@@ -1,31 +1,49 @@
 /*
   midi-walker.hh -- declare Midi_walker
 
-  (c) 1996,97 Han-Wen Nienhuys, Jan Nieuwenhuizen <jan@digicash.com>
-  */
-
-#ifndef MIDIWALKER_HH
-#define MIDIWALKER_HH
+  (c) 1996--2006 Han-Wen Nienhuys  <hanwen@xs4all.nl>
+  Jan Nieuwenhuizen <janneke@gnu.org>
+*/
 
+#ifndef MIDI_WALKER_HH
+#define MIDI_WALKER_HH
 
+#include "pqueue.hh"
 #include "lily-proto.hh"
+#include "moment.hh"
 
-#if 0
-
-/* 
-   sketch. . .
-
-   It would be totally cool to share code with the Engraver hierarchy,
-   but this is very tough i think.
-   
-   */
-
-class Voice_performer_group_performer : public Performer_group_performer {
-
+struct Midi_note_event : PQueue_ent<Moment, Midi_note *>
+{
+  bool ignore_b_;
+  Midi_note_event ();
 };
 
-#endif
-
-#endif // MIDIWALKER_HH
-
+int compare (Midi_note_event const &left, Midi_note_event const &right);
+
+/**
+   walk audio and output midi
+*/
+class Midi_walker
+{
+public:
+  Midi_walker (Audio_staff *audio_staff, Midi_track *midi_track);
+  ~Midi_walker ();
+
+  void process ();
+  void operator ++ (int);
+  bool ok () const;
+
+private:
+  void do_start_note (Midi_note *note);
+  void do_stop_notes (Moment now_mom);
+  void output_event (Moment now_mom, Midi_item *l);
+
+  Midi_track *track_;
+  Audio_staff *staff_;
+  vsize index_;
+  vector<Audio_item*> *items_;
+  PQueue<Midi_note_event> stop_note_queue;
+  Moment last_mom_;
+};
 
+#endif // MIDI_WALKER_HH