Skip to content

Latest commit

 

History

History
executable file
·
1647 lines (1534 loc) · 35.2 KB

music.c

File metadata and controls

executable file
·
1647 lines (1534 loc) · 35.2 KB
 
Oct 21, 1999
Oct 21, 1999
1
/*
Dec 31, 2011
Dec 31, 2011
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SDL_mixer: An audio mixer library based on the SDL library
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Oct 21, 1999
Oct 21, 1999
20
21
*/
Dec 14, 2001
Dec 14, 2001
22
/* $Id$ */
Dec 14, 2001
Dec 14, 2001
23
Oct 23, 1999
Oct 23, 1999
24
25
#include <stdlib.h>
#include <string.h>
Oct 16, 2001
Oct 16, 2001
26
#include <ctype.h>
Nov 19, 2005
Nov 19, 2005
27
#include <assert.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
#ifdef CMD_MUSIC
#include "music_cmd.h"
#endif
#ifdef WAV_MUSIC
#include "wavestream.h"
#endif
Nov 16, 2009
Nov 16, 2009
40
41
42
#ifdef MODPLUG_MUSIC
#include "music_modplug.h"
#endif
Oct 3, 2009
Oct 3, 2009
43
44
#ifdef MOD_MUSIC
#include "music_mod.h"
Oct 21, 1999
Oct 21, 1999
45
46
#endif
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
47
48
49
# ifdef USE_TIMIDITY_MIDI
# include "timidity.h"
# endif
Mar 20, 2011
Mar 20, 2011
50
51
52
# ifdef USE_FLUIDSYNTH_MIDI
# include "fluidsynth.h"
# endif
Sep 5, 2001
Sep 5, 2001
53
54
55
# ifdef USE_NATIVE_MIDI
# include "native_midi.h"
# endif
Oct 21, 1999
Oct 21, 1999
56
#endif
Jul 3, 2000
Jul 3, 2000
57
58
59
#ifdef OGG_MUSIC
#include "music_ogg.h"
#endif
Oct 21, 1999
Oct 21, 1999
60
#ifdef MP3_MUSIC
May 12, 2006
May 12, 2006
61
#include "dynamic_mp3.h"
Jul 15, 2007
Jul 15, 2007
62
63
64
65
#endif
#ifdef MP3_MAD_MUSIC
#include "music_mad.h"
#endif
Feb 27, 2008
Feb 27, 2008
66
67
68
#ifdef FLAC_MUSIC
#include "music_flac.h"
#endif
Oct 21, 1999
Oct 21, 1999
69
Jul 15, 2007
Jul 15, 2007
70
#if defined(MP3_MUSIC) || defined(MP3_MAD_MUSIC)
Oct 21, 1999
Oct 21, 1999
71
72
73
static SDL_AudioSpec used_mixer;
#endif
Jul 15, 2007
Jul 15, 2007
74
Feb 1, 2000
Feb 1, 2000
75
76
int volatile music_active = 1;
static int volatile music_stopped = 0;
Oct 21, 1999
Oct 21, 1999
77
78
static int music_loops = 0;
static char *music_cmd = NULL;
Feb 1, 2000
Feb 1, 2000
79
static Mix_Music * volatile music_playing = NULL;
Nov 11, 1999
Nov 11, 1999
80
static int music_volume = MIX_MAX_VOLUME;
Oct 23, 1999
Oct 23, 1999
81
Oct 21, 1999
Oct 21, 1999
82
struct _Mix_Music {
May 19, 2002
May 19, 2002
83
Mix_MusicType type;
Oct 21, 1999
Oct 21, 1999
84
85
86
87
88
89
90
union {
#ifdef CMD_MUSIC
MusicCMD *cmd;
#endif
#ifdef WAV_MUSIC
WAVStream *wave;
#endif
Nov 16, 2009
Nov 16, 2009
91
92
93
#ifdef MODPLUG_MUSIC
modplug_data *modplug;
#endif
Oct 3, 2009
Oct 3, 2009
94
95
#ifdef MOD_MUSIC
struct MODULE *module;
Oct 21, 1999
Oct 21, 1999
96
97
#endif
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
98
#ifdef USE_TIMIDITY_MIDI
Oct 21, 1999
Oct 21, 1999
99
MidiSong *midi;
Sep 5, 2001
Sep 5, 2001
100
#endif
Mar 20, 2011
Mar 20, 2011
101
102
103
#ifdef USE_FLUIDSYNTH_MIDI
FluidSynthMidiSong *fluidsynthmidi;
#endif
Aug 19, 2001
Aug 19, 2001
104
105
106
#ifdef USE_NATIVE_MIDI
NativeMidiSong *nativemidi;
#endif
Oct 21, 1999
Oct 21, 1999
107
#endif
Jul 3, 2000
Jul 3, 2000
108
109
110
#ifdef OGG_MUSIC
OGG_music *ogg;
#endif
Oct 21, 1999
Oct 21, 1999
111
112
#ifdef MP3_MUSIC
SMPEG *mp3;
Jul 15, 2007
Jul 15, 2007
113
114
115
#endif
#ifdef MP3_MAD_MUSIC
mad_data *mp3_mad;
Feb 27, 2008
Feb 27, 2008
116
117
118
#endif
#ifdef FLAC_MUSIC
FLAC_music *flac;
Oct 21, 1999
Oct 21, 1999
119
120
#endif
} data;
Oct 23, 1999
Oct 23, 1999
121
Mix_Fading fading;
Nov 11, 1999
Nov 11, 1999
122
123
int fade_step;
int fade_steps;
Oct 21, 1999
Oct 21, 1999
124
125
int error;
};
Dec 27, 1999
Dec 27, 1999
126
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
127
#ifdef USE_TIMIDITY_MIDI
Oct 21, 1999
Oct 21, 1999
128
static int timidity_ok;
Dec 17, 2001
Dec 17, 2001
129
static int samplesize;
Sep 5, 2001
Sep 5, 2001
130
#endif
Mar 20, 2011
Mar 20, 2011
131
132
133
#ifdef USE_FLUIDSYNTH_MIDI
static int fluidsynth_ok;
#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;
Jun 5, 2009
Jun 5, 2009
142
143
144
145
/* rcg06042009 report available decoders at runtime. */
static const char **music_decoders = NULL;
static int num_decoders = 0;
Mar 20, 2011
Mar 20, 2011
146
147
148
149
150
/* Semicolon-separated SoundFont paths */
#ifdef MID_MUSIC
char* soundfont_paths = NULL;
#endif
Nov 5, 2009
Nov 5, 2009
151
int Mix_GetNumMusicDecoders(void)
Jun 5, 2009
Jun 5, 2009
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
return(num_decoders);
}
const char *Mix_GetMusicDecoder(int index)
{
if ((index < 0) || (index >= num_decoders)) {
return NULL;
}
return(music_decoders[index]);
}
static void add_music_decoder(const char *decoder)
{
Oct 3, 2009
Oct 3, 2009
166
void *ptr = realloc(music_decoders, (num_decoders + 1) * sizeof (const char **));
Jun 5, 2009
Jun 5, 2009
167
168
169
if (ptr == NULL) {
return; /* oh well, go on without it. */
}
Oct 3, 2009
Oct 3, 2009
170
music_decoders = (const char **) ptr;
Jun 5, 2009
Jun 5, 2009
171
172
173
music_decoders[num_decoders++] = decoder;
}
Oct 30, 1999
Oct 30, 1999
174
/* Local low-level functions prototypes */
Nov 9, 2003
Nov 9, 2003
175
static void music_internal_initialize_volume(void);
May 16, 2002
May 16, 2002
176
177
178
179
180
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
181
Dec 27, 1999
Dec 27, 1999
182
183
184
185
186
187
188
189
190
191
192
193
/* 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();
}
Nov 19, 2005
Nov 19, 2005
194
195
196
197
198
/* If music isn't playing, halt it if no looping is required, restart it */
/* otherwhise. NOP if the music is playing */
static int music_halt_or_loop (void)
{
/* Restart music if it has to loop */
Jan 1, 2012
Jan 1, 2012
199
Nov 19, 2005
Nov 19, 2005
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
if (!music_internal_playing())
{
/* Restart music if it has to loop at a high level */
if (music_loops && --music_loops)
{
Mix_Fading current_fade = music_playing->fading;
music_internal_play(music_playing, 0.0);
music_playing->fading = current_fade;
}
else
{
music_internal_halt();
if (music_finished_hook)
music_finished_hook();
return 0;
}
}
return 1;
}
Oct 21, 1999
Oct 21, 1999
224
225
226
/* Mixing function */
void music_mixer(void *udata, Uint8 *stream, int len)
{
Oct 2, 2009
Oct 2, 2009
227
228
int left = 0;
May 16, 2002
May 16, 2002
229
if ( music_playing && music_active ) {
Nov 1, 1999
Nov 1, 1999
230
/* Handle fading */
Nov 11, 1999
Nov 11, 1999
231
232
if ( music_playing->fading != MIX_NO_FADING ) {
if ( music_playing->fade_step++ < music_playing->fade_steps ) {
May 16, 2002
May 16, 2002
233
int volume;
Dec 26, 1999
Dec 26, 1999
234
235
int fade_step = music_playing->fade_step;
int fade_steps = music_playing->fade_steps;
Nov 11, 1999
Nov 11, 1999
236
Oct 23, 1999
Oct 23, 1999
237
if ( music_playing->fading == MIX_FADING_OUT ) {
May 16, 2002
May 16, 2002
238
volume = (music_volume * (fade_steps-fade_step)) / fade_steps;
Nov 11, 1999
Nov 11, 1999
239
} else { /* Fading in */
May 16, 2002
May 16, 2002
240
volume = (music_volume * fade_step) / fade_steps;
Oct 23, 1999
Oct 23, 1999
241
}
May 16, 2002
May 16, 2002
242
music_internal_volume(volume);
Oct 23, 1999
Oct 23, 1999
243
244
} else {
if ( music_playing->fading == MIX_FADING_OUT ) {
May 16, 2002
May 16, 2002
245
246
247
248
music_internal_halt();
if ( music_finished_hook ) {
music_finished_hook();
}
Nov 11, 1999
Nov 11, 1999
249
return;
Oct 23, 1999
Oct 23, 1999
250
}
Nov 11, 1999
Nov 11, 1999
251
music_playing->fading = MIX_NO_FADING;
Oct 23, 1999
Oct 23, 1999
252
253
}
}
Nov 19, 2005
Nov 19, 2005
254
Jan 1, 2012
Jan 1, 2012
255
256
257
258
music_halt_or_loop();
if (!music_internal_playing())
return;
Oct 21, 1999
Oct 21, 1999
259
260
261
262
263
264
265
266
switch (music_playing->type) {
#ifdef CMD_MUSIC
case MUS_CMD:
/* The playing is done externally */
break;
#endif
#ifdef WAV_MUSIC
case MUS_WAV:
Oct 2, 2009
Oct 2, 2009
267
left = WAVStream_PlaySome(stream, len);
Oct 21, 1999
Oct 21, 1999
268
269
break;
#endif
Nov 16, 2009
Nov 16, 2009
270
271
272
273
274
#ifdef MODPLUG_MUSIC
case MUS_MODPLUG:
left = modplug_playAudio(music_playing->data.modplug, stream, len);
break;
#endif
Oct 3, 2009
Oct 3, 2009
275
#ifdef MOD_MUSIC
Oct 21, 1999
Oct 21, 1999
276
case MUS_MOD:
Oct 3, 2009
Oct 3, 2009
277
left = MOD_playAudio(music_playing->data.module, stream, len);
Oct 21, 1999
Oct 21, 1999
278
279
280
281
break;
#endif
#ifdef MID_MUSIC
case MUS_MID:
Jan 1, 2012
Jan 1, 2012
282
283
284
285
286
287
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
/* Native midi is handled asynchronously */
goto skip;
}
#endif
Mar 20, 2011
Mar 20, 2011
288
289
290
#ifdef USE_FLUIDSYNTH_MIDI
if ( fluidsynth_ok ) {
fluidsynth_playsome(music_playing->data.fluidsynthmidi, stream, len);
Jan 1, 2012
Jan 1, 2012
291
goto skip;
Mar 20, 2011
Mar 20, 2011
292
293
294
}
#endif
#ifdef USE_TIMIDITY_MIDI
Aug 19, 2001
Aug 19, 2001
295
296
297
if ( timidity_ok ) {
int samples = len / samplesize;
Timidity_PlaySome(stream, samples);
Jan 1, 2012
Jan 1, 2012
298
goto skip;
Aug 19, 2001
Aug 19, 2001
299
}
Oct 21, 1999
Oct 21, 1999
300
#endif
Mar 20, 2011
Mar 20, 2011
301
break;
Sep 5, 2001
Sep 5, 2001
302
#endif
Jul 3, 2000
Jul 3, 2000
303
304
#ifdef OGG_MUSIC
case MUS_OGG:
Nov 19, 2005
Nov 19, 2005
305
Oct 2, 2009
Oct 2, 2009
306
left = OGG_playAudio(music_playing->data.ogg, stream, len);
Jul 3, 2000
Jul 3, 2000
307
308
break;
#endif
Feb 27, 2008
Feb 27, 2008
309
310
#ifdef FLAC_MUSIC
case MUS_FLAC:
Oct 2, 2009
Oct 2, 2009
311
left = FLAC_playAudio(music_playing->data.flac, stream, len);
Feb 27, 2008
Feb 27, 2008
312
313
break;
#endif
Oct 21, 1999
Oct 21, 1999
314
#ifdef MP3_MUSIC
Dec 26, 1999
Dec 26, 1999
315
case MUS_MP3:
Oct 2, 2009
Oct 2, 2009
316
left = (len - smpeg.SMPEG_playAudio(music_playing->data.mp3, stream, len));
Oct 21, 1999
Oct 21, 1999
317
break;
Jul 15, 2007
Jul 15, 2007
318
319
320
#endif
#ifdef MP3_MAD_MUSIC
case MUS_MP3_MAD:
Oct 2, 2009
Oct 2, 2009
321
left = mad_getSamples(music_playing->data.mp3_mad, stream, len);
Jul 15, 2007
Jul 15, 2007
322
break;
Oct 21, 1999
Oct 21, 1999
323
324
325
326
327
#endif
default:
/* Unknown music type?? */
break;
}
Jan 1, 2012
Jan 1, 2012
328
}
Oct 2, 2009
Oct 2, 2009
329
Jan 1, 2012
Jan 1, 2012
330
331
332
skip:
/* Handle seamless music looping */
if (left > 0 && left < len) {
Jun 15, 2011
Jun 15, 2011
333
music_halt_or_loop();
Jan 1, 2012
Jan 1, 2012
334
if (music_internal_playing())
Jun 15, 2011
Jun 15, 2011
335
music_mixer(udata, stream+(len-left), left);
Oct 2, 2009
Oct 2, 2009
336
}
Oct 21, 1999
Oct 21, 1999
337
338
339
340
341
342
}
/* Initialize the music players with a certain desired audio format */
int open_music(SDL_AudioSpec *mixer)
{
#ifdef WAV_MUSIC
Nov 14, 2009
Nov 14, 2009
343
if ( WAVStream_Init(mixer) == 0 ) {
Jun 5, 2009
Jun 5, 2009
344
add_music_decoder("WAVE");
Oct 21, 1999
Oct 21, 1999
345
346
}
#endif
Nov 16, 2009
Nov 16, 2009
347
#ifdef MODPLUG_MUSIC
Feb 4, 2010
Feb 4, 2010
348
if ( modplug_init(mixer) == 0 ) {
Nov 16, 2009
Nov 16, 2009
349
350
351
add_music_decoder("MODPLUG");
}
#endif
Oct 3, 2009
Oct 3, 2009
352
#ifdef MOD_MUSIC
Nov 14, 2009
Nov 14, 2009
353
if ( MOD_init(mixer) == 0 ) {
Oct 3, 2009
Oct 3, 2009
354
add_music_decoder("MIKMOD");
Oct 21, 1999
Oct 21, 1999
355
356
357
}
#endif
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
358
#ifdef USE_TIMIDITY_MIDI
Dec 17, 2001
Dec 17, 2001
359
samplesize = mixer->size / mixer->samples;
Aug 19, 2001
Aug 19, 2001
360
if ( Timidity_Init(mixer->freq, mixer->format,
Aug 20, 2001
Aug 20, 2001
361
mixer->channels, mixer->samples) == 0 ) {
Aug 19, 2001
Aug 19, 2001
362
timidity_ok = 1;
Jun 5, 2009
Jun 5, 2009
363
add_music_decoder("TIMIDITY");
Oct 21, 1999
Oct 21, 1999
364
365
366
} else {
timidity_ok = 0;
}
Sep 5, 2001
Sep 5, 2001
367
#endif
Mar 20, 2011
Mar 20, 2011
368
369
370
371
372
373
374
375
#ifdef USE_FLUIDSYNTH_MIDI
if ( fluidsynth_init(mixer) == 0 ) {
fluidsynth_ok = 1;
add_music_decoder("FLUIDSYNTH");
} else {
fluidsynth_ok = 0;
}
#endif
Aug 19, 2001
Aug 19, 2001
376
#ifdef USE_NATIVE_MIDI
Mar 20, 2011
Mar 20, 2011
377
378
379
380
#ifdef USE_FLUIDSYNTH_MIDI
native_midi_ok = !fluidsynth_ok;
if ( native_midi_ok )
#endif
Sep 5, 2001
Sep 5, 2001
381
#ifdef USE_TIMIDITY_MIDI
Mar 20, 2011
Mar 20, 2011
382
native_midi_ok = !timidity_ok;
Oct 3, 2009
Oct 3, 2009
383
384
385
if ( !native_midi_ok ) {
native_midi_ok = (getenv("SDL_NATIVE_MUSIC") != NULL);
}
Sep 5, 2001
Sep 5, 2001
386
387
if ( native_midi_ok )
#endif
Aug 19, 2001
Aug 19, 2001
388
native_midi_ok = native_midi_detect();
Jun 5, 2009
Jun 5, 2009
389
390
if ( native_midi_ok )
add_music_decoder("NATIVEMIDI");
Aug 19, 2001
Aug 19, 2001
391
#endif
Oct 21, 1999
Oct 21, 1999
392
#endif
Jul 3, 2000
Jul 3, 2000
393
#ifdef OGG_MUSIC
Nov 14, 2009
Nov 14, 2009
394
if ( OGG_init(mixer) == 0 ) {
Jun 5, 2009
Jun 5, 2009
395
add_music_decoder("OGG");
Jul 3, 2000
Jul 3, 2000
396
397
}
#endif
Feb 27, 2008
Feb 27, 2008
398
#ifdef FLAC_MUSIC
Nov 14, 2009
Nov 14, 2009
399
if ( FLAC_init(mixer) == 0 ) {
Jun 5, 2009
Jun 5, 2009
400
add_music_decoder("FLAC");
Feb 27, 2008
Feb 27, 2008
401
402
}
#endif
Jul 15, 2007
Jul 15, 2007
403
#if defined(MP3_MUSIC) || defined(MP3_MAD_MUSIC)
Oct 21, 1999
Oct 21, 1999
404
405
/* Keep a copy of the mixer */
used_mixer = *mixer;
Jun 5, 2009
Jun 5, 2009
406
add_music_decoder("MP3");
Oct 21, 1999
Oct 21, 1999
407
#endif
Jun 5, 2009
Jun 5, 2009
408
Feb 1, 2000
Feb 1, 2000
409
music_playing = NULL;
Oct 26, 1999
Oct 26, 1999
410
music_stopped = 0;
Oct 21, 1999
Oct 21, 1999
411
412
Mix_VolumeMusic(SDL_MIX_MAXVOLUME);
Dec 26, 1999
Dec 26, 1999
413
/* Calculate the number of ms for each callback */
Feb 2, 2000
Feb 2, 2000
414
ms_per_step = (int) (((float)mixer->samples * 1000.0) / mixer->freq);
Nov 11, 1999
Nov 11, 1999
415
Oct 21, 1999
Oct 21, 1999
416
417
418
return(0);
}
Oct 16, 2001
Oct 16, 2001
419
420
421
422
423
424
425
426
427
428
429
430
431
/* 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
432
433
434
435
/* Load a music file */
Mix_Music *Mix_LoadMUS(const char *file)
{
FILE *fp;
Oct 16, 2001
Oct 16, 2001
436
char *ext;
Aug 21, 2004
Aug 21, 2004
437
Uint8 magic[5], moremagic[9];
Oct 21, 1999
Oct 21, 1999
438
439
440
441
442
443
444
445
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
446
Mix_SetError("Couldn't read from '%s'", file);
Oct 21, 1999
Oct 21, 1999
447
448
return(NULL);
}
Aug 21, 2004
Aug 21, 2004
449
450
451
452
if (!fread(moremagic, 8, 1, fp)) {
Mix_SetError("Couldn't read from '%s'", file);
return(NULL);
}
Oct 21, 1999
Oct 21, 1999
453
magic[4] = '\0';
Aug 21, 2004
Aug 21, 2004
454
moremagic[8] = '\0';
Oct 21, 1999
Oct 21, 1999
455
456
fclose(fp);
Oct 16, 2001
Oct 16, 2001
457
458
459
460
/* 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
461
462
463
/* Allocate memory for the music structure */
music = (Mix_Music *)malloc(sizeof(Mix_Music));
if ( music == NULL ) {
Dec 26, 1999
Dec 26, 1999
464
Mix_SetError("Out of memory");
Oct 21, 1999
Oct 21, 1999
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
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
482
if ( (ext && MIX_string_equals(ext, "WAV")) ||
Aug 21, 2004
Aug 21, 2004
483
((strcmp((char *)magic, "RIFF") == 0) && (strcmp((char *)(moremagic+4), "WAVE") == 0)) ||
Mar 4, 2000
Mar 4, 2000
484
(strcmp((char *)magic, "FORM") == 0) ) {
Oct 21, 1999
Oct 21, 1999
485
music->type = MUS_WAV;
Mar 4, 2000
Mar 4, 2000
486
music->data.wave = WAVStream_LoadSong(file, (char *)magic);
Oct 21, 1999
Oct 21, 1999
487
if ( music->data.wave == NULL ) {
Nov 30, 2001
Nov 30, 2001
488
Mix_SetError("Unable to load WAV file");
Oct 21, 1999
Oct 21, 1999
489
490
491
492
493
494
music->error = 1;
}
} else
#endif
#ifdef MID_MUSIC
/* MIDI files have the magic four bytes "MThd" */
Nov 30, 2001
Nov 30, 2001
495
496
if ( (ext && MIX_string_equals(ext, "MID")) ||
(ext && MIX_string_equals(ext, "MIDI")) ||
Aug 21, 2004
Aug 21, 2004
497
498
499
strcmp((char *)magic, "MThd") == 0 ||
( strcmp((char *)magic, "RIFF") == 0 &&
strcmp((char *)(moremagic+4), "RMID") == 0 ) ) {
Oct 21, 1999
Oct 21, 1999
500
music->type = MUS_MID;
Aug 19, 2001
Aug 19, 2001
501
502
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
Jan 1, 2012
Jan 1, 2012
503
/*printf("Native MIDI\n");*/
Sep 26, 2009
Sep 26, 2009
504
music->data.nativemidi = native_midi_loadsong(file);
Aug 19, 2001
Aug 19, 2001
505
506
507
508
if ( music->data.nativemidi == NULL ) {
Mix_SetError("%s", native_midi_error());
music->error = 1;
}
Mar 20, 2011
Mar 20, 2011
509
510
511
512
513
goto skip;
}
#endif
#ifdef USE_FLUIDSYNTH_MIDI
if ( fluidsynth_ok ) {
Jan 1, 2012
Jan 1, 2012
514
/*printf("FluidSynth MIDI\n");*/
Mar 20, 2011
Mar 20, 2011
515
516
517
518
519
520
music->data.fluidsynthmidi = fluidsynth_loadsong(file);
if ( music->data.fluidsynthmidi == NULL ) {
music->error = 1;
}
goto skip;
}
Aug 19, 2001
Aug 19, 2001
521
#endif
Sep 5, 2001
Sep 5, 2001
522
#ifdef USE_TIMIDITY_MIDI
Oct 21, 1999
Oct 21, 1999
523
if ( timidity_ok ) {
Jan 1, 2012
Jan 1, 2012
524
/*printf("Timidity MIDI\n");*/
Oct 10, 2009
Oct 10, 2009
525
music->data.midi = Timidity_LoadSong(file);
Oct 21, 1999
Oct 21, 1999
526
if ( music->data.midi == NULL ) {
Dec 26, 1999
Dec 26, 1999
527
Mix_SetError("%s", Timidity_Error());
Oct 21, 1999
Oct 21, 1999
528
529
music->error = 1;
}
Aug 19, 2001
Aug 19, 2001
530
} else {
Dec 26, 1999
Dec 26, 1999
531
Mix_SetError("%s", Timidity_Error());
Oct 21, 1999
Oct 21, 1999
532
533
music->error = 1;
}
Sep 5, 2001
Sep 5, 2001
534
#endif
Oct 21, 1999
Oct 21, 1999
535
536
} else
#endif
Jul 3, 2000
Jul 3, 2000
537
538
#ifdef OGG_MUSIC
/* Ogg Vorbis files have the magic four bytes "OggS" */
Nov 30, 2001
Nov 30, 2001
539
if ( (ext && MIX_string_equals(ext, "OGG")) ||
Nov 30, 2001
Nov 30, 2001
540
strcmp((char *)magic, "OggS") == 0 ) {
Jul 3, 2000
Jul 3, 2000
541
542
543
544
545
546
547
music->type = MUS_OGG;
music->data.ogg = OGG_new(file);
if ( music->data.ogg == NULL ) {
music->error = 1;
}
} else
#endif
Feb 27, 2008
Feb 27, 2008
548
549
550
551
552
553
554
555
556
557
558
#ifdef FLAC_MUSIC
/* FLAC files have the magic four bytes "fLaC" */
if ( (ext && MIX_string_equals(ext, "FLAC")) ||
strcmp((char *)magic, "fLaC") == 0 ) {
music->type = MUS_FLAC;
music->data.flac = FLAC_new(file);
if ( music->data.flac == NULL ) {
music->error = 1;
}
} else
#endif
Oct 21, 1999
Oct 21, 1999
559
#ifdef MP3_MUSIC
Nov 30, 2001
Nov 30, 2001
560
if ( (ext && MIX_string_equals(ext, "MPG")) ||
Jun 26, 2002
Jun 26, 2002
561
(ext && MIX_string_equals(ext, "MP3")) ||
Nov 30, 2001
Nov 30, 2001
562
(ext && MIX_string_equals(ext, "MPEG")) ||
Sep 26, 2009
Sep 26, 2009
563
564
(magic[0] == 0xFF && (magic[1] & 0xF0) == 0xF0) ||
(strncmp((char *)magic, "ID3", 3) == 0) ) {
Nov 8, 2009
Nov 8, 2009
565
if ( Mix_Init(MIX_INIT_MP3) ) {
May 12, 2006
May 12, 2006
566
567
568
569
570
571
572
573
574
SMPEG_Info info;
music->type = MUS_MP3;
music->data.mp3 = smpeg.SMPEG_new(file, &info, 0);
if ( !info.has_audio ) {
Mix_SetError("MPEG file does not have any audio stream.");
music->error = 1;
} else {
smpeg.SMPEG_actualSpec(music->data.mp3, &used_mixer);
}
Dec 21, 2004
Dec 21, 2004
575
} else {
May 12, 2006
May 12, 2006
576
music->error = 1;
Oct 21, 1999
Oct 21, 1999
577
578
579
}
} else
#endif
Jul 15, 2007
Jul 15, 2007
580
581
582
583
584
#ifdef MP3_MAD_MUSIC
if ( (ext && MIX_string_equals(ext, "MPG")) ||
(ext && MIX_string_equals(ext, "MP3")) ||
(ext && MIX_string_equals(ext, "MPEG")) ||
(ext && MIX_string_equals(ext, "MAD")) ||
Sep 26, 2009
Sep 26, 2009
585
586
(magic[0] == 0xFF && (magic[1] & 0xF0) == 0xF0) ||
(strncmp((char *)magic, "ID3", 3) == 0) ) {
Jul 15, 2007
Jul 15, 2007
587
588
589
590
591
592
593
594
music->type = MUS_MP3_MAD;
music->data.mp3_mad = mad_openFile(file, &used_mixer);
if (music->data.mp3_mad == 0) {
Mix_SetError("Could not initialize MPEG stream.");
music->error = 1;
}
} else
#endif
Nov 16, 2009
Nov 16, 2009
595
596
597
598
599
600
601
602
603
#ifdef MODPLUG_MUSIC
if ( 1 ) {
music->type = MUS_MODPLUG;
music->data.modplug = modplug_new(file);
if ( music->data.modplug == NULL ) {
music->error = 1;
}
} else
#endif
Oct 3, 2009
Oct 3, 2009
604
#ifdef MOD_MUSIC
Oct 21, 1999
Oct 21, 1999
605
606
if ( 1 ) {
music->type = MUS_MOD;
Oct 3, 2009
Oct 3, 2009
607
music->data.module = MOD_new(file);
Oct 21, 1999
Oct 21, 1999
608
609
610
611
612
613
if ( music->data.module == NULL ) {
music->error = 1;
}
} else
#endif
{
Dec 26, 1999
Dec 26, 1999
614
Mix_SetError("Unrecognized music format");
Oct 21, 1999
Oct 21, 1999
615
616
music->error = 1;
}
Mar 20, 2011
Mar 20, 2011
617
618
skip:
Oct 21, 1999
Oct 21, 1999
619
620
621
622
623
624
625
626
627
628
629
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
630
631
632
633
634
635
636
637
638
639
640
/* 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
641
}
Oct 21, 1999
Oct 21, 1999
642
}
May 16, 2002
May 16, 2002
643
SDL_UnlockAudio();
Oct 21, 1999
Oct 21, 1999
644
645
646
647
648
649
650
651
652
653
654
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
Nov 16, 2009
Nov 16, 2009
655
656
657
658
659
#ifdef MODPLUG_MUSIC
case MUS_MODPLUG:
modplug_delete(music->data.modplug);
break;
#endif
Oct 3, 2009
Oct 3, 2009
660
#ifdef MOD_MUSIC
Oct 21, 1999
Oct 21, 1999
661
case MUS_MOD:
Oct 3, 2009
Oct 3, 2009
662
MOD_delete(music->data.module);
Oct 21, 1999
Oct 21, 1999
663
664
665
666
break;
#endif
#ifdef MID_MUSIC
case MUS_MID:
Aug 19, 2001
Aug 19, 2001
667
668
669
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
native_midi_freesong(music->data.nativemidi);
Mar 20, 2011
Mar 20, 2011
670
671
672
673
674
675
676
677
goto skip;
}
#endif
#ifdef USE_FLUIDSYNTH_MIDI
if ( fluidsynth_ok ) {
fluidsynth_freesong(music->data.fluidsynthmidi);
goto skip;
}
Aug 19, 2001
Aug 19, 2001
678
#endif
Sep 5, 2001
Sep 5, 2001
679
#ifdef USE_TIMIDITY_MIDI
Aug 19, 2001
Aug 19, 2001
680
681
if ( timidity_ok ) {
Timidity_FreeSong(music->data.midi);
Mar 20, 2011
Mar 20, 2011
682
goto skip;
Aug 19, 2001
Aug 19, 2001
683
}
Sep 5, 2001
Sep 5, 2001
684
#endif
Oct 21, 1999
Oct 21, 1999
685
686
break;
#endif
Jul 3, 2000
Jul 3, 2000
687
688
689
690
691
#ifdef OGG_MUSIC
case MUS_OGG:
OGG_delete(music->data.ogg);
break;
#endif
Feb 27, 2008
Feb 27, 2008
692
693
694
695
696
#ifdef FLAC_MUSIC
case MUS_FLAC:
FLAC_delete(music->data.flac);
break;
#endif
Oct 21, 1999
Oct 21, 1999
697
#ifdef MP3_MUSIC
Dec 26, 1999
Dec 26, 1999
698
case MUS_MP3:
May 12, 2006
May 12, 2006
699
smpeg.SMPEG_delete(music->data.mp3);
Oct 21, 1999
Oct 21, 1999
700
break;
Jul 15, 2007
Jul 15, 2007
701
702
703
704
705
#endif
#ifdef MP3_MAD_MUSIC
case MUS_MP3_MAD:
mad_closeFile(music->data.mp3_mad);
break;
Oct 21, 1999
Oct 21, 1999
706
707
708
709
710
#endif
default:
/* Unknown music type?? */
break;
}
Mar 20, 2011
Mar 20, 2011
711
712
skip:
Oct 21, 1999
Oct 21, 1999
713
714
715
716
free(music);
}
}
May 19, 2002
May 19, 2002
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
/* 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
736
737
738
/* 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
739
{
May 16, 2002
May 16, 2002
740
741
int retval = 0;
Jan 1, 2012
Jan 1, 2012
742
743
744
#ifdef __MACOSX__
/* This fixes a bug with native MIDI on Mac OS X, where you
can't really stop and restart MIDI from the audio callback.
Jan 1, 2012
Jan 1, 2012
745
*/
Jan 1, 2012
Jan 1, 2012
746
747
748
749
if ( music == music_playing && music->type == MUS_MID && native_midi_ok ) {
/* Just a seek suffices to restart playing */
music_internal_position(position);
return 0;
Jan 1, 2012
Jan 1, 2012
750
}
Jan 1, 2012
Jan 1, 2012
751
#endif
Jan 1, 2012
Jan 1, 2012
752
May 16, 2002
May 16, 2002
753
754
755
756
757
/* Note the music we're playing */
if ( music_playing ) {
music_internal_halt();
}
music_playing = music;
Oct 30, 1999
Oct 30, 1999
758
May 16, 2002
May 16, 2002
759
/* Set the initial volume */
Nov 9, 2003
Nov 9, 2003
760
761
if ( music->type != MUS_MOD ) {
music_internal_initialize_volume();
May 16, 2002
May 16, 2002
762
763
764
}
/* Set up for playback */
Oct 21, 1999
Oct 21, 1999
765
766
switch (music->type) {
#ifdef CMD_MUSIC
May 16, 2002
May 16, 2002
767
768
769
case MUS_CMD:
MusicCMD_Start(music->data.cmd);
break;
Oct 21, 1999
Oct 21, 1999
770
771
#endif
#ifdef WAV_MUSIC
May 16, 2002
May 16, 2002
772
773
774
case MUS_WAV:
WAVStream_Start(music->data.wave);
break;
Oct 21, 1999
Oct 21, 1999
775
#endif
Nov 16, 2009
Nov 16, 2009
776
777
778
779
780
781
782
#ifdef MODPLUG_MUSIC
case MUS_MODPLUG:
/* can't set volume until file is loaded, so finally set it now */
music_internal_initialize_volume();
modplug_play(music->data.modplug);
break;
#endif
Oct 3, 2009
Oct 3, 2009
783
#ifdef MOD_MUSIC
May 16, 2002
May 16, 2002
784
case MUS_MOD:
Oct 3, 2009
Oct 3, 2009
785
MOD_play(music->data.module);
Nov 9, 2003
Nov 9, 2003
786
787
/* Player_SetVolume() does nothing before Player_Start() */
music_internal_initialize_volume();
May 16, 2002
May 16, 2002
788
break;
Oct 21, 1999
Oct 21, 1999
789
790
#endif
#ifdef MID_MUSIC
May 16, 2002
May 16, 2002
791
case MUS_MID:
Aug 19, 2001
Aug 19, 2001
792
#ifdef USE_NATIVE_MIDI
May 16, 2002
May 16, 2002
793
794
if ( native_midi_ok ) {
native_midi_start(music->data.nativemidi);
Mar 20, 2011
Mar 20, 2011
795
796
797
798
799
800
801
802
goto skip;
}
#endif
#ifdef USE_FLUIDSYNTH_MIDI
if (fluidsynth_ok ) {
fluidsynth_start(music->data.fluidsynthmidi);
goto skip;
}
Aug 19, 2001
Aug 19, 2001
803
#endif
Sep 5, 2001
Sep 5, 2001
804
#ifdef USE_TIMIDITY_MIDI
May 16, 2002
May 16, 2002
805
806
if ( timidity_ok ) {
Timidity_Start(music->data.midi);
Mar 20, 2011
Mar 20, 2011
807
goto skip;
May 16, 2002
May 16, 2002
808
}
Sep 5, 2001
Sep 5, 2001
809
#endif
May 16, 2002
May 16, 2002
810
break;
Oct 21, 1999
Oct 21, 1999
811
#endif
Jul 3, 2000
Jul 3, 2000
812
#ifdef OGG_MUSIC
May 16, 2002
May 16, 2002
813
814
815
case MUS_OGG:
OGG_play(music->data.ogg);
break;
Jul 3, 2000
Jul 3, 2000
816
#endif
Feb 27, 2008
Feb 27, 2008
817
818
819
820
821
#ifdef FLAC_MUSIC
case MUS_FLAC:
FLAC_play(music->data.flac);
break;
#endif
Oct 21, 1999
Oct 21, 1999
822
#ifdef MP3_MUSIC
May 16, 2002
May 16, 2002
823
case MUS_MP3:
May 12, 2006
May 12, 2006
824
825
826
smpeg.SMPEG_enableaudio(music->data.mp3,1);
smpeg.SMPEG_enablevideo(music->data.mp3,0);
smpeg.SMPEG_play(music_playing->data.mp3);
May 16, 2002
May 16, 2002
827
break;
Jul 15, 2007
Jul 15, 2007
828
829
830
831
832
#endif
#ifdef MP3_MAD_MUSIC
case MUS_MP3_MAD:
mad_start(music->data.mp3_mad);
break;
Oct 21, 1999
Oct 21, 1999
833
#endif
May 16, 2002
May 16, 2002
834
835
836
837
default:
Mix_SetError("Can't play unknown music type");
retval = -1;
break;
Oct 21, 1999
Oct 21, 1999
838
}
Oct 30, 1999
Oct 30, 1999
839
Mar 20, 2011
Mar 20, 2011
840
skip:
May 16, 2002
May 16, 2002
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
/* 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
860
{
May 16, 2002
May 16, 2002
861
862
int retval;
Jan 24, 2011
Jan 24, 2011
863
864
865
866
867
if ( ms_per_step == 0 ) {
SDL_SetError("Audio device hasn't been opened");
return(-1);
}
Oct 30, 1999
Oct 30, 1999
868
869
/* Don't play null pointers :-) */
if ( music == NULL ) {
May 16, 2002
May 16, 2002
870
Mix_SetError("music parameter was NULL");
Oct 30, 1999
Oct 30, 1999
871
872
return(-1);
}
May 16, 2002
May 16, 2002
873
874
875
876
877
878
/* Setup the data */
if ( ms ) {
music->fading = MIX_FADING_IN;
} else {
music->fading = MIX_NO_FADING;
Oct 30, 1999
Oct 30, 1999
879
}
May 16, 2002
May 16, 2002
880
881
music->fade_step = 0;
music->fade_steps = ms/ms_per_step;
Oct 30, 1999
Oct 30, 1999
882
May 16, 2002
May 16, 2002
883
884
885
886
887
888
889
/* 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
890
}
Oct 21, 1999
Oct 21, 1999
891
music_active = 1;
Oct 30, 1999
Oct 30, 1999
892
music_loops = loops;
May 16, 2002
May 16, 2002
893
894
895
896
897
898
899
900
901
902
903
904
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
905
906
}
May 16, 2002
May 16, 2002
907
908
/* Set the playing music position */
int music_internal_position(double position)
Dec 19, 2001
Dec 19, 2001
909
{
May 16, 2002
May 16, 2002
910
911
912
int retval = 0;
switch (music_playing->type) {
Nov 16, 2009
Nov 16, 2009
913
914
915
916
917
#ifdef MODPLUG_MUSIC
case MUS_MODPLUG:
modplug_jump_to_time(music_playing->data.modplug, position);
break;
#endif
Oct 3, 2009
Oct 3, 2009
918
#ifdef MOD_MUSIC
May 16, 2002
May 16, 2002
919
case MUS_MOD:
Oct 3, 2009
Oct 3, 2009
920
MOD_jump_to_time(music_playing->data.module, position);
May 16, 2002
May 16, 2002
921
break;
Dec 20, 2001
Dec 20, 2001
922
#endif
Jan 1, 2012
Jan 1, 2012
923
924
925
926
927
928
929
930
931
932
933
934
#ifdef MID_MUSIC
case MUS_MID:
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
retval = native_midi_jump_to_time(music_playing->data.nativemidi, position);
break;
}
#endif
/* TODO: Implement this for other music backends */
retval = -1;
break;
#endif
Dec 20, 2001
Dec 20, 2001
935
#ifdef OGG_MUSIC
May 16, 2002
May 16, 2002
936
937
938
case MUS_OGG:
OGG_jump_to_time(music_playing->data.ogg, position);
break;
Jan 14, 2002
Jan 14, 2002
939
#endif
Feb 27, 2008
Feb 27, 2008
940
941
942
943
944
#ifdef FLAC_MUSIC
case MUS_FLAC:
FLAC_jump_to_time(music_playing->data.flac, position);
break;
#endif
Jan 14, 2002
Jan 14, 2002
945
#ifdef MP3_MUSIC
May 16, 2002
May 16, 2002
946
case MUS_MP3:
May 19, 2002
May 19, 2002
947
if ( position > 0.0 ) {
May 12, 2006
May 12, 2006
948
smpeg.SMPEG_skip(music_playing->data.mp3, (float)position);
May 19, 2002
May 19, 2002
949
} else {
May 12, 2006
May 12, 2006
950
951
smpeg.SMPEG_rewind(music_playing->data.mp3);
smpeg.SMPEG_play(music_playing->data.mp3);
Dec 19, 2001
Dec 19, 2001
952
}
May 16, 2002
May 16, 2002
953
break;
Jul 15, 2007
Jul 15, 2007
954
955
956
957
958
#endif
#ifdef MP3_MAD_MUSIC
case MUS_MP3_MAD:
mad_seek(music_playing->data.mp3_mad, position);
break;
May 16, 2002
May 16, 2002
959
960
961
962
963
#endif
default:
/* TODO: Implement this for other music backends */
retval = -1;
break;
Dec 19, 2001
Dec 19, 2001
964
}
May 16, 2002
May 16, 2002
965
return(retval);
Dec 19, 2001
Dec 19, 2001
966
}
May 16, 2002
May 16, 2002
967
int Mix_SetMusicPosition(double position)
Oct 23, 1999
Oct 23, 1999
968
{
May 16, 2002
May 16, 2002
969
970
971
972
973
974
975
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
976
}
May 16, 2002
May 16, 2002
977
978
979
} else {
Mix_SetError("Music isn't playing");
retval = -1;
Oct 23, 1999
Oct 23, 1999
980
}
May 16, 2002
May 16, 2002
981
SDL_UnlockAudio();
Oct 21, 1999
Oct 21, 1999
982
May 16, 2002
May 16, 2002
983
return(retval);
Dec 19, 2001
Dec 19, 2001
984
985
}
Nov 9, 2003
Nov 9, 2003
986
987
988
989
990
991
992
993
994
995
/* Set the music's initial volume */
static void music_internal_initialize_volume(void)
{
if ( music_playing->fading == MIX_FADING_IN ) {
music_internal_volume(0);
} else {
music_internal_volume(music_volume);
}
}
Oct 21, 1999
Oct 21, 1999
996
/* Set the music volume */
May 16, 2002
May 16, 2002
997
static void music_internal_volume(int volume)
Oct 21, 1999
Oct 21, 1999
998
{
May 16, 2002
May 16, 2002
999
switch (music_playing->type) {
Oct 21, 1999
Oct 21, 1999
1000
#ifdef CMD_MUSIC