2 midi-walker.cc -- implement Midi_walker
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 Jan Nieuwenhuizen <janneke@gnu.org>
10 #include "midi-walker.hh"
12 #include "audio-column.hh"
13 #include "audio-staff.hh"
14 #include "midi-item.hh"
15 #include "midi-chunk.hh"
16 #include "midi-stream.hh"
19 Midi_note_event::Midi_note_event ()
25 compare (Midi_note_event
const &left
, Midi_note_event
const &right
)
27 Moment m
= (left
.key
- right
.key
);
38 audio_item_less (Audio_item
* const a
,
41 return a
->get_column ()->when_
< b
->get_column ()->when_
;
44 Midi_walker::Midi_walker (Audio_staff
*audio_staff
, Midi_track
*track
,
50 items_
= audio_staff
->audio_items_
;
51 vector_sort (items_
, audio_item_less
);
55 Midi_walker::~Midi_walker ()
57 junk_pointers (midi_events_
);
61 Midi_walker::finalize ()
63 do_stop_notes (INT_MAX
);
67 Find out if start_note event is needed, and do it if needed.
70 Midi_walker::do_start_note (Midi_note
*note
)
72 Audio_item
*ptr
= items_
[index_
];
73 assert (note
->audio_
== ptr
);
74 int stop_ticks
= int (moment_to_real (note
->audio_
->length_mom_
) * Real (384 * 4))
75 + ptr
->audio_column_
->ticks ();
77 bool play_start
= true;
78 for (vsize i
= 0; i
< stop_note_queue
.size (); i
++)
80 /* if this pith already in queue */
81 if (stop_note_queue
[i
].val
->get_semitone_pitch ()
82 == note
->get_semitone_pitch ())
84 if (stop_note_queue
[i
].key
< stop_ticks
)
86 /* let stopnote in queue be ignored,
88 stop_note_queue
[i
].ignore_
= true;
90 /* don't replay start note, */
96 /* skip this stopnote,
97 don't play the start note */
107 e
.val
= new Midi_note_off (note
);
109 midi_events_
.push_back (e
.val
);
110 e
.key
= int (stop_ticks
);
111 stop_note_queue
.insert (e
);
114 output_event (ptr
->audio_column_
->ticks (), note
);
119 Midi_walker::do_stop_notes (int max_ticks
)
121 while (stop_note_queue
.size () && stop_note_queue
.front ().key
<= max_ticks
)
123 Midi_note_event e
= stop_note_queue
.get ();
129 int stop_ticks
= e
.key
;
130 Midi_note
*note
= e
.val
;
132 output_event (stop_ticks
, note
);
137 Midi_walker::output_event (int now_ticks
, Midi_item
*l
)
139 int delta_ticks
= now_ticks
- last_tick_
;
140 last_tick_
= now_ticks
;
143 this is not correct, but at least it doesn't crash when you
148 programming_error ("Going back in MIDI time.");
152 track_
->add (delta_ticks
, l
);
156 Midi_walker::process ()
158 Audio_item
*audio
= items_
[index_
];
159 do_stop_notes (audio
->audio_column_
->ticks ());
161 if (Midi_item
*midi
= get_midi (audio
))
163 if (Midi_channel_item
*mci
= dynamic_cast<Midi_channel_item
*> (midi
))
164 mci
->channel_
= channel_
;
166 if (Midi_note
*note
= dynamic_cast<Midi_note
*> (midi
))
168 if (note
->audio_
->length_mom_
.to_bool ())
169 do_start_note (note
);
172 output_event (audio
->audio_column_
->ticks (), midi
);
177 Midi_walker::get_midi (Audio_item
*i
)
179 Midi_item
*mi
= Midi_item::get_midi (i
);
180 midi_events_
.push_back (mi
);
185 Midi_walker::ok () const
187 return index_
< items_
.size ();
191 Midi_walker::operator ++ (int)