Skip to content

Latest commit

 

History

History
936 lines (884 loc) · 19.4 KB

music.c

File metadata and controls

936 lines (884 loc) · 19.4 KB
 
Oct 21, 1999
Oct 21, 1999
1
/*
Dec 26, 1999
Dec 26, 1999
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 21, 1999
Oct 21, 1999
23
24
*/
Oct 23, 1999
Oct 23, 1999
25
26
#include <stdlib.h>
#include <string.h>
Dec 21, 1999
Dec 21, 1999
27
28
#include "SDL_endian.h"
#include "SDL_audio.h"
Dec 27, 1999
Dec 27, 1999
29
#include "SDL_timer.h"
Oct 21, 1999
Oct 21, 1999
30
Jan 14, 2000
Jan 14, 2000
31
#include "SDL_mixer.h"
Oct 21, 1999
Oct 21, 1999
32
33
34
35
36
37
38
39
40
41
42
43
44
/* 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
Dec 27, 1999
Dec 27, 1999
45
46
47
48
49
50
51
52
53
54
55
# include "mikmod.h"
# if defined(LIBMIKMOD_VERSION) /* libmikmod 3.1.8 */
# define UNIMOD MODULE
# define MikMod_Init() MikMod_Init(NULL)
# define MikMod_LoadSong(a,b) Player_Load(a,b,0)
# define MikMod_FreeSong Player_Free
extern int MikMod_errno;
# else /* old MikMod 3.0.3 */
# define MikMod_strerror(x) _mm_errmsg[x])
# define MikMod_errno _mm_errno
# endif
Oct 21, 1999
Oct 21, 1999
56
57
58
#endif
#ifdef MID_MUSIC
#include "timidity.h"
Aug 19, 2001
Aug 19, 2001
59
60
61
#ifdef USE_NATIVE_MIDI
#include "native_midi.h"
#endif
Oct 21, 1999
Oct 21, 1999
62
#endif
Jul 3, 2000
Jul 3, 2000
63
64
65
#ifdef OGG_MUSIC
#include "music_ogg.h"
#endif
Oct 21, 1999
Oct 21, 1999
66
#ifdef MP3_MUSIC
Apr 5, 2001
Apr 5, 2001
67
#include "smpeg.h"
Oct 21, 1999
Oct 21, 1999
68
69
70
71
static SDL_AudioSpec used_mixer;
#endif
Feb 1, 2000
Feb 1, 2000
72
73
int volatile music_active = 1;
static int volatile music_stopped = 0;
Oct 21, 1999
Oct 21, 1999
74
75
76
static int music_loops = 0;
static char *music_cmd = NULL;
static int samplesize;
Feb 1, 2000
Feb 1, 2000
77
static Mix_Music * volatile music_playing = NULL;
Nov 11, 1999
Nov 11, 1999
78
static int music_volume = MIX_MAX_VOLUME;
Oct 21, 1999
Oct 21, 1999
79
80
static int music_swap8;
static int music_swap16;
Oct 23, 1999
Oct 23, 1999
81
Oct 21, 1999
Oct 21, 1999
82
83
84
85
86
87
struct _Mix_Music {
enum {
MUS_CMD,
MUS_WAV,
MUS_MOD,
MUS_MID,
Jul 3, 2000
Jul 3, 2000
88
MUS_OGG,
Oct 21, 1999
Oct 21, 1999
89
90
91
92
93
94
95
96
97
98
99
100
101
102
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;
Aug 19, 2001
Aug 19, 2001
103
104
105
#ifdef USE_NATIVE_MIDI
NativeMidiSong *nativemidi;
#endif
Oct 21, 1999
Oct 21, 1999
106
#endif
Jul 3, 2000
Jul 3, 2000
107
108
109
#ifdef OGG_MUSIC
OGG_music *ogg;
#endif
Oct 21, 1999
Oct 21, 1999
110
111
112
113
#ifdef MP3_MUSIC
SMPEG *mp3;
#endif
} data;
Oct 23, 1999
Oct 23, 1999
114
115
Mix_Fading fading;
int fade_volume;
Nov 11, 1999
Nov 11, 1999
116
117
int fade_step;
int fade_steps;
Oct 21, 1999
Oct 21, 1999
118
119
int error;
};
Dec 27, 1999
Dec 27, 1999
120
#ifdef MID_MUSIC
Oct 21, 1999
Oct 21, 1999
121
static int timidity_ok;
Aug 19, 2001
Aug 19, 2001
122
123
124
#ifdef USE_NATIVE_MIDI
static int native_midi_ok;
#endif
Dec 27, 1999
Dec 27, 1999
125
#endif
Oct 21, 1999
Oct 21, 1999
126
Nov 11, 1999
Nov 11, 1999
127
128
129
/* Used to calculate fading steps */
static int ms_per_step;
Oct 30, 1999
Oct 30, 1999
130
/* Local low-level functions prototypes */
Oct 26, 1999
Oct 26, 1999
131
static void lowlevel_halt(void);
Oct 30, 1999
Oct 30, 1999
132
static int lowlevel_play(Mix_Music *music);
Oct 26, 1999
Oct 26, 1999
133
Dec 27, 1999
Dec 27, 1999
134
135
136
137
138
139
140
141
142
143
144
145
/* Support for hooking when the music has finished */
static void (*music_finished_hook)(void) = NULL;
void Mix_HookMusicFinished(void (*music_finished)(void))
{
SDL_LockAudio();
music_finished_hook = music_finished;
SDL_UnlockAudio();
}
Oct 21, 1999
Oct 21, 1999
146
147
148
149
/* Mixing function */
void music_mixer(void *udata, Uint8 *stream, int len)
{
if ( music_playing ) {
Oct 26, 1999
Oct 26, 1999
150
151
152
153
154
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;
Dec 27, 1999
Dec 27, 1999
155
}
Nov 1, 1999
Nov 1, 1999
156
/* Handle fading */
Nov 11, 1999
Nov 11, 1999
157
158
if ( music_playing->fading != MIX_NO_FADING ) {
if ( music_playing->fade_step++ < music_playing->fade_steps ) {
Dec 26, 1999
Dec 26, 1999
159
160
161
int fade_volume = music_playing->fade_volume;
int fade_step = music_playing->fade_step;
int fade_steps = music_playing->fade_steps;
Nov 11, 1999
Nov 11, 1999
162
Oct 23, 1999
Oct 23, 1999
163
if ( music_playing->fading == MIX_FADING_OUT ) {
Dec 27, 1999
Dec 27, 1999
164
Mix_VolumeMusic((fade_volume * (fade_steps-fade_step))
Nov 11, 1999
Nov 11, 1999
165
166
167
/ fade_steps);
} else { /* Fading in */
Mix_VolumeMusic((fade_volume * fade_step) / fade_steps);
Oct 23, 1999
Oct 23, 1999
168
169
170
}
} else {
if ( music_playing->fading == MIX_FADING_OUT ) {
Nov 11, 1999
Nov 11, 1999
171
172
lowlevel_halt();
return;
Oct 23, 1999
Oct 23, 1999
173
}
Nov 11, 1999
Nov 11, 1999
174
music_playing->fading = MIX_NO_FADING;
Oct 23, 1999
Oct 23, 1999
175
176
}
}
Nov 1, 1999
Nov 1, 1999
177
/* Restart music if it has to loop */
Dec 27, 1999
Dec 27, 1999
178
179
180
if ( !Mix_PlayingMusic() ) {
/* Restart music if it has to loop */
if ( music_loops && --music_loops ) {
Oct 30, 1999
Oct 30, 1999
181
182
183
184
185
186
187
Mix_RewindMusic();
if ( lowlevel_play(music_playing) < 0 ) {
fprintf(stderr,"Warning: Music restart failed.\n");
music_stopped = 1; /* Something went wrong */
music_playing->fading = MIX_NO_FADING;
}
}
Dec 27, 1999
Dec 27, 1999
188
189
190
191
192
else if (music_finished_hook) {
lowlevel_halt();
music_finished_hook();
return;
}
Oct 30, 1999
Oct 30, 1999
193
}
Nov 9, 1999
Nov 9, 1999
194
195
196
if ( music_volume <= 0 ) { /* Don't mix if volume is null */
return;
}
Oct 21, 1999
Oct 21, 1999
197
198
199
200
201
202
203
204
switch (music_playing->type) {
#ifdef CMD_MUSIC
case MUS_CMD:
/* The playing is done externally */
break;
#endif
#ifdef WAV_MUSIC
case MUS_WAV:
Jul 3, 2000
Jul 3, 2000
205
WAVStream_PlaySome(stream, len);
Oct 21, 1999
Oct 21, 1999
206
207
208
209
210
211
212
break;
#endif
#ifdef MOD_MUSIC
case MUS_MOD:
VC_WriteBytes((SBYTE *)stream, len);
if ( music_swap8 ) {
Uint8 *dst;
Feb 1, 2000
Feb 1, 2000
213
int i;
Oct 21, 1999
Oct 21, 1999
214
215
216
217
218
219
220
221
dst = stream;
for ( i=len; i; --i ) {
*dst++ ^= 0x80;
}
} else
if ( music_swap16 ) {
Uint8 *dst, tmp;
Feb 1, 2000
Feb 1, 2000
222
int i;
Oct 21, 1999
Oct 21, 1999
223
224
225
226
227
228
229
230
231
232
233
234
235
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:
Aug 19, 2001
Aug 19, 2001
236
237
238
239
if ( timidity_ok ) {
int samples = len / samplesize;
Timidity_PlaySome(stream, samples);
}
Oct 21, 1999
Oct 21, 1999
240
241
break;
#endif
Jul 3, 2000
Jul 3, 2000
242
243
244
245
246
#ifdef OGG_MUSIC
case MUS_OGG:
OGG_playAudio(music_playing->data.ogg, stream, len);
break;
#endif
Oct 21, 1999
Oct 21, 1999
247
#ifdef MP3_MUSIC
Dec 26, 1999
Dec 26, 1999
248
249
case MUS_MP3:
SMPEG_playAudio(music_playing->data.mp3, stream, len);
Oct 21, 1999
Oct 21, 1999
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
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
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: {
Dec 26, 1999
Dec 26, 1999
300
Mix_SetError("Unknown hardware audio format");
Oct 21, 1999
Oct 21, 1999
301
302
303
304
305
++music_error;
}
}
if ( mixer->channels > 1 ) {
if ( mixer->channels > 2 ) {
Dec 26, 1999
Dec 26, 1999
306
Mix_SetError("Hardware uses more channels than mixer");
Oct 21, 1999
Oct 21, 1999
307
308
309
310
++music_error;
}
md_mode |= DMODE_STEREO;
}
Dec 26, 1999
Dec 26, 1999
311
312
313
314
samplesize = mixer->size/mixer->samples;
md_mixfreq = mixer->freq;
md_device = 0;
md_volume = 96;
Oct 21, 1999
Oct 21, 1999
315
316
md_musicvolume = 128;
md_sndfxvolume = 128;
Dec 26, 1999
Dec 26, 1999
317
318
md_pansep = 128;
md_reverb = 0;
Oct 21, 1999
Oct 21, 1999
319
320
321
MikMod_RegisterAllLoaders();
MikMod_RegisterAllDrivers();
if ( MikMod_Init() ) {
Dec 27, 1999
Dec 27, 1999
322
Mix_SetError("%s", MikMod_strerror(MikMod_errno));
Oct 21, 1999
Oct 21, 1999
323
324
325
326
++music_error;
}
#endif
#ifdef MID_MUSIC
Aug 19, 2001
Aug 19, 2001
327
328
329
330
samplesize = mixer->size/mixer->samples;
#ifdef USE_NATIVE_MIDI
if ( native_midi_init() ) {
native_midi_ok = 1;
Oct 21, 1999
Oct 21, 1999
331
} else {
Aug 19, 2001
Aug 19, 2001
332
333
334
335
336
337
338
339
340
native_midi_ok = 0;
}
timidity_ok = !native_midi_ok;
#else
timidity_ok = 1;
#endif
if ( timidity_ok &&
(Timidity_Init(mixer->freq, mixer->format,
mixer->channels, mixer->samples) != 0) ) {
Oct 21, 1999
Oct 21, 1999
341
342
343
timidity_ok = 0;
}
#endif
Jul 3, 2000
Jul 3, 2000
344
345
346
347
348
#ifdef OGG_MUSIC
if ( OGG_init(mixer) < 0 ) {
++music_error;
}
#endif
Oct 21, 1999
Oct 21, 1999
349
350
351
352
#ifdef MP3_MUSIC
/* Keep a copy of the mixer */
used_mixer = *mixer;
#endif
Feb 1, 2000
Feb 1, 2000
353
music_playing = NULL;
Oct 26, 1999
Oct 26, 1999
354
music_stopped = 0;
Oct 21, 1999
Oct 21, 1999
355
356
357
358
359
if ( music_error ) {
return(-1);
}
Mix_VolumeMusic(SDL_MIX_MAXVOLUME);
Dec 26, 1999
Dec 26, 1999
360
/* Calculate the number of ms for each callback */
Feb 2, 2000
Feb 2, 2000
361
ms_per_step = (int) (((float)mixer->samples * 1000.0) / mixer->freq);
Nov 11, 1999
Nov 11, 1999
362
Oct 21, 1999
Oct 21, 1999
363
364
365
366
367
368
369
return(0);
}
/* Load a music file */
Mix_Music *Mix_LoadMUS(const char *file)
{
FILE *fp;
Mar 3, 2000
Mar 3, 2000
370
Uint8 magic[5];
Oct 21, 1999
Oct 21, 1999
371
372
373
374
375
376
377
378
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);
}
Dec 26, 1999
Dec 26, 1999
379
Mix_SetError("Couldn't read from '%s'", file);
Oct 21, 1999
Oct 21, 1999
380
381
382
383
384
385
386
387
return(NULL);
}
magic[4] = '\0';
fclose(fp);
/* Allocate memory for the music structure */
music = (Mix_Music *)malloc(sizeof(Mix_Music));
if ( music == NULL ) {
Dec 26, 1999
Dec 26, 1999
388
Mix_SetError("Out of memory");
Oct 21, 1999
Oct 21, 1999
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
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"
*/
Mar 4, 2000
Mar 4, 2000
406
407
if ( (strcmp((char *)magic, "RIFF") == 0) ||
(strcmp((char *)magic, "FORM") == 0) ) {
Oct 21, 1999
Oct 21, 1999
408
music->type = MUS_WAV;
Mar 4, 2000
Mar 4, 2000
409
music->data.wave = WAVStream_LoadSong(file, (char *)magic);
Oct 21, 1999
Oct 21, 1999
410
411
412
413
414
415
416
417
418
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;
Aug 19, 2001
Aug 19, 2001
419
420
421
422
423
424
425
426
427
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
music->data.nativemidi = native_midi_loadsong((char *)file);
if ( music->data.nativemidi == NULL ) {
Mix_SetError("%s", native_midi_error());
music->error = 1;
}
} else
#endif
Oct 21, 1999
Oct 21, 1999
428
429
430
if ( timidity_ok ) {
music->data.midi = Timidity_LoadSong((char *)file);
if ( music->data.midi == NULL ) {
Dec 26, 1999
Dec 26, 1999
431
Mix_SetError("%s", Timidity_Error());
Oct 21, 1999
Oct 21, 1999
432
433
music->error = 1;
}
Aug 19, 2001
Aug 19, 2001
434
} else {
Dec 26, 1999
Dec 26, 1999
435
Mix_SetError("%s", Timidity_Error());
Oct 21, 1999
Oct 21, 1999
436
437
438
439
music->error = 1;
}
} else
#endif
Jul 3, 2000
Jul 3, 2000
440
441
442
443
444
445
446
447
448
449
#ifdef OGG_MUSIC
/* Ogg Vorbis files have the magic four bytes "OggS" */
if ( strcmp(magic, "OggS") == 0 ) {
music->type = MUS_OGG;
music->data.ogg = OGG_new(file);
if ( music->data.ogg == NULL ) {
music->error = 1;
}
} else
#endif
Oct 21, 1999
Oct 21, 1999
450
451
452
453
454
455
#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){
Dec 26, 1999
Dec 26, 1999
456
Mix_SetError("MPEG file does not have any audio stream.");
Oct 21, 1999
Oct 21, 1999
457
458
459
460
461
462
463
464
465
466
467
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 ) {
Dec 27, 1999
Dec 27, 1999
468
Mix_SetError("%s", MikMod_strerror(MikMod_errno));
Oct 21, 1999
Oct 21, 1999
469
470
471
472
473
music->error = 1;
}
} else
#endif
{
Dec 26, 1999
Dec 26, 1999
474
Mix_SetError("Unrecognized music format");
Oct 21, 1999
Oct 21, 1999
475
476
477
478
479
480
481
482
483
484
485
486
487
488
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
489
if ( music == music_playing && !music_stopped ) {
Oct 23, 1999
Oct 23, 1999
490
491
if ( music->fading == MIX_FADING_OUT ) {
/* Wait for the fade out to finish */
Nov 11, 1999
Nov 11, 1999
492
while ( music_playing && !music_stopped && (music_playing->fading == MIX_FADING_OUT) )
Oct 23, 1999
Oct 23, 1999
493
494
495
496
SDL_Delay(100);
} else {
Mix_HaltMusic(); /* Stop it immediately */
}
Oct 21, 1999
Oct 21, 1999
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
}
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:
Aug 19, 2001
Aug 19, 2001
516
517
518
519
520
521
522
523
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
native_midi_freesong(music->data.nativemidi);
} else
#endif
if ( timidity_ok ) {
Timidity_FreeSong(music->data.midi);
}
Oct 21, 1999
Oct 21, 1999
524
525
break;
#endif
Jul 3, 2000
Jul 3, 2000
526
527
528
529
530
#ifdef OGG_MUSIC
case MUS_OGG:
OGG_delete(music->data.ogg);
break;
#endif
Oct 21, 1999
Oct 21, 1999
531
#ifdef MP3_MUSIC
Dec 26, 1999
Dec 26, 1999
532
case MUS_MP3:
Oct 21, 1999
Oct 21, 1999
533
534
535
536
537
538
539
540
541
542
543
SMPEG_delete(music->data.mp3);
break;
#endif
default:
/* Unknown music type?? */
break;
}
free(music);
}
}
Oct 30, 1999
Oct 30, 1999
544
static int lowlevel_play(Mix_Music *music)
Oct 21, 1999
Oct 21, 1999
545
{
Oct 30, 1999
Oct 30, 1999
546
if(!music)
Oct 21, 1999
Oct 21, 1999
547
return(-1);
Oct 30, 1999
Oct 30, 1999
548
Oct 21, 1999
Oct 21, 1999
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
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:
Feb 1, 2000
Feb 1, 2000
564
Player_SetVolume((SWORD)music_volume);
Oct 21, 1999
Oct 21, 1999
565
566
567
568
569
570
Player_Start(music->data.module);
Player_SetPosition(0);
break;
#endif
#ifdef MID_MUSIC
case MUS_MID:
Aug 19, 2001
Aug 19, 2001
571
572
573
574
575
576
577
578
579
580
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
native_midi_setvolume(music_volume);
native_midi_start(music->data.nativemidi);
} else
#endif
if ( timidity_ok ) {
Timidity_SetVolume(music_volume);
Timidity_Start(music->data.midi);
}
Oct 21, 1999
Oct 21, 1999
581
582
break;
#endif
Jul 3, 2000
Jul 3, 2000
583
584
585
586
587
588
#ifdef OGG_MUSIC
case MUS_OGG:
OGG_setvolume(music->data.ogg, music_volume);
OGG_play(music->data.ogg);
break;
#endif
Oct 21, 1999
Oct 21, 1999
589
#ifdef MP3_MUSIC
Dec 26, 1999
Dec 26, 1999
590
case MUS_MP3:
Oct 21, 1999
Oct 21, 1999
591
592
SMPEG_enableaudio(music->data.mp3,1);
SMPEG_enablevideo(music->data.mp3,0);
Apr 5, 2001
Apr 5, 2001
593
SMPEG_setvolume(music->data.mp3,(int)(((float)music_volume/(float)MIX_MAX_VOLUME)*100.0));
Oct 21, 1999
Oct 21, 1999
594
595
596
597
598
599
600
SMPEG_play(music->data.mp3);
break;
#endif
default:
/* Unknown music type?? */
return(-1);
}
Oct 30, 1999
Oct 30, 1999
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
return(0);
}
/* 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);
}
/* If the current music is fading out, wait for the fade to complete */
while ( music_playing && !music_stopped && music_playing->fading==MIX_FADING_OUT ) {
SDL_Delay(100);
}
Nov 11, 1999
Nov 11, 1999
617
if ( lowlevel_play(music) < 0 ) {
Oct 30, 1999
Oct 30, 1999
618
return(-1);
Dec 26, 1999
Dec 26, 1999
619
}
Oct 21, 1999
Oct 21, 1999
620
music_active = 1;
Oct 26, 1999
Oct 26, 1999
621
music_stopped = 0;
Oct 30, 1999
Oct 30, 1999
622
music_loops = loops;
Oct 21, 1999
Oct 21, 1999
623
music_playing = music;
Oct 23, 1999
Oct 23, 1999
624
625
626
627
628
629
630
631
632
633
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;
Nov 11, 1999
Nov 11, 1999
634
if ( Mix_PlayMusic(music, loops) < 0 ) {
Oct 23, 1999
Oct 23, 1999
635
return(-1);
Dec 26, 1999
Dec 26, 1999
636
}
Nov 11, 1999
Nov 11, 1999
637
638
music_playing->fade_step = 0;
music_playing->fade_steps = ms/ms_per_step;
Oct 23, 1999
Oct 23, 1999
639
640
music_playing->fading = MIX_FADING_IN;
}
Oct 21, 1999
Oct 21, 1999
641
642
643
644
645
646
647
648
649
return(0);
}
/* Set the music volume */
int Mix_VolumeMusic(int volume)
{
int prev_volume;
prev_volume = music_volume;
Oct 23, 1999
Oct 23, 1999
650
651
652
653
654
655
656
if ( volume < 0 ) {
volume = 0;
}
if ( volume > SDL_MIX_MAXVOLUME ) {
volume = SDL_MIX_MAXVOLUME;
}
music_volume = volume;
Oct 26, 1999
Oct 26, 1999
657
if ( music_playing && !music_stopped ) {
Oct 23, 1999
Oct 23, 1999
658
switch (music_playing->type) {
Oct 21, 1999
Oct 21, 1999
659
#ifdef CMD_MUSIC
Oct 23, 1999
Oct 23, 1999
660
661
662
case MUS_CMD:
MusicCMD_SetVolume(music_volume);
break;
Oct 21, 1999
Oct 21, 1999
663
664
#endif
#ifdef WAV_MUSIC
Oct 23, 1999
Oct 23, 1999
665
666
667
case MUS_WAV:
WAVStream_SetVolume(music_volume);
break;
Oct 21, 1999
Oct 21, 1999
668
669
#endif
#ifdef MOD_MUSIC
Oct 23, 1999
Oct 23, 1999
670
case MUS_MOD:
Feb 1, 2000
Feb 1, 2000
671
Player_SetVolume((SWORD)music_volume);
Oct 23, 1999
Oct 23, 1999
672
break;
Oct 21, 1999
Oct 21, 1999
673
674
#endif
#ifdef MID_MUSIC
Oct 23, 1999
Oct 23, 1999
675
case MUS_MID:
Aug 19, 2001
Aug 19, 2001
676
677
678
679
680
681
682
683
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
native_midi_setvolume(music_volume);
} else
#endif
if ( timidity_ok ) {
Timidity_SetVolume(music_volume);
}
Oct 23, 1999
Oct 23, 1999
684
break;
Oct 21, 1999
Oct 21, 1999
685
#endif
Jul 3, 2000
Jul 3, 2000
686
687
688
689
690
#ifdef OGG_MUSIC
case MUS_OGG:
OGG_setvolume(music_playing->data.ogg, music_volume);
break;
#endif
Oct 21, 1999
Oct 21, 1999
691
#ifdef MP3_MUSIC
Oct 23, 1999
Oct 23, 1999
692
case MUS_MP3:
Apr 5, 2001
Apr 5, 2001
693
SMPEG_setvolume(music_playing->data.mp3,(int)(((float)music_volume/(float)MIX_MAX_VOLUME)*100.0));
Oct 23, 1999
Oct 23, 1999
694
break;
Oct 21, 1999
Oct 21, 1999
695
#endif
Oct 23, 1999
Oct 23, 1999
696
697
698
default:
/* Unknown music type?? */
break;
Oct 21, 1999
Oct 21, 1999
699
700
701
702
703
}
}
return(prev_volume);
}
Oct 26, 1999
Oct 26, 1999
704
static void lowlevel_halt(void)
Oct 21, 1999
Oct 21, 1999
705
{
Oct 26, 1999
Oct 26, 1999
706
switch (music_playing->type) {
Oct 21, 1999
Oct 21, 1999
707
#ifdef CMD_MUSIC
Oct 26, 1999
Oct 26, 1999
708
709
710
case MUS_CMD:
MusicCMD_Stop(music_playing->data.cmd);
break;
Oct 21, 1999
Oct 21, 1999
711
712
#endif
#ifdef WAV_MUSIC
Oct 26, 1999
Oct 26, 1999
713
714
715
case MUS_WAV:
WAVStream_Stop();
break;
Oct 21, 1999
Oct 21, 1999
716
717
#endif
#ifdef MOD_MUSIC
Oct 26, 1999
Oct 26, 1999
718
719
720
case MUS_MOD:
Player_Stop();
break;
Oct 21, 1999
Oct 21, 1999
721
722
#endif
#ifdef MID_MUSIC
Oct 26, 1999
Oct 26, 1999
723
case MUS_MID:
Aug 19, 2001
Aug 19, 2001
724
725
726
727
728
729
730
731
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
native_midi_stop();
} else
#endif
if ( timidity_ok ) {
Timidity_Stop();
}
Oct 26, 1999
Oct 26, 1999
732
break;
Oct 21, 1999
Oct 21, 1999
733
#endif
Jul 3, 2000
Jul 3, 2000
734
735
736
737
738
#ifdef OGG_MUSIC
case MUS_OGG:
OGG_stop(music_playing->data.ogg);
break;
#endif
Oct 21, 1999
Oct 21, 1999
739
#ifdef MP3_MUSIC
Oct 26, 1999
Oct 26, 1999
740
741
742
case MUS_MP3:
SMPEG_stop(music_playing->data.mp3);
break;
Oct 21, 1999
Oct 21, 1999
743
#endif
Oct 26, 1999
Oct 26, 1999
744
745
746
747
default:
/* Unknown music type?? */
return;
}
Nov 11, 1999
Nov 11, 1999
748
if ( music_playing->fading != MIX_NO_FADING ) /* Restore volume */
Oct 26, 1999
Oct 26, 1999
749
750
music_volume = music_playing->fade_volume;
music_playing->fading = MIX_NO_FADING;
Nov 11, 1999
Nov 11, 1999
751
music_playing = NULL;
Oct 26, 1999
Oct 26, 1999
752
music_active = 0;
Oct 30, 1999
Oct 30, 1999
753
music_loops = 0;
Oct 26, 1999
Oct 26, 1999
754
755
756
757
758
759
760
761
762
763
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 */
Feb 1, 2000
Feb 1, 2000
764
while ( music_playing && music_active )
Oct 26, 1999
Oct 26, 1999
765
SDL_Delay(10);
Oct 21, 1999
Oct 21, 1999
766
767
768
769
}
return(0);
}
Oct 23, 1999
Oct 23, 1999
770
771
772
/* Progressively stop the music */
int Mix_FadeOutMusic(int ms)
{
Dec 26, 1999
Dec 26, 1999
773
774
if ( music_playing && !music_stopped &&
(music_playing->fading == MIX_NO_FADING) ) {
Nov 11, 1999
Nov 11, 1999
775
if ( music_volume > 0 ) {
Oct 23, 1999
Oct 23, 1999
776
777
music_playing->fading = MIX_FADING_OUT;
music_playing->fade_volume = music_volume;
Dec 26, 1999
Dec 26, 1999
778
779
music_playing->fade_step = 0;
music_playing->fade_steps = ms/ms_per_step;
Oct 23, 1999
Oct 23, 1999
780
781
782
783
784
785
786
787
return(1);
}
}
return(0);
}
Mix_Fading Mix_FadingMusic(void)
{
Oct 26, 1999
Oct 26, 1999
788
if( music_playing && !music_stopped )
Oct 23, 1999
Oct 23, 1999
789
790
791
792
return music_playing->fading;
return MIX_NO_FADING;
}
Oct 21, 1999
Oct 21, 1999
793
794
795
/* Pause/Resume the music stream */
void Mix_PauseMusic(void)
{
Nov 11, 1999
Nov 11, 1999
796
if ( music_playing && !music_stopped ) {
Nov 1, 1999
Nov 1, 1999
797
music_active = 0;
Oct 21, 1999
Oct 21, 1999
798
799
}
}
Oct 23, 1999
Oct 23, 1999
800
Oct 21, 1999
Oct 21, 1999
801
802
void Mix_ResumeMusic(void)
{
Nov 11, 1999
Nov 11, 1999
803
if ( music_playing && !music_stopped ) {
Nov 1, 1999
Nov 1, 1999
804
music_active = 1;
Oct 21, 1999
Oct 21, 1999
805
806
807
808
809
}
}
void Mix_RewindMusic(void)
{
Oct 26, 1999
Oct 26, 1999
810
if ( music_playing && !music_stopped ) {
Oct 21, 1999
Oct 21, 1999
811
switch ( music_playing->type ) {
Dec 27, 1999
Dec 27, 1999
812
813
814
815
816
817
#ifdef MOD_MUSIC
case MUS_MOD:
Player_Start(music_playing->data.module);
Player_SetPosition(0);
break;
#endif
Oct 21, 1999
Oct 21, 1999
818
819
820
821
#ifdef MP3_MUSIC
case MUS_MP3:
SMPEG_rewind(music_playing->data.mp3);
break;
Aug 19, 2001
Aug 19, 2001
822
823
824
825
826
827
828
829
830
#endif
#ifdef MID_MUSIC
case MUS_MID:
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
native_midi_stop();
}
#endif
break;
Oct 21, 1999
Oct 21, 1999
831
#endif
Dec 27, 1999
Dec 27, 1999
832
default:
Oct 26, 1999
Oct 26, 1999
833
/* TODO: Implement this for other music backends */
Dec 27, 1999
Dec 27, 1999
834
break;
Oct 21, 1999
Oct 21, 1999
835
836
837
838
}
}
}
Nov 1, 1999
Nov 1, 1999
839
840
int Mix_PausedMusic(void)
{
Nov 11, 1999
Nov 11, 1999
841
return (music_active == 0);
Nov 1, 1999
Nov 1, 1999
842
843
}
Oct 21, 1999
Oct 21, 1999
844
/* Check the status of the music */
Nov 1, 1999
Nov 1, 1999
845
int Mix_PlayingMusic(void)
Oct 21, 1999
Oct 21, 1999
846
{
Nov 1, 1999
Nov 1, 1999
847
if ( music_playing && ! music_stopped ) {
Oct 21, 1999
Oct 21, 1999
848
849
850
851
switch (music_playing->type) {
#ifdef CMD_MUSIC
case MUS_CMD:
if (!MusicCMD_Active(music_playing->data.cmd)) {
Oct 30, 1999
Oct 30, 1999
852
return(0);
Oct 21, 1999
Oct 21, 1999
853
854
855
856
857
}
break;
#endif
#ifdef WAV_MUSIC
case MUS_WAV:
Jul 3, 2000
Jul 3, 2000
858
if ( ! WAVStream_Active() ) {
Oct 30, 1999
Oct 30, 1999
859
return(0);
Oct 21, 1999
Oct 21, 1999
860
861
862
863
864
865
}
break;
#endif
#ifdef MOD_MUSIC
case MUS_MOD:
if ( ! Player_Active() ) {
Oct 30, 1999
Oct 30, 1999
866
return(0);
Oct 21, 1999
Oct 21, 1999
867
868
869
870
871
}
break;
#endif
#ifdef MID_MUSIC
case MUS_MID:
Aug 19, 2001
Aug 19, 2001
872
873
874
875
876
877
878
879
880
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
if ( ! native_midi_active() )
return(0);
} else
#endif
if ( timidity_ok ) {
if ( ! Timidity_Active() )
return(0);
Oct 21, 1999
Oct 21, 1999
881
882
883
}
break;
#endif
Jul 3, 2000
Jul 3, 2000
884
885
886
887
888
889
890
#ifdef OGG_MUSIC
case MUS_OGG:
if ( ! OGG_playing(music_playing->data.ogg) ) {
return(0);
}
break;
#endif
Oct 21, 1999
Oct 21, 1999
891
892
#ifdef MP3_MUSIC
case MUS_MP3:
Aug 19, 2001
Aug 19, 2001
893
if ( SMPEG_status(music_playing->data.mp3) != SMPEG_PLAYING )
Oct 30, 1999
Oct 30, 1999
894
return(0);
Oct 21, 1999
Oct 21, 1999
895
896
break;
#endif
Dec 27, 1999
Dec 27, 1999
897
898
default:
break;
Oct 21, 1999
Oct 21, 1999
899
}
Oct 30, 1999
Oct 30, 1999
900
901
return(1);
}
Nov 1, 1999
Nov 1, 1999
902
return(0);
Oct 21, 1999
Oct 21, 1999
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
}
/* 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();
Nov 17, 2000
Nov 17, 2000
932
933
MikMod_UnregisterAllLoaders();
MikMod_UnregisterAllDrivers();
Oct 21, 1999
Oct 21, 1999
934
935
#endif
}