Skip to content

Latest commit

 

History

History
1167 lines (1087 loc) · 23.9 KB

music.c

File metadata and controls

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