1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
/*
midi-walker.cc -- implement Midi_walker
source file of the GNU LilyPond music typesetter
(c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
Jan Nieuwenhuizen <janneke@gnu.org>
*/
#include "midi-walker.hh"
#include "audio-column.hh"
#include "audio-staff.hh"
#include "midi-item.hh"
#include "midi-chunk.hh"
#include "midi-stream.hh"
#include "warn.hh"
Midi_note_event::Midi_note_event ()
{
ignore_ = false;
}
int
compare (Midi_note_event const &left, Midi_note_event const &right)
{
Moment m = (left.key - right.key);
if (m < 0)
return -1;
else if (m > 0)
return 1;
else
return 0;
}
bool
audio_item_less (Audio_item * const a,
Audio_item * const b)
{
return a->get_column ()->when_ < b->get_column ()->when_;
}
Midi_walker::Midi_walker (Audio_staff *audio_staff, Midi_track *track,
int channel)
{
channel_ = channel;
track_ = track;
index_ = 0;
items_ = audio_staff->audio_items_;
vector_sort (items_, audio_item_less);
last_tick_ = 0;
}
Midi_walker::~Midi_walker ()
{
junk_pointers (midi_events_);
}
void
Midi_walker::finalize ()
{
do_stop_notes (INT_MAX);
}
/**
Find out if start_note event is needed, and do it if needed.
*/
void
Midi_walker::do_start_note (Midi_note *note)
{
Audio_item *ptr = items_[index_];
assert (note->audio_ == ptr);
int stop_ticks = int (moment_to_real (note->audio_->length_mom_) * Real (384 * 4))
+ ptr->audio_column_->ticks ();
bool play_start = true;
for (vsize i = 0; i < stop_note_queue.size (); i++)
{
/* if this pith already in queue */
if (stop_note_queue[i].val->get_semitone_pitch ()
== note->get_semitone_pitch ())
{
if (stop_note_queue[i].key < stop_ticks)
{
/* let stopnote in queue be ignored,
new stop note wins */
stop_note_queue[i].ignore_ = true;
/* don't replay start note, */
play_start = false;
break;
}
else
{
/* skip this stopnote,
don't play the start note */
note = 0;
break;
}
}
}
if (note)
{
Midi_note_event e;
e.val = new Midi_note_off (note);
midi_events_.push_back (e.val);
e.key = int (stop_ticks);
stop_note_queue.insert (e);
if (play_start)
output_event (ptr->audio_column_->ticks (), note);
}
}
void
Midi_walker::do_stop_notes (int max_ticks)
{
while (stop_note_queue.size () && stop_note_queue.front ().key <= max_ticks)
{
Midi_note_event e = stop_note_queue.get ();
if (e.ignore_)
{
continue;
}
int stop_ticks = e.key;
Midi_note *note = e.val;
output_event (stop_ticks, note);
}
}
void
Midi_walker::output_event (int now_ticks, Midi_item *l)
{
int delta_ticks = now_ticks - last_tick_;
last_tick_ = now_ticks;
/*
this is not correct, but at least it doesn't crash when you
start with graces
*/
if (delta_ticks < 0)
{
programming_error ("Going back in MIDI time.");
delta_ticks = 0;
}
track_->add (delta_ticks, l);
}
void
Midi_walker::process ()
{
Audio_item *audio = items_[index_];
do_stop_notes (audio->audio_column_->ticks ());
if (Midi_item *midi = get_midi (audio))
{
if (Midi_channel_item *mci = dynamic_cast<Midi_channel_item*> (midi))
mci->channel_ = channel_;
if (Midi_note *note = dynamic_cast<Midi_note *> (midi))
{
if (note->audio_->length_mom_.to_bool ())
do_start_note (note);
}
else
output_event (audio->audio_column_->ticks (), midi);
}
}
Midi_item*
Midi_walker::get_midi (Audio_item *i)
{
Midi_item *mi = Midi_item::get_midi (i);
midi_events_.push_back (mi);
return mi;
}
bool
Midi_walker::ok () const
{
return index_ < items_.size ();
}
void
Midi_walker::operator ++ (int)
{
assert (ok ());
index_++;
}
|