X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fmidi-walker.hh;h=138b47dbb3de94e6a56e8ab7b43cdee3e9c28230;hb=1cd3b2484a4095d4e3fb6422dbc695a1a1219eea;hp=c7a20f76ace44ee60a397c26da9ae26c9336799f;hpb=69b9cead5afe7164b9053d26eba582fec3825ef8;p=lilypond.git diff --git a/lily/include/midi-walker.hh b/lily/include/midi-walker.hh index c7a20f76ac..138b47dbb3 100644 --- a/lily/include/midi-walker.hh +++ b/lily/include/midi-walker.hh @@ -1,48 +1,49 @@ /* midi-walker.hh -- declare Midi_walker - (c) 1996, 1997--1998 Han-Wen Nienhuys - Jan Nieuwenhuizen - */ + (c) 1996--2005 Han-Wen Nienhuys + Jan Nieuwenhuizen +*/ #ifndef MIDI_WALKER_HH #define MIDI_WALKER_HH -#include "proto.hh" -#include "plist.hh" -#include "pcursor.hh" #include "pqueue.hh" #include "lily-proto.hh" #include "moment.hh" -struct Midi_note_event : PQueue_ent +struct Midi_note_event : PQueue_ent { - bool ignore_b_; - Midi_note_event(); + bool ignore_b_; + Midi_note_event (); }; -int compare (Midi_note_event const& left, Midi_note_event const& right); +int compare (Midi_note_event const &left, Midi_note_event const &right); /** - walk audio and output midi - */ -class Midi_walker : public PCursor + walk audio and output midi +*/ +class Midi_walker { public: - Midi_walker (Audio_staff* audio_staff_l, Midi_track* midi_track_l); - ~Midi_walker(); + Midi_walker (Audio_staff *audio_staff, Midi_track *midi_track); + ~Midi_walker (); - void process(); + 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_; - PQueue stop_note_queue; - Moment last_mom_; + 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_; + int index_; + Link_array *items_; + PQueue stop_note_queue; + Moment last_mom_; }; - #endif // MIDI_WALKER_HH