Skip to content

Latest commit

 

History

History
743 lines (700 loc) · 15.2 KB

music.c

File metadata and controls

743 lines (700 loc) · 15.2 KB
 
Oct 21, 1999
Oct 21, 1999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
MIXERLIB: An audio mixer library based on the SDL library
Copyright (C) 1997-1999 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
5635-34 Springhouse Dr.
Pleasanton, CA 94588 (USA)
slouken@devolution.com
*/
Oct 23, 1999
Oct 23, 1999
25
26
#include <stdlib.h>
#include <string.h>
Oct 21, 1999
Oct 21, 1999
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
#include <SDL/SDL_endian.h>
#include <SDL/SDL_audio.h>
#include "mixer.h"
/* The music command hack is UNIX specific */
#ifndef unix
#undef CMD_MUSIC
#endif
#ifdef CMD_MUSIC
#include "music_cmd.h"
#endif
#ifdef WAV_MUSIC
#include "wavestream.h"
#endif
#ifdef MOD_MUSIC
#include "mikmod.h"
#endif
#ifdef MID_MUSIC
#include "timidity.h"
#endif
#ifdef MP3_MUSIC
#include <smpeg/smpeg.h>
static SDL_AudioSpec used_mixer;
#endif
int music_active = 1;
Oct 26, 1999
Oct 26, 1999
56
static int music_stopped = 0;
Oct 21, 1999
Oct 21, 1999
57
58
59
60
61
62
63
static int music_loops = 0;
static char *music_cmd = NULL;
static int samplesize;
static Mix_Music *music_playing = 0;
static int music_volume;
static int music_swap8;
static int music_swap16;
Oct 23, 1999
Oct 23, 1999
64
Oct 21, 1999
Oct 21, 1999
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
struct _Mix_Music {
enum {
MUS_CMD,
MUS_WAV,
MUS_MOD,
MUS_MID,
MUS_MP3
} type;
union {
#ifdef CMD_MUSIC
MusicCMD *cmd;
#endif
#ifdef WAV_MUSIC
WAVStream *wave;
#endif
#ifdef MOD_MUSIC
UNIMOD *module;
#endif
#ifdef MID_MUSIC
MidiSong *midi;
#endif
#ifdef MP3_MUSIC
SMPEG *mp3;
#endif
} data;
Oct 23, 1999
Oct 23, 1999
90
91
92
93
Mix_Fading fading;
int fade_volume;
int fade_length;
Uint32 ticks_fade;
Oct 21, 1999
Oct 21, 1999
94
95
96
97
int error;
};
static int timidity_ok;
Oct 26, 1999
Oct 26, 1999
98
99
static void lowlevel_halt(void);
Oct 21, 1999
Oct 21, 1999
100
101
102
103
104
105
/* Mixing function */
void music_mixer(void *udata, Uint8 *stream, int len)
{
int i;
if ( music_playing ) {
Oct 26, 1999
Oct 26, 1999
106
107
108
109
110
111
112
if ( music_stopped ) {
/* To avoid concurrency problems and the use of mutexes,
the music is always stopped from the sound thread */
lowlevel_halt(); /* This function sets music_playing to NULL */
return;
}
if ( music_playing->fading != MIX_NO_FADING ) {
Oct 23, 1999
Oct 23, 1999
113
114
115
116
117
Uint32 ticks = SDL_GetTicks() - music_playing->ticks_fade;
if( ticks > music_playing->fade_length ) {
if ( music_playing->fading == MIX_FADING_OUT ) {
music_volume = music_playing->fade_volume;
music_playing->fading = MIX_NO_FADING;
Oct 26, 1999
Oct 26, 1999
118
lowlevel_halt();
Oct 23, 1999
Oct 23, 1999
119
120
121
122
123
124
125
126
127
128
129
130
131
return;
}
music_playing->fading = MIX_NO_FADING;
} else {
if ( music_playing->fading == MIX_FADING_OUT ) {
Mix_VolumeMusic((music_playing->fade_volume * (music_playing->fade_length-ticks))
/ music_playing->fade_length);
} else { /* Fading in */
Mix_VolumeMusic((music_playing->fade_volume * ticks)
/ music_playing->fade_length);
}
}
}
Oct 21, 1999
Oct 21, 1999
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
switch (music_playing->type) {
#ifdef CMD_MUSIC
case MUS_CMD:
/* The playing is done externally */
break;
#endif
#ifdef WAV_MUSIC
case MUS_WAV:
WAVStream_PlaySome(stream, len);
break;
#endif
#ifdef MOD_MUSIC
case MUS_MOD:
VC_WriteBytes((SBYTE *)stream, len);
if ( music_swap8 ) {
Uint8 *dst;
dst = stream;
for ( i=len; i; --i ) {
*dst++ ^= 0x80;
}
} else
if ( music_swap16 ) {
Uint8 *dst, tmp;
dst = stream;
for ( i=(len/2); i; --i ) {
tmp = dst[0];
dst[0] = dst[1];
dst[1] = tmp;
dst += 2;
}
}
break;
#endif
#ifdef MID_MUSIC
case MUS_MID:
Timidity_PlaySome(stream, len/samplesize);
break;
#endif
#ifdef MP3_MUSIC
case MUS_MP3:
SMPEG_playAudio(music_playing->data.mp3, stream, len);
break;
#endif
default:
/* Unknown music type?? */
break;
}
}
}
/* Initialize the music players with a certain desired audio format */
int open_music(SDL_AudioSpec *mixer)
{
int music_error;
music_error = 0;
#ifdef WAV_MUSIC
if ( WAVStream_Init(mixer) < 0 ) {
++music_error;
}
#endif
#ifdef MOD_MUSIC
/* Set the MikMod music format */
music_swap8 = 0;
music_swap16 = 0;
switch (mixer->format) {
case AUDIO_U8:
case AUDIO_S8: {
if ( mixer->format == AUDIO_S8 ) {
music_swap8 = 1;
}
md_mode = 0;
}
break;
case AUDIO_S16LSB:
case AUDIO_S16MSB: {
/* See if we need to correct MikMod mixing */
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
if ( mixer->format == AUDIO_S16MSB ) {
#else
if ( mixer->format == AUDIO_S16LSB ) {
#endif
music_swap16 = 1;
}
md_mode = DMODE_16BITS;
}
break;
default: {
SDL_SetError("Unknown hardware audio format");
++music_error;
}
}
if ( mixer->channels > 1 ) {
if ( mixer->channels > 2 ) {
SDL_SetError("Hardware uses more channels than mixer");
++music_error;
}
md_mode |= DMODE_STEREO;
}
samplesize = mixer->size/mixer->samples;
md_mixfreq = mixer->freq;
md_device = 0;
md_volume = 96;
md_musicvolume = 128;
md_sndfxvolume = 128;
md_pansep = 128;
md_reverb = 0;
MikMod_RegisterAllLoaders();
MikMod_RegisterAllDrivers();
if ( MikMod_Init() ) {
SDL_SetError("%s", _mm_errmsg[_mm_errno]);
++music_error;
}
#endif
#ifdef MID_MUSIC
if ( Timidity_Init(mixer->freq,
mixer->format, mixer->channels, mixer->samples) == 0 ) {
timidity_ok = 1;
} else {
timidity_ok = 0;
}
#endif
#ifdef MP3_MUSIC
/* Keep a copy of the mixer */
used_mixer = *mixer;
#endif
music_playing = 0;
Oct 26, 1999
Oct 26, 1999
264
music_stopped = 0;
Oct 23, 1999
Oct 23, 1999
265
Oct 21, 1999
Oct 21, 1999
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
if ( music_error ) {
return(-1);
}
Mix_VolumeMusic(SDL_MIX_MAXVOLUME);
return(0);
}
/* Load a music file */
Mix_Music *Mix_LoadMUS(const char *file)
{
FILE *fp;
unsigned char magic[5];
Mix_Music *music;
/* Figure out what kind of file this is */
fp = fopen(file, "rb");
if ( (fp == NULL) || !fread(magic, 4, 1, fp) ) {
if ( fp != NULL ) {
fclose(fp);
}
SDL_SetError("Couldn't read from '%s'", file);
return(NULL);
}
magic[4] = '\0';
fclose(fp);
/* Allocate memory for the music structure */
music = (Mix_Music *)malloc(sizeof(Mix_Music));
if ( music == NULL ) {
SDL_SetError("Out of memory");
return(NULL);
}
music->error = 0;
#ifdef CMD_MUSIC
if ( music_cmd ) {
music->type = MUS_CMD;
music->data.cmd = MusicCMD_LoadSong(music_cmd, file);
if ( music->data.cmd == NULL ) {
music->error = 1;
}
} else
#endif
#ifdef WAV_MUSIC
/* WAVE files have the magic four bytes "RIFF"
AIFF files have the magic 12 bytes "FORM" XXXX "AIFF"
*/
if ( (strcmp(magic, "RIFF") == 0) || (strcmp(magic, "FORM") == 0) ) {
music->type = MUS_WAV;
music->data.wave = WAVStream_LoadSong(file, magic);
if ( music->data.wave == NULL ) {
music->error = 1;
}
} else
#endif
#ifdef MID_MUSIC
/* MIDI files have the magic four bytes "MThd" */
if ( strcmp(magic, "MThd") == 0 ) {
music->type = MUS_MID;
if ( timidity_ok ) {
music->data.midi = Timidity_LoadSong((char *)file);
if ( music->data.midi == NULL ) {
SDL_SetError("%s", Timidity_Error());
music->error = 1;
}
}
else {
SDL_SetError("%s", Timidity_Error());
music->error = 1;
}
} else
#endif
#ifdef MP3_MUSIC
if ( magic[0]==0xFF && (magic[1]&0xF0)==0xF0) {
SMPEG_Info info;
music->type = MUS_MP3;
music->data.mp3 = SMPEG_new(file, &info, 0);
if(!info.has_audio){
SDL_SetError("MPEG file does not have any audio stream.");
music->error = 1;
}else{
SMPEG_actualSpec(music->data.mp3, &used_mixer);
}
} else
#endif
#ifdef MOD_MUSIC
if ( 1 ) {
music->type = MUS_MOD;
music->data.module = MikMod_LoadSong((char *)file, 64);
if ( music->data.module == NULL ) {
SDL_SetError("%s", _mm_errmsg[_mm_errno]);
music->error = 1;
}
} else
#endif
{
SDL_SetError("Unrecognized music format");
music->error = 1;
}
if ( music->error ) {
free(music);
music = NULL;
}
return(music);
}
/* Free a music chunk previously loaded */
void Mix_FreeMusic(Mix_Music *music)
{
if ( music ) {
/* Caution: If music is playing, mixer will crash */
Oct 26, 1999
Oct 26, 1999
378
if ( music == music_playing && !music_stopped ) {
Oct 23, 1999
Oct 23, 1999
379
380
381
382
383
384
385
if ( music->fading == MIX_FADING_OUT ) {
/* Wait for the fade out to finish */
while(music->fading == MIX_FADING_OUT)
SDL_Delay(100);
} else {
Mix_HaltMusic(); /* Stop it immediately */
}
Oct 21, 1999
Oct 21, 1999
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
}
switch (music->type) {
#ifdef CMD_MUSIC
case MUS_CMD:
MusicCMD_FreeSong(music->data.cmd);
break;
#endif
#ifdef WAV_MUSIC
case MUS_WAV:
WAVStream_FreeSong(music->data.wave);
break;
#endif
#ifdef MOD_MUSIC
case MUS_MOD:
MikMod_FreeSong(music->data.module);
break;
#endif
#ifdef MID_MUSIC
case MUS_MID:
Timidity_FreeSong(music->data.midi);
break;
#endif
#ifdef MP3_MUSIC
case MUS_MP3:
SMPEG_delete(music->data.mp3);
break;
#endif
default:
/* Unknown music type?? */
break;
}
free(music);
}
}
/* Play a music chunk. Returns 0, or -1 if there was an error.
*/
int Mix_PlayMusic(Mix_Music *music, int loops)
{
/* Don't play null pointers :-) */
if ( music == NULL ) {
return(-1);
}
Oct 23, 1999
Oct 23, 1999
429
/* If the current music is fading out, wait for the fade to complete */
Oct 26, 1999
Oct 26, 1999
430
while ( music_playing && !music_stopped && music_playing->fading==MIX_FADING_OUT ) {
Oct 23, 1999
Oct 23, 1999
431
432
SDL_Delay(100);
}
Oct 21, 1999
Oct 21, 1999
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
switch (music->type) {
#ifdef CMD_MUSIC
case MUS_CMD:
MusicCMD_SetVolume(music_volume);
MusicCMD_Start(music->data.cmd);
break;
#endif
#ifdef WAV_MUSIC
case MUS_WAV:
WAVStream_SetVolume(music_volume);
WAVStream_Start(music->data.wave);
break;
#endif
#ifdef MOD_MUSIC
case MUS_MOD:
Player_SetVolume(music_volume);
Player_Start(music->data.module);
Player_SetPosition(0);
break;
#endif
#ifdef MID_MUSIC
case MUS_MID:
Timidity_SetVolume(music_volume);
Timidity_Start(music->data.midi);
break;
#endif
#ifdef MP3_MUSIC
case MUS_MP3:
SMPEG_enableaudio(music->data.mp3,1);
SMPEG_enablevideo(music->data.mp3,0);
SMPEG_setvolume(music->data.mp3,((float)music_volume/(float)MIX_MAX_VOLUME)*100.0);
SMPEG_loop(music->data.mp3, loops);
SMPEG_play(music->data.mp3);
break;
#endif
default:
/* Unknown music type?? */
return(-1);
}
music_active = 1;
Oct 26, 1999
Oct 26, 1999
473
music_stopped = 0;
Oct 21, 1999
Oct 21, 1999
474
music_playing = music;
Oct 23, 1999
Oct 23, 1999
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
music_playing->fading = MIX_NO_FADING;
return(0);
}
/* Fade in a music over "ms" milliseconds */
int Mix_FadeInMusic(Mix_Music *music, int loops, int ms)
{
if ( music && music_volume > 0 ) { /* No need to fade if we can't hear it */
music->fade_volume = music_volume;
music_volume = 0;
if(Mix_PlayMusic(music,loops)<0)
return(-1);
music_playing->fading = MIX_FADING_IN;
music_playing->fade_length = ms;
music_playing->ticks_fade = SDL_GetTicks();
}
Oct 21, 1999
Oct 21, 1999
491
492
493
494
495
496
497
498
499
return(0);
}
/* Set the music volume */
int Mix_VolumeMusic(int volume)
{
int prev_volume;
prev_volume = music_volume;
Oct 23, 1999
Oct 23, 1999
500
501
502
503
504
505
506
if ( volume < 0 ) {
volume = 0;
}
if ( volume > SDL_MIX_MAXVOLUME ) {
volume = SDL_MIX_MAXVOLUME;
}
music_volume = volume;
Oct 26, 1999
Oct 26, 1999
507
if ( music_playing && !music_stopped ) {
Oct 23, 1999
Oct 23, 1999
508
switch (music_playing->type) {
Oct 21, 1999
Oct 21, 1999
509
#ifdef CMD_MUSIC
Oct 23, 1999
Oct 23, 1999
510
511
512
case MUS_CMD:
MusicCMD_SetVolume(music_volume);
break;
Oct 21, 1999
Oct 21, 1999
513
514
#endif
#ifdef WAV_MUSIC
Oct 23, 1999
Oct 23, 1999
515
516
517
case MUS_WAV:
WAVStream_SetVolume(music_volume);
break;
Oct 21, 1999
Oct 21, 1999
518
519
#endif
#ifdef MOD_MUSIC
Oct 23, 1999
Oct 23, 1999
520
521
522
case MUS_MOD:
Player_SetVolume(music_volume);
break;
Oct 21, 1999
Oct 21, 1999
523
524
#endif
#ifdef MID_MUSIC
Oct 23, 1999
Oct 23, 1999
525
526
527
case MUS_MID:
Timidity_SetVolume(music_volume);
break;
Oct 21, 1999
Oct 21, 1999
528
529
#endif
#ifdef MP3_MUSIC
Oct 23, 1999
Oct 23, 1999
530
531
532
case MUS_MP3:
SMPEG_setvolume(music_playing->data.mp3,((float)music_volume/(float)MIX_MAX_VOLUME)*100.0);
break;
Oct 21, 1999
Oct 21, 1999
533
#endif
Oct 23, 1999
Oct 23, 1999
534
535
536
default:
/* Unknown music type?? */
break;
Oct 21, 1999
Oct 21, 1999
537
538
539
540
541
}
}
return(prev_volume);
}
Oct 26, 1999
Oct 26, 1999
542
static void lowlevel_halt(void)
Oct 21, 1999
Oct 21, 1999
543
{
Oct 26, 1999
Oct 26, 1999
544
switch (music_playing->type) {
Oct 21, 1999
Oct 21, 1999
545
#ifdef CMD_MUSIC
Oct 26, 1999
Oct 26, 1999
546
547
548
case MUS_CMD:
MusicCMD_Stop(music_playing->data.cmd);
break;
Oct 21, 1999
Oct 21, 1999
549
550
#endif
#ifdef WAV_MUSIC
Oct 26, 1999
Oct 26, 1999
551
552
553
case MUS_WAV:
WAVStream_Stop();
break;
Oct 21, 1999
Oct 21, 1999
554
555
#endif
#ifdef MOD_MUSIC
Oct 26, 1999
Oct 26, 1999
556
557
558
case MUS_MOD:
Player_Stop();
break;
Oct 21, 1999
Oct 21, 1999
559
560
#endif
#ifdef MID_MUSIC
Oct 26, 1999
Oct 26, 1999
561
562
563
case MUS_MID:
Timidity_Stop();
break;
Oct 21, 1999
Oct 21, 1999
564
565
#endif
#ifdef MP3_MUSIC
Oct 26, 1999
Oct 26, 1999
566
567
568
case MUS_MP3:
SMPEG_stop(music_playing->data.mp3);
break;
Oct 21, 1999
Oct 21, 1999
569
#endif
Oct 26, 1999
Oct 26, 1999
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
default:
/* Unknown music type?? */
return;
}
if(music_playing->fading != MIX_NO_FADING) /* Restore volume */
music_volume = music_playing->fade_volume;
music_playing->fading = MIX_NO_FADING;
music_playing = 0;
music_active = 0;
music_stopped = 0;
}
/* Halt playing of music */
int Mix_HaltMusic(void)
{
if ( music_playing && !music_stopped ) {
/* Mark the music to be stopped from the sound thread */
music_stopped = 1;
/* Wait for it to be actually stopped */
while ( music_playing )
SDL_Delay(10);
Oct 21, 1999
Oct 21, 1999
591
592
593
594
}
return(0);
}
Oct 23, 1999
Oct 23, 1999
595
596
597
/* Progressively stop the music */
int Mix_FadeOutMusic(int ms)
{
Oct 26, 1999
Oct 26, 1999
598
if ( music_playing && !music_stopped && music_playing->fading==MIX_NO_FADING ) {
Oct 23, 1999
Oct 23, 1999
599
600
601
602
603
604
605
606
607
608
609
610
611
if ( music_volume>0 ) {
music_playing->fading = MIX_FADING_OUT;
music_playing->fade_volume = music_volume;
music_playing->fade_length = ms;
music_playing->ticks_fade = SDL_GetTicks();
return(1);
}
}
return(0);
}
Mix_Fading Mix_FadingMusic(void)
{
Oct 26, 1999
Oct 26, 1999
612
if( music_playing && !music_stopped )
Oct 23, 1999
Oct 23, 1999
613
614
615
616
return music_playing->fading;
return MIX_NO_FADING;
}
Oct 21, 1999
Oct 21, 1999
617
618
619
/* Pause/Resume the music stream */
void Mix_PauseMusic(void)
{
Oct 26, 1999
Oct 26, 1999
620
if ( music_playing && !music_stopped ) {
Oct 21, 1999
Oct 21, 1999
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
switch ( music_playing->type ) {
#ifdef CMD_MUSIC
case MUS_CMD:
MusicCMD_Pause(music_playing->data.cmd);
break;
#endif
#ifdef MP3_MUSIC
case MUS_MP3:
SMPEG_pause(music_playing->data.mp3);
break;
#endif
}
}
music_active = 0;
}
Oct 23, 1999
Oct 23, 1999
636
Oct 21, 1999
Oct 21, 1999
637
638
void Mix_ResumeMusic(void)
{
Oct 26, 1999
Oct 26, 1999
639
if ( music_playing && !music_stopped ) {
Oct 21, 1999
Oct 21, 1999
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
switch ( music_playing->type ) {
#ifdef CMD_MUSIC
case MUS_CMD:
MusicCMD_Resume(music_playing->data.cmd);
break;
#endif
#ifdef MP3_MUSIC
case MUS_MP3:
SMPEG_pause(music_playing->data.mp3);
break;
#endif
}
}
music_active = 1;
}
void Mix_RewindMusic(void)
{
Oct 26, 1999
Oct 26, 1999
658
if ( music_playing && !music_stopped ) {
Oct 21, 1999
Oct 21, 1999
659
660
661
662
663
664
switch ( music_playing->type ) {
#ifdef MP3_MUSIC
case MUS_MP3:
SMPEG_rewind(music_playing->data.mp3);
break;
#endif
Oct 26, 1999
Oct 26, 1999
665
/* TODO: Implement this for other music backends */
Oct 21, 1999
Oct 21, 1999
666
667
668
669
670
671
672
}
}
}
/* Check the status of the music */
int Mix_PlayingMusic(void)
{
Oct 26, 1999
Oct 26, 1999
673
if ( music_playing && !music_stopped ) {
Oct 21, 1999
Oct 21, 1999
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
switch (music_playing->type) {
#ifdef CMD_MUSIC
case MUS_CMD:
if (!MusicCMD_Active(music_playing->data.cmd)) {
music_playing = 0;
}
break;
#endif
#ifdef WAV_MUSIC
case MUS_WAV:
if ( ! WAVStream_Active() ) {
music_playing = 0;
}
break;
#endif
#ifdef MOD_MUSIC
case MUS_MOD:
if ( ! Player_Active() ) {
music_playing = 0;
}
break;
#endif
#ifdef MID_MUSIC
case MUS_MID:
if ( ! Timidity_Active() ) {
music_playing = 0;
}
break;
#endif
#ifdef MP3_MUSIC
case MUS_MP3:
if(SMPEG_status(music_playing->data.mp3)!=SMPEG_PLAYING)
music_playing = 0;
break;
#endif
}
}
return(music_playing ? 1 : 0);
}
/* Set the external music playback command */
int Mix_SetMusicCMD(const char *command)
{
Mix_HaltMusic();
if ( music_cmd ) {
free(music_cmd);
music_cmd = NULL;
}
if ( command ) {
music_cmd = (char *)malloc(strlen(command)+1);
if ( music_cmd == NULL ) {
return(-1);
}
strcpy(music_cmd, command);
}
return(0);
}
/* Uninitialize the music players */
void close_music(void)
{
Mix_HaltMusic();
#ifdef CMD_MUSIC
Mix_SetMusicCMD(NULL);
#endif
#ifdef MOD_MUSIC
MikMod_Exit();
#endif
}