2 midi-track-parser.cc -- implement
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1998 Jan Nieuwenhuizen <janneke@gnu.org>
10 #include "string-convert.hh"
11 #include "mi2mu-global.hh"
12 #include "midi-track-parser.hh"
13 #include "mudela-column.hh"
14 #include "mudela-item.hh"
15 #include "mudela-score.hh"
16 #include "mudela-staff.hh"
18 Midi_track_parser::Midi_track_parser (Midi_parser_info
* info_l
, int i
)
23 mudela_staff_p_
= new Mudela_staff (i
, "", "", "");
28 Midi_track_parser::~Midi_track_parser ()
30 delete mudela_staff_p_
;
35 Midi_track_parser::at_mom ()
41 Midi_track_parser::eot ()
43 if ( info_l_
->byte_L_
< info_l_
->end_byte_L_
)
49 Midi_track_parser::note_end (Mudela_column
* col_l
, int channel_i
, int pitch_i
, int aftertouch_i
)
56 for (PCursor
<Mudela_note
*> i (open_note_l_list_
.top ()); i
.ok (); )
58 if ((i
->pitch_i_
== pitch_i
) && (i
->channel_i_
== channel_i
))
60 i
->end_column_l_
= col_l
;
61 // LOGOUT(DEBUG_ver) << "Note: " << pitch_i;
62 // LOGOUT(DEBUG_ver) << "; " << i->mudela_column_l_->at_mom_;
63 // LOGOUT(DEBUG_ver) << ", " << i->end_column_l_->at_mom_ << '\n';
70 warning (_f ("junking note-end event: channel = %d, pitch = %d",
75 Midi_track_parser::note_end_all (Mudela_column
* col_l
)
79 for (PCursor
<Mudela_note
*> i (open_note_l_list_
.top ()); i
.ok (); )
81 i
->end_column_l_
= col_l
;
87 Midi_track_parser::parse (Mudela_column
* col_l
)
89 Moment mom
= at_mom ();
90 while (!eot () && (mom
== at_mom ()))
92 Mudela_item
* p
= parse_event (col_l
);
94 mudela_staff_p_
->add_item (p
);
101 note_end_all (col_l
);
103 Mudela_staff
* p
= mudela_staff_p_
;
109 Midi_track_parser::parse_delta_time ()
113 int delta_i
= get_var_i ();
114 at_mom_
+= Moment (delta_i
, info_l_
->division_1_i_
);
118 Midi_track_parser::parse_event (Mudela_column
* col_l
)
120 Byte byte
= peek_byte ();
121 // RUNNING_STATUS [\x00-\x5f]
124 if (running_byte_
<= 0x5f)
125 exit (_ ("invalid running status"));
127 'running status' rather means 'missing status'.
128 we'll just pretend we read the running status byte.
130 byte
= running_byte_
;
135 Mudela_item
* item_p
= 0;
136 // DATA_ENTRY [\x60-\x79]
137 if ((byte
>= 0x60) && (byte
<= 0x79))
141 // ALL_NOTES_OFF [\x7a-\x7f]
142 else if ((byte
>= 0x7a) && (byte
<= 0x7f))
146 note_end_all (col_l
);
148 // NOTE_OFF [\x80-\x8f]
149 else if ((byte
>= 0x80) && (byte
<= 0x8f))
151 running_byte_
= byte
;
152 int channel_i
= byte
& ~0x90;
153 int pitch_i
= (int)next_byte ();
154 int dyn_i
= (int)next_byte ();
155 note_end (col_l
, channel_i
, pitch_i
, dyn_i
);
157 // NOTE_ON [\x90-\x9f]
158 else if ((byte
>= 0x90) && (byte
<= 0x9f))
160 running_byte_
= byte
;
161 int channel_i
= byte
& ~0x90;
162 int pitch_i
= (int)next_byte ();
163 int dyn_i
= (int)next_byte ();
165 sss: some broken devices encode NOTE_OFF as
166 NOTE_ON with zero volume
170 Mudela_note
* p
= new Mudela_note (col_l
, channel_i
, pitch_i
, dyn_i
);
172 open_note_l_list_
.bottom ().add (p
);
176 note_end (col_l
, channel_i
, pitch_i
, dyn_i
);
179 // POLYPHONIC_AFTERTOUCH [\xa0-\xaf]
180 else if ((byte
>= 0xa0) && (byte
<= 0xaf))
182 running_byte_
= byte
;
186 // CONTROLMODE_CHANGE [\xb0-\xbf]
187 else if ((byte
>= 0xb0) && (byte
<= 0xbf))
189 running_byte_
= byte
;
193 // PROGRAM_CHANGE [\xc0-\xcf]
194 else if ((byte
>= 0xc0) && (byte
<= 0xcf))
196 running_byte_
= byte
;
199 // CHANNEL_AFTERTOUCH [\xd0-\xdf]
200 else if ((byte
>= 0xd0) && (byte
<= 0xdf))
202 running_byte_
= byte
;
206 // PITCHWHEEL_RANGE [\xe0-\xef]
207 else if ((byte
>= 0xe0) && (byte
<= 0xef))
209 running_byte_
= byte
;
213 // SYSEX_EVENT1 [\xf0]
214 else if (byte
== 0xf0)
216 int length_i
= get_var_i ();
217 String str
= get_str (length_i
);
219 // SYSEX_EVENT2 [\xf7]
220 else if (byte
== 0xf7)
222 int length_i
= get_var_i ();
223 String str
= get_str (length_i
);
226 else if (byte
== 0xff)
228 // SEQUENCE [\x00][\x02]
236 // YYCOPYRIGHT [\x02]
237 // YYTRACK_NAME [\x03]
238 // YYINSTRUMENT_NAME [\x04]
241 // YYCUE_POINT [\x07]
242 else if ((byte
>= 0x01) && (byte
<= 0x07))
244 // LOGOUT (DEBUG_ver) << "\n% Text(" << (int)byte << "):" << flush;
245 int length_i
= get_var_i ();
246 String str
= get_str (length_i
);
247 // LOGOUT (DEBUG_ver) << str << endl;
248 Mudela_text::Type t
= (Mudela_text::Type
)byte
;
249 Mudela_text
* p
= new Mudela_text (t
, str
);
251 if (t
== Mudela_text::COPYRIGHT
)
252 mudela_staff_p_
->copyright_str_
= p
->text_str_
;
253 else if (t
== Mudela_text::TRACK_NAME
)
254 mudela_staff_p_
->name_str_
= p
->text_str_
;
255 else if (t
== Mudela_text::INSTRUMENT_NAME
)
256 mudela_staff_p_
->instrument_str_
= p
->text_str_
;
258 // END_OF_TRACK [\x2f][\x00]
261 Byte next
= peek_byte ();
262 if ((byte
== 0x2f) && (next
== 0x00))
265 info_l_
->byte_L_
= info_l_
->end_byte_L_
;
267 // TEMPO [\x51][\x03]
268 else if ((byte
== 0x51) && (next
== 0x03))
271 unsigned useconds_per_4_u
= get_u (3);
272 // $$ = new Mudela_tempo ( ($2 << 16) + ($3 << 8) + $4);
273 // LOGOUT (DEBUG_ver) << $$->str() << endl;
274 Mudela_tempo
* p
= new Mudela_tempo ( useconds_per_4_u
);
276 info_l_
->score_l_
->mudela_tempo_l_
= p
;
277 mudela_staff_p_
->mudela_tempo_l_
= p
;
279 // SMPTE_OFFSET [\x54][\x05]
280 else if ((byte
== 0x54) && (next
== 0x05))
290 else if ((byte
== 0x58) && (next
== 0x04))
293 int num_i
= (int)next_byte ();
294 int den_i
= (int)next_byte ();
295 int clocks_4_i
= (int)next_byte ();
296 int count_32_i
= (int)next_byte ();
297 Mudela_time_signature
* p
= new Mudela_time_signature ( num_i
, den_i
, clocks_4_i
, count_32_i
);
299 info_l_
->score_l_
->mudela_time_signature_l_
= p
;
300 info_l_
->bar_mom_
= p
->bar_mom ();
301 mudela_staff_p_
->mudela_time_signature_l_
= p
;
304 else if ((byte
== 0x59) && (next
== 0x02))
307 int accidentals_i
= (int)next_byte ();
308 int minor_i
= (int)next_byte ();
309 Mudela_key
* p
= new Mudela_key (accidentals_i
, minor_i
);
311 info_l_
->score_l_
->mudela_key_l_
= p
;
312 mudela_staff_p_
->mudela_key_l_
= p
;
314 // SSME [\0x7f][\x03]
315 else if ((byte
== 0x7f) && (next
== 0x03))
318 int length_i
= get_var_i ();
319 String str
= get_str (length_i
);
320 item_p
= new Mudela_text ((Mudela_text::Type
)byte
, str
);
326 warning (_ ("unimplemented MIDI meta-event"));
331 exit (_ ("invalid MIDI event"));
334 item_p
->mudela_column_l_
= col_l
;
342 Midi_track_parser::parse_header ()
344 String str
= get_str (4);
346 exit (_ ("MIDI track expected"));
348 int length_i
= get_i (4);
351 exit (_ ("invalid track length"));
352 assert (!track_info_p_
);
353 track_info_p_
= new Midi_parser_info (*info_l_
);
354 track_info_p_
->end_byte_L_
= track_info_p_
->byte_L_
+ length_i
;
355 forward_byte_L (length_i
);
356 // forward_byte_L (length_i-1);
357 info_l_
= track_info_p_
;