X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fmidi-walker.hh;h=8ea8b27b6442b73829c9b68f9e4d2b8a862e11f5;hb=f9214bac21e9926dc3248416f58190c98c4167a9;hp=f732324ece165c5e4c0528a43490702d0a254c00;hpb=434da79e9d7684b2b05fa92a6d808d4ea7933046;p=lilypond.git diff --git a/lily/include/midi-walker.hh b/lily/include/midi-walker.hh index f732324ece..8ea8b27b64 100644 --- a/lily/include/midi-walker.hh +++ b/lily/include/midi-walker.hh @@ -1,50 +1,53 @@ /* midi-walker.hh -- declare Midi_walker - (c) 1996, 1997--1999 Han-Wen Nienhuys - Jan Nieuwenhuizen - */ + (c) 1996--2007 Han-Wen Nienhuys + Jan Nieuwenhuizen +*/ #ifndef MIDI_WALKER_HH #define MIDI_WALKER_HH -#include "proto.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_; + 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 - */ + 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, + int channel); + ~Midi_walker (); - void process(); - void operator ++(int); + void process (); + void operator ++ (int); bool ok () const; + void finalize (); 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 * item_l_arr_l_; + void do_start_note (Midi_note *note); + void do_stop_notes (int); + void output_event (int, Midi_item *l); + Midi_item *get_midi (Audio_item*); + int channel_; + Midi_track *track_; + Audio_staff *staff_; + vsize index_; + vector items_; PQueue stop_note_queue; - Moment last_mom_; -}; + int last_tick_; + vector midi_events_; +}; #endif // MIDI_WALKER_HH