3 Ann Hell Ex Machina - Music Software
4 Copyright (C) 2003/2006 Angel Ortega <angel@triptico.com>
6 midi_song.c - MIDI song event stream management
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 http://www.triptico.com
34 #include <sys/types.h>
44 struct midi_ev_generic
46 song_ev_type type
; /* event type */
47 int msecs
; /* time in milliseconds */
48 int trk_id
; /* track id */
49 int channel
; /* MIDI channel */
52 struct midi_ev_program
54 song_ev_type type
; /* SONG_EV_MIDI_PROGRAM */
58 int program
; /* MIDI program number */
61 struct midi_ev_note_off
63 song_ev_type type
; /* SONG_EV_NOTE_OFF */
67 int note
; /* MIDI note */
70 struct midi_ev_note_on
72 song_ev_type type
; /* SONG_EV_NOTE_ON */
76 int note
; /* MIDI note */
77 int vel
; /* velocity (volume) */
82 struct midi_ev_generic generic
;
83 struct midi_ev_program midi_program
;
84 struct midi_ev_note_on note_on
;
85 struct midi_ev_note_off note_off
;
89 /* the MIDI song stream */
91 static union midi_ev
* midi_song
= NULL
;
92 static int n_midi_ev
= 0;
94 /* the MIDI tracks: just a track/channel table */
96 #define MIDI_TRACK_NUM 256
97 static int track_channel
[MIDI_TRACK_NUM
];
99 /* MIDI message types */
101 #define MIDI_MSG_NOTE_ON 0x90
102 #define MIDI_MSG_NOTE_OFF 0x80
103 #define MIDI_MSG_CONTROLLER 0xB0
104 #define MIDI_MSG_PROGRAM 0xC0
112 ********************/
114 static void add_midi_ev(union midi_ev
* e
)
115 /* adds a MIDI song event */
117 if(e
->generic
.channel
< 0)
120 GROW(midi_song
, n_midi_ev
, union midi_ev
);
123 memcpy(&midi_song
[n_midi_ev
], e
, sizeof(union midi_ev
));
129 static int midi_ev_cmp_by_time(const void * v1
, const void * v2
)
130 /* MIDI song event compare function for qsort(), by time (for playing) */
132 struct midi_ev_generic
* e1
;
133 struct midi_ev_generic
* e2
;
135 e1
= (struct midi_ev_generic
*)v1
; e2
=(struct midi_ev_generic
*)v2
;
137 if(e1
->msecs
== e2
->msecs
)
138 return(e1
->type
- e2
->type
);
140 return(e1
->msecs
- e2
->msecs
);
144 static int midi_song_convert_events(void)
145 /* converts generic song_ev events to MIDI events */
149 int msecs
, msecs_ac
, f_msecs
;
150 double time_ac
, time_ac_m
;
156 /* resets the MIDI stream */
157 if(midi_song
!= NULL
)
169 msecs
= msecs_ac
= f_msecs
= 0;
170 time_ac
= time_ac_m
= 0;
173 /* by default, all channels are 'mute' until
174 a channel is explicitly set */
175 for(n
= 0;n
< MIDI_TRACK_NUM
;n
++)
176 track_channel
[n
] = -1;
178 /* travels the song events generating MIDI song events */
179 for(n
= 0;n
< n_song_ev
;n
++)
181 /* gets the song event */
184 /* calculates the msecs */
185 msecs
= ((e
->generic
.time
- time_ac
) * mspw
) + msecs_ac
;
187 /* generic event data */
188 me
.generic
.type
= e
->generic
.type
;
189 me
.generic
.msecs
= msecs
;
190 me
.generic
.trk_id
= e
->generic
.trk_id
;
192 /* if it's not a generic message, set MIDI channel */
193 if(e
->generic
.trk_id
>= 0)
194 me
.generic
.channel
= track_channel
[e
->generic
.trk_id
];
196 /* account the biggest track number seen */
197 if(b_track
< e
->generic
.trk_id
) b_track
= e
->generic
.trk_id
;
199 switch(e
->generic
.type
)
203 /* updates accumulations */
205 time_ac
= e
->generic
.time
;
207 /* calculates milliseconds-per-whole based on new tempo */
208 mspw
= 1000.0 * 60.0;
209 mspw
/= (e
->tempo
.tempo
/ 4.0);
215 /* just store the values */
218 time_ac_m
= e
->meter
.time
;
222 case SONG_EV_MEASURE
:
224 song_test_measure_boundary(e
->measure
.time
- time_ac_m
,
225 num
, den
, e
->measure
.line
);
228 case SONG_EV_MIDI_CHANNEL
:
230 /* stores the channel for this track */
231 track_channel
[e
->midi_channel
.trk_id
] =
232 e
->midi_channel
.channel
;
237 /* convert to note on / off pairs */
239 me
.note_on
.type
= SONG_EV_NOTE_ON
;
240 me
.note_on
.note
= e
->note
.note
;
241 me
.note_on
.vel
= (int)(e
->note
.vol
* 127.0);
245 msecs
+= (int)(e
->note
.len
* mspw
);
247 me
.note_off
.type
= SONG_EV_NOTE_OFF
;
248 me
.note_off
.msecs
= msecs
;
255 /* move the cursor back */
256 msecs_ac
-= (int)(e
->back
.len
* mspw
);
259 case SONG_EV_MIDI_PROGRAM
:
261 /* set MIDI program (instrument) */
262 me
.midi_program
.program
= e
->midi_program
.program
;
267 case SONG_EV_SS_PITCH_STRETCH
:
268 case SONG_EV_SS_PRINT_WAVE_TEMPO
:
271 case SONG_EV_SS_SUSTAIN
:
272 case SONG_EV_SS_VIBRATO
:
273 case SONG_EV_SS_PORTAMENTO
:
274 case SONG_EV_SS_CHANNEL
:
275 case SONG_EV_SS_EFF_DELAY
:
276 case SONG_EV_SS_EFF_ECHO
:
277 case SONG_EV_SS_EFF_COMB
:
278 case SONG_EV_SS_EFF_ALLPASS
:
279 case SONG_EV_SS_EFF_FLANGER
:
280 case SONG_EV_SS_EFF_WOBBLE
:
281 case SONG_EV_SS_EFF_SQWOBBLE
:
282 case SONG_EV_SS_EFF_HFWOBBLE
:
283 case SONG_EV_SS_EFF_FADER
:
284 case SONG_EV_SS_EFF_REVERB
:
285 case SONG_EV_SS_EFF_FOLDBACK
:
286 case SONG_EV_SS_EFF_OFF
:
288 /* softsynth events are ignored */
291 case SONG_EV_SONG_INFO
:
293 /* song info should be used */
296 case SONG_EV_NOTE_ON
:
297 case SONG_EV_NOTE_OFF
:
300 /* never found in generic song streams */
304 /* store the further time seen */
305 if(f_msecs
< msecs
) f_msecs
= msecs
;
308 /* generates an end of event mark, a time after the last one */
309 me
.generic
.type
= SONG_EV_END
;
310 me
.generic
.msecs
= f_msecs
+ 1000;
313 /* return the number of tracks */
318 int midi_song_play(int skip_secs
)
321 int msecs
, msecs_p
, msecs_d
;
325 unsigned char midimsg
[1024];
329 /* convert the song to MIDI events */
330 n_tracks
= midi_song_convert_events();
333 qsort(midi_song
, n_midi_ev
, sizeof(union midi_ev
), midi_ev_cmp_by_time
);
339 /* calculate the millisecond to start playing */
340 skip_msecs
= skip_secs
* 1000;
342 /* loop the events */
350 if(msecs
% 1000 == 0)
352 int m
= msecs
/ 1000;
353 printf("[%02d:%02d]\r", m
/ 60, m
% 60);
358 /* process all events for this exact time */
359 while(e
->generic
.msecs
== msecs
)
361 switch(e
->generic
.type
)
363 case SONG_EV_NOTE_ON
:
365 midimsg
[mi
++] = MIDI_MSG_NOTE_ON
|e
->note_on
.channel
;
366 midimsg
[mi
++] = e
->note_on
.note
;
367 midimsg
[mi
++] = e
->note_on
.vel
;
371 case SONG_EV_NOTE_OFF
:
373 midimsg
[mi
++] = MIDI_MSG_NOTE_OFF
|e
->note_off
.channel
;
374 midimsg
[mi
++] = e
->note_off
.note
;
379 case SONG_EV_MIDI_PROGRAM
:
381 midimsg
[mi
++] = MIDI_MSG_PROGRAM
|e
->midi_program
.channel
;
382 midimsg
[mi
++] = e
->midi_program
.program
;
392 /* ignore the rest */
403 /* get time of next event */
405 msecs
= e
->generic
.msecs
;
406 msecs_d
= msecs
- msecs_p
;
408 if(msecs
>= skip_msecs
)
410 /* if there are pending messages, write them */
412 write(midi_fd
, midimsg
, mi
);
414 /* calculate the time to sleep */
415 ts
.tv_sec
= (time_t) msecs_d
/ 1000;
416 ts
.tv_nsec
= (long) ((msecs_d
* 1000000) % 1000000000);
418 nanosleep(&ts
, NULL
);
422 if(verbose
>= 1) printf("\n");
428 int midi_device_open(char * devfile
)
431 devfile
= "/dev/midi";
433 return((midi_fd
= open(devfile
, O_WRONLY
)));
437 void midi_device_close(void)