Skip to content

Latest commit

 

History

History
996 lines (941 loc) · 21 KB

music.c

File metadata and controls

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