]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/midi-walker.hh
Run grand-replace (issue 3765)
[lilypond.git] / lily / include / midi-walker.hh
index 86e82a009a0d99ee1042b79858b97367e79d8e74..a59e94c0b8c743de285bbfc9d6de52d7f8e73ec3 100644 (file)
@@ -1,8 +1,21 @@
 /*
-  midi-walker.hh -- declare Midi_walker
+  This file is part of LilyPond, the GNU music typesetter.
 
-  (c) 1996--2008 Han-Wen Nienhuys  <hanwen@xs4all.nl>
+  Copyright (C) 1996--2014 Han-Wen Nienhuys  <hanwen@xs4all.nl>
   Jan Nieuwenhuizen <janneke@gnu.org>
+
+  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 <http://www.gnu.org/licenses/>.
 */
 
 #ifndef MIDI_WALKER_HH
@@ -26,28 +39,28 @@ 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);
+  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_item *get_midi (Audio_item *);
   Midi_track *track_;
-  Audio_staff *staff_;
+  bool percussion_;
+  bool merge_unisons_;
   vsize index_;
-  vector<Audio_item*> items_;
+  vector<Audio_item *> items_;
   PQueue<Midi_note_event> stop_note_queue;
   int last_tick_;
 
-  vector<Midi_item*> midi_events_;
+  vector<Midi_item *> midi_events_;
 };
 
 #endif // MIDI_WALKER_HH