X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmidi-walker.cc;h=48c408aaa76a2c4309e0da79396db896e5328745;hb=d26be70e8f3942df6f13e25a7f79321b9b98d1a8;hp=38fbad9953ee8ae359ce5aefce614688e0e0ccb9;hpb=711bbb9b9608ccd3ef2e876ab0c13af181fde283;p=lilypond.git diff --git a/lily/midi-walker.cc b/lily/midi-walker.cc index 38fbad9953..48c408aaa7 100644 --- a/lily/midi-walker.cc +++ b/lily/midi-walker.cc @@ -3,8 +3,8 @@ source file of the GNU LilyPond music typesetter - (c) 1997 Han-Wen Nienhuys - Jan Nieuwenhuizen + (c) 1997--1999 Han-Wen Nienhuys + Jan Nieuwenhuizen */ #include "midi-walker.hh" @@ -27,9 +27,10 @@ compare (Midi_note_event const& left, Midi_note_event const& right) } Midi_walker::Midi_walker (Audio_staff* audio_staff_l, Midi_track* track_l) - : PCursor(audio_staff_l->audio_item_l_list_) { track_l_ = track_l; + index_= 0; + item_l_arr_l_ = &audio_staff_l->audio_item_l_arr_; last_mom_ = 0; } @@ -45,24 +46,28 @@ Midi_walker::~Midi_walker() void Midi_walker::do_start_note (Midi_note* note_p) { - Moment stop_mom = note_p->duration() + ptr ()->audio_column_l_->at_mom (); + Audio_item* ptr = (*item_l_arr_l_)[index_]; + Moment stop_mom = note_p->length_mom () + ptr->audio_column_l_->at_mom (); for (int i=0; i < stop_note_queue.size(); i++) { - if (stop_note_queue[ i ].val->pitch_i() == note_p->pitch_i ()) - { - if (stop_note_queue[ i ].key < stop_mom) - stop_note_queue[ i ].ignore_b_ = true; - else // skip the stopnote - return; + if (stop_note_queue[i].val->pitch_i() == note_p->pitch_i ()) + { + if (stop_note_queue[i].key < stop_mom) + stop_note_queue[i].ignore_b_ = true; + else { + // skip the stopnote + delete note_p; + return; } + } } Midi_note_event e; e.val = new Midi_note_off (note_p); e.key = stop_mom; stop_note_queue.insert (e); - - output_event (ptr()->audio_column_l_->at_mom (), note_p); + + output_event (ptr->audio_column_l_->at_mom (), note_p); } /** @@ -73,14 +78,17 @@ Midi_walker::do_stop_notes (Moment max_mom) { while (stop_note_queue.size() && stop_note_queue.front ().key <= max_mom) { - Midi_note_event e = stop_note_queue.get(); - if (e.ignore_b_) - continue; + Midi_note_event e = stop_note_queue.get(); + if (e.ignore_b_) + { + delete e.val; + continue; + } + + Moment stop_mom = e.key; + Midi_note* note_p = e.val; - Moment stop_mom = e.key; - Midi_note_off* note_p = e.val; - - output_event (stop_mom, note_p); + output_event (stop_mom, note_p); } } @@ -98,16 +106,35 @@ Midi_walker::output_event (Moment now_mom, Midi_item* l) void Midi_walker::process() { - do_stop_notes (ptr()->audio_column_l_->at_mom ()); + Audio_item* audio_p = (*item_l_arr_l_)[index_]; + do_stop_notes (audio_p->audio_column_l_->at_mom ()); - Midi_item* p = ptr()->midi_item_p (); - if (!p) - return; - p->channel_i_ = track_l_->number_i_; - - if (p->name() != Midi_note::static_name ()) - output_event (ptr()->audio_column_l_->at_mom (), p); - else - do_start_note ((Midi_note*)p); + /* + THIS IS A MEMORY LEAK. FIXME. + */ + //Midi_item* p = ptr->midi_item_p (); + if (Midi_item* midi_p = Midi_item::midi_p (audio_p)) + { + midi_p->channel_i_ = track_l_->number_i_; + if (Midi_note* note_p = dynamic_cast(midi_p)) + { + if (note_p->length_mom ()) + do_start_note (note_p); + } + else + output_event (audio_p->audio_column_l_->at_mom (), midi_p); + } } +bool +Midi_walker::ok () const +{ + return index_ size (); +} + +void +Midi_walker::operator ++(int) +{ + assert (ok()); + index_++; +}