X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fmidi-walker.hh;fp=lily%2Finclude%2Fmidi-walker.hh;h=3d99b34021659bacee447eed8af898d7c30d265e;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=2ee7cc941797ce75cbbc55d53663f21bab695ead;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/lily/include/midi-walker.hh b/lily/include/midi-walker.hh index 2ee7cc9417..3d99b34021 100644 --- a/lily/include/midi-walker.hh +++ b/lily/include/midi-walker.hh @@ -1,8 +1,21 @@ /* - midi-walker.hh -- declare Midi_walker + This file is part of LilyPond, the GNU music typesetter. - (c) 1996--2009 Han-Wen Nienhuys + Copyright (C) 1996--2011 Han-Wen Nienhuys Jan Nieuwenhuizen + + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #ifndef MIDI_WALKER_HH @@ -26,22 +39,22 @@ int compare (Midi_note_event const &left, Midi_note_event const &right); class Midi_walker { public: - Midi_walker (Audio_staff *audio_staff, Midi_track *midi_track, - int channel); + Midi_walker (Audio_staff *audio_staff, Midi_track *midi_track); ~Midi_walker (); void process (); void operator ++ (int); bool ok () const; void finalize (); + private: 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_; + bool percussion_; + bool merge_unisons_; vsize index_; vector items_; PQueue stop_note_queue;