Skip to content

Latest commit

 

History

History
1583 lines (1462 loc) · 32.9 KB

music.c

File metadata and controls

1583 lines (1462 loc) · 32.9 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"
Oct 11, 2018
Oct 11, 2018
62
#include "music_mpg.h"
Jul 15, 2007
Jul 15, 2007
63
64
65
66
#endif
#ifdef MP3_MAD_MUSIC
#include "music_mad.h"
#endif
Feb 27, 2008
Feb 27, 2008
67
68
69
#ifdef FLAC_MUSIC
#include "music_flac.h"
#endif
Oct 21, 1999
Oct 21, 1999
70
Jul 15, 2007
Jul 15, 2007
71
#if defined(MP3_MUSIC) || defined(MP3_MAD_MUSIC)
Oct 21, 1999
Oct 21, 1999
72
73
74
static SDL_AudioSpec used_mixer;
#endif
Jul 15, 2007
Jul 15, 2007
75
Feb 1, 2000
Feb 1, 2000
76
77
int volatile music_active = 1;
static int volatile music_stopped = 0;
Oct 21, 1999
Oct 21, 1999
78
79
static int music_loops = 0;
static char *music_cmd = NULL;
Feb 1, 2000
Feb 1, 2000
80
static Mix_Music * volatile music_playing = NULL;
Nov 11, 1999
Nov 11, 1999
81
static int music_volume = MIX_MAX_VOLUME;
Oct 23, 1999
Oct 23, 1999
82
Oct 21, 1999
Oct 21, 1999
83
struct _Mix_Music {
May 19, 2002
May 19, 2002
84
Mix_MusicType type;
Oct 21, 1999
Oct 21, 1999
85
86
87
88
89
90
91
union {
#ifdef CMD_MUSIC
MusicCMD *cmd;
#endif
#ifdef WAV_MUSIC
WAVStream *wave;
#endif
Nov 16, 2009
Nov 16, 2009
92
93
94
#ifdef MODPLUG_MUSIC
modplug_data *modplug;
#endif
Oct 3, 2009
Oct 3, 2009
95
96
#ifdef MOD_MUSIC
struct MODULE *module;
Oct 21, 1999
Oct 21, 1999
97
98
#endif
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
99
#ifdef USE_TIMIDITY_MIDI
Oct 21, 1999
Oct 21, 1999
100
MidiSong *midi;
Sep 5, 2001
Sep 5, 2001
101
#endif
Mar 20, 2011
Mar 20, 2011
102
103
104
#ifdef USE_FLUIDSYNTH_MIDI
FluidSynthMidiSong *fluidsynthmidi;
#endif
Aug 19, 2001
Aug 19, 2001
105
106
107
#ifdef USE_NATIVE_MIDI
NativeMidiSong *nativemidi;
#endif
Oct 21, 1999
Oct 21, 1999
108
#endif
Jul 3, 2000
Jul 3, 2000
109
110
111
#ifdef OGG_MUSIC
OGG_music *ogg;
#endif
Oct 21, 1999
Oct 21, 1999
112
#ifdef MP3_MUSIC
Oct 11, 2018
Oct 11, 2018
113
mpg_data *mp3_mpg;
Jul 15, 2007
Jul 15, 2007
114
115
116
#endif
#ifdef MP3_MAD_MUSIC
mad_data *mp3_mad;
Feb 27, 2008
Feb 27, 2008
117
118
119
#endif
#ifdef FLAC_MUSIC
FLAC_music *flac;
Oct 21, 1999
Oct 21, 1999
120
121
#endif
} data;
Oct 23, 1999
Oct 23, 1999
122
Mix_Fading fading;
Nov 11, 1999
Nov 11, 1999
123
124
int fade_step;
int fade_steps;
Oct 21, 1999
Oct 21, 1999
125
126
int error;
};
Dec 27, 1999
Dec 27, 1999
127
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
128
#ifdef USE_TIMIDITY_MIDI
Oct 21, 1999
Oct 21, 1999
129
static int timidity_ok;
Dec 17, 2001
Dec 17, 2001
130
static int samplesize;
Sep 5, 2001
Sep 5, 2001
131
#endif
Mar 20, 2011
Mar 20, 2011
132
133
134
#ifdef USE_FLUIDSYNTH_MIDI
static int fluidsynth_ok;
#endif
Aug 19, 2001
Aug 19, 2001
135
136
137
#ifdef USE_NATIVE_MIDI
static int native_midi_ok;
#endif
Dec 27, 1999
Dec 27, 1999
138
#endif
Oct 21, 1999
Oct 21, 1999
139
Nov 11, 1999
Nov 11, 1999
140
141
142
/* Used to calculate fading steps */
static int ms_per_step;
Jun 5, 2009
Jun 5, 2009
143
144
145
146
/* rcg06042009 report available decoders at runtime. */
static const char **music_decoders = NULL;
static int num_decoders = 0;
Mar 20, 2011
Mar 20, 2011
147
148
149
/* Semicolon-separated SoundFont paths */
char* soundfont_paths = NULL;
Nov 5, 2009
Nov 5, 2009
150
int Mix_GetNumMusicDecoders(void)
Jun 5, 2009
Jun 5, 2009
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
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 6, 2018
Oct 6, 2018
165
void *ptr = SDL_realloc(music_decoders, (num_decoders + 1) * sizeof (const char *));
Jun 5, 2009
Jun 5, 2009
166
167
168
if (ptr == NULL) {
return; /* oh well, go on without it. */
}
Oct 3, 2009
Oct 3, 2009
169
music_decoders = (const char **) ptr;
Jun 5, 2009
Jun 5, 2009
170
171
172
music_decoders[num_decoders++] = decoder;
}
Oct 30, 1999
Oct 30, 1999
173
/* Local low-level functions prototypes */
Nov 9, 2003
Nov 9, 2003
174
static void music_internal_initialize_volume(void);
May 16, 2002
May 16, 2002
175
176
177
178
179
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
180
Dec 27, 1999
Dec 27, 1999
181
182
/* Support for hooking when the music has finished */
Oct 7, 2018
Oct 7, 2018
183
static void (SDLCALL *music_finished_hook)(void) = NULL;
Dec 27, 1999
Dec 27, 1999
184
Oct 7, 2018
Oct 7, 2018
185
void Mix_HookMusicFinished(void (SDLCALL *music_finished)(void))
Dec 27, 1999
Dec 27, 1999
186
187
188
189
190
191
192
{
SDL_LockAudio();
music_finished_hook = music_finished;
SDL_UnlockAudio();
}
Nov 19, 2005
Nov 19, 2005
193
194
195
196
197
/* 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 */
Sep 5, 2019
Sep 5, 2019
198
if (!music_internal_playing()) {
Jan 4, 2012
Jan 4, 2012
199
#ifdef USE_NATIVE_MIDI
Jan 1, 2012
Jan 1, 2012
200
201
202
203
/* Native MIDI handles looping internally */
if (music_playing->type == MUS_MID && native_midi_ok) {
music_loops = 0;
}
Jan 4, 2012
Jan 4, 2012
204
#endif
Jan 1, 2012
Jan 1, 2012
205
Nov 19, 2005
Nov 19, 2005
206
/* Restart music if it has to loop at a high level */
Sep 5, 2019
Sep 5, 2019
207
if (music_loops) {
Jan 1, 2012
Jan 1, 2012
208
Mix_Fading current_fade;
Sep 5, 2019
Sep 5, 2019
209
210
211
if (music_loops > 0) {
--music_loops;
}
Jan 1, 2012
Jan 1, 2012
212
current_fade = music_playing->fading;
Nov 19, 2005
Nov 19, 2005
213
214
music_internal_play(music_playing, 0.0);
music_playing->fading = current_fade;
Sep 5, 2019
Sep 5, 2019
215
} else {
Nov 19, 2005
Nov 19, 2005
216
music_internal_halt();
Sep 5, 2019
Sep 5, 2019
217
if (music_finished_hook) {
Nov 19, 2005
Nov 19, 2005
218
music_finished_hook();
Sep 5, 2019
Sep 5, 2019
219
}
Nov 19, 2005
Nov 19, 2005
220
221
222
return 0;
}
}
Sep 5, 2019
Sep 5, 2019
223
Nov 19, 2005
Nov 19, 2005
224
225
226
227
return 1;
}
Oct 21, 1999
Oct 21, 1999
228
/* Mixing function */
Oct 7, 2018
Oct 7, 2018
229
void SDLCALL music_mixer(void *udata, Uint8 *stream, int len)
Oct 21, 1999
Oct 21, 1999
230
{
Oct 2, 2009
Oct 2, 2009
231
232
int left = 0;
May 16, 2002
May 16, 2002
233
if ( music_playing && music_active ) {
Nov 1, 1999
Nov 1, 1999
234
/* Handle fading */
Nov 11, 1999
Nov 11, 1999
235
236
if ( music_playing->fading != MIX_NO_FADING ) {
if ( music_playing->fade_step++ < music_playing->fade_steps ) {
May 16, 2002
May 16, 2002
237
int volume;
Dec 26, 1999
Dec 26, 1999
238
239
int fade_step = music_playing->fade_step;
int fade_steps = music_playing->fade_steps;
Nov 11, 1999
Nov 11, 1999
240
Oct 23, 1999
Oct 23, 1999
241
if ( music_playing->fading == MIX_FADING_OUT ) {
May 16, 2002
May 16, 2002
242
volume = (music_volume * (fade_steps-fade_step)) / fade_steps;
Nov 11, 1999
Nov 11, 1999
243
} else { /* Fading in */
May 16, 2002
May 16, 2002
244
volume = (music_volume * fade_step) / fade_steps;
Oct 23, 1999
Oct 23, 1999
245
}
May 16, 2002
May 16, 2002
246
music_internal_volume(volume);
Oct 23, 1999
Oct 23, 1999
247
248
} else {
if ( music_playing->fading == MIX_FADING_OUT ) {
May 16, 2002
May 16, 2002
249
250
251
252
music_internal_halt();
if ( music_finished_hook ) {
music_finished_hook();
}
Nov 11, 1999
Nov 11, 1999
253
return;
Oct 23, 1999
Oct 23, 1999
254
}
Nov 11, 1999
Nov 11, 1999
255
music_playing->fading = MIX_NO_FADING;
Oct 23, 1999
Oct 23, 1999
256
257
}
}
Sep 5, 2019
Sep 5, 2019
258
Jan 1, 2012
Jan 1, 2012
259
260
261
262
music_halt_or_loop();
if (!music_internal_playing())
return;
Oct 21, 1999
Oct 21, 1999
263
264
265
266
267
268
269
270
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
271
left = WAVStream_PlaySome(stream, len);
Oct 21, 1999
Oct 21, 1999
272
273
break;
#endif
Nov 16, 2009
Nov 16, 2009
274
275
276
277
278
#ifdef MODPLUG_MUSIC
case MUS_MODPLUG:
left = modplug_playAudio(music_playing->data.modplug, stream, len);
break;
#endif
Oct 3, 2009
Oct 3, 2009
279
#ifdef MOD_MUSIC
Oct 21, 1999
Oct 21, 1999
280
case MUS_MOD:
Oct 3, 2009
Oct 3, 2009
281
left = MOD_playAudio(music_playing->data.module, stream, len);
Oct 21, 1999
Oct 21, 1999
282
283
284
285
break;
#endif
#ifdef MID_MUSIC
case MUS_MID:
Jan 1, 2012
Jan 1, 2012
286
#ifdef USE_NATIVE_MIDI
Oct 7, 2018
Oct 7, 2018
287
if ( native_midi_ok ) {
Jan 1, 2012
Jan 1, 2012
288
289
/* Native midi is handled asynchronously */
goto skip;
Oct 7, 2018
Oct 7, 2018
290
}
Jan 1, 2012
Jan 1, 2012
291
#endif
Mar 20, 2011
Mar 20, 2011
292
293
294
#ifdef USE_FLUIDSYNTH_MIDI
if ( fluidsynth_ok ) {
fluidsynth_playsome(music_playing->data.fluidsynthmidi, stream, len);
Jan 1, 2012
Jan 1, 2012
295
goto skip;
Mar 20, 2011
Mar 20, 2011
296
297
298
}
#endif
#ifdef USE_TIMIDITY_MIDI
Aug 19, 2001
Aug 19, 2001
299
300
if ( timidity_ok ) {
int samples = len / samplesize;
Oct 7, 2018
Oct 7, 2018
301
Timidity_PlaySome(stream, samples);
Jan 1, 2012
Jan 1, 2012
302
goto skip;
Aug 19, 2001
Aug 19, 2001
303
}
Oct 21, 1999
Oct 21, 1999
304
#endif
Mar 20, 2011
Mar 20, 2011
305
break;
Sep 5, 2001
Sep 5, 2001
306
#endif
Jul 3, 2000
Jul 3, 2000
307
308
#ifdef OGG_MUSIC
case MUS_OGG:
Nov 19, 2005
Nov 19, 2005
309
Oct 2, 2009
Oct 2, 2009
310
left = OGG_playAudio(music_playing->data.ogg, stream, len);
Jul 3, 2000
Jul 3, 2000
311
312
break;
#endif
Feb 27, 2008
Feb 27, 2008
313
314
#ifdef FLAC_MUSIC
case MUS_FLAC:
Oct 2, 2009
Oct 2, 2009
315
left = FLAC_playAudio(music_playing->data.flac, stream, len);
Feb 27, 2008
Feb 27, 2008
316
317
break;
#endif
Oct 21, 1999
Oct 21, 1999
318
#ifdef MP3_MUSIC
Dec 26, 1999
Dec 26, 1999
319
case MUS_MP3:
Oct 11, 2018
Oct 11, 2018
320
left = mpg_get_samples(music_playing->data.mp3_mpg, stream, len);
Oct 21, 1999
Oct 21, 1999
321
break;
Jul 15, 2007
Jul 15, 2007
322
323
324
#endif
#ifdef MP3_MAD_MUSIC
case MUS_MP3_MAD:
Oct 2, 2009
Oct 2, 2009
325
left = mad_getSamples(music_playing->data.mp3_mad, stream, len);
Jul 15, 2007
Jul 15, 2007
326
break;
Oct 21, 1999
Oct 21, 1999
327
328
329
330
331
#endif
default:
/* Unknown music type?? */
break;
}
Jan 1, 2012
Jan 1, 2012
332
}
Oct 2, 2009
Oct 2, 2009
333
Jan 1, 2012
Jan 1, 2012
334
335
336
skip:
/* Handle seamless music looping */
if (left > 0 && left < len) {
Jun 15, 2011
Jun 15, 2011
337
music_halt_or_loop();
Jan 1, 2012
Jan 1, 2012
338
if (music_internal_playing())
Jun 15, 2011
Jun 15, 2011
339
music_mixer(udata, stream+(len-left), left);
Oct 2, 2009
Oct 2, 2009
340
}
Oct 21, 1999
Oct 21, 1999
341
342
343
344
345
346
}
/* 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
347
if ( WAVStream_Init(mixer) == 0 ) {
Jun 5, 2009
Jun 5, 2009
348
add_music_decoder("WAVE");
Oct 21, 1999
Oct 21, 1999
349
350
}
#endif
Nov 16, 2009
Nov 16, 2009
351
#ifdef MODPLUG_MUSIC
Feb 4, 2010
Feb 4, 2010
352
if ( modplug_init(mixer) == 0 ) {
Nov 16, 2009
Nov 16, 2009
353
354
355
add_music_decoder("MODPLUG");
}
#endif
Oct 3, 2009
Oct 3, 2009
356
#ifdef MOD_MUSIC
Nov 14, 2009
Nov 14, 2009
357
if ( MOD_init(mixer) == 0 ) {
Oct 3, 2009
Oct 3, 2009
358
add_music_decoder("MIKMOD");
Oct 21, 1999
Oct 21, 1999
359
360
361
}
#endif
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
362
#ifdef USE_TIMIDITY_MIDI
Dec 17, 2001
Dec 17, 2001
363
samplesize = mixer->size / mixer->samples;
Aug 19, 2001
Aug 19, 2001
364
if ( Timidity_Init(mixer->freq, mixer->format,
Aug 20, 2001
Aug 20, 2001
365
mixer->channels, mixer->samples) == 0 ) {
Aug 19, 2001
Aug 19, 2001
366
timidity_ok = 1;
Jun 5, 2009
Jun 5, 2009
367
add_music_decoder("TIMIDITY");
Oct 21, 1999
Oct 21, 1999
368
369
370
} else {
timidity_ok = 0;
}
Sep 5, 2001
Sep 5, 2001
371
#endif
Mar 20, 2011
Mar 20, 2011
372
373
374
375
376
377
378
379
#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
380
#ifdef USE_NATIVE_MIDI
Mar 20, 2011
Mar 20, 2011
381
382
383
384
#ifdef USE_FLUIDSYNTH_MIDI
native_midi_ok = !fluidsynth_ok;
if ( native_midi_ok )
#endif
Sep 5, 2001
Sep 5, 2001
385
#ifdef USE_TIMIDITY_MIDI
Mar 20, 2011
Mar 20, 2011
386
native_midi_ok = !timidity_ok;
Oct 3, 2009
Oct 3, 2009
387
388
389
if ( !native_midi_ok ) {
native_midi_ok = (getenv("SDL_NATIVE_MUSIC") != NULL);
}
Sep 5, 2001
Sep 5, 2001
390
391
if ( native_midi_ok )
#endif
Aug 19, 2001
Aug 19, 2001
392
native_midi_ok = native_midi_detect();
Jun 5, 2009
Jun 5, 2009
393
394
if ( native_midi_ok )
add_music_decoder("NATIVEMIDI");
Aug 19, 2001
Aug 19, 2001
395
#endif
Oct 21, 1999
Oct 21, 1999
396
#endif
Jul 3, 2000
Jul 3, 2000
397
#ifdef OGG_MUSIC
Nov 14, 2009
Nov 14, 2009
398
if ( OGG_init(mixer) == 0 ) {
Jun 5, 2009
Jun 5, 2009
399
add_music_decoder("OGG");
Jul 3, 2000
Jul 3, 2000
400
401
}
#endif
Feb 27, 2008
Feb 27, 2008
402
#ifdef FLAC_MUSIC
Nov 14, 2009
Nov 14, 2009
403
if ( FLAC_init(mixer) == 0 ) {
Jun 5, 2009
Jun 5, 2009
404
add_music_decoder("FLAC");
Feb 27, 2008
Feb 27, 2008
405
406
}
#endif
Jul 15, 2007
Jul 15, 2007
407
#if defined(MP3_MUSIC) || defined(MP3_MAD_MUSIC)
Oct 21, 1999
Oct 21, 1999
408
409
/* Keep a copy of the mixer */
used_mixer = *mixer;
Jun 5, 2009
Jun 5, 2009
410
add_music_decoder("MP3");
Oct 21, 1999
Oct 21, 1999
411
#endif
Jun 5, 2009
Jun 5, 2009
412
Feb 1, 2000
Feb 1, 2000
413
music_playing = NULL;
Oct 26, 1999
Oct 26, 1999
414
music_stopped = 0;
Oct 21, 1999
Oct 21, 1999
415
416
Mix_VolumeMusic(SDL_MIX_MAXVOLUME);
Dec 26, 1999
Dec 26, 1999
417
/* Calculate the number of ms for each callback */
Feb 2, 2000
Feb 2, 2000
418
ms_per_step = (int) (((float)mixer->samples * 1000.0) / mixer->freq);
Nov 11, 1999
Nov 11, 1999
419
Oct 21, 1999
Oct 21, 1999
420
421
422
return(0);
}
Oct 16, 2001
Oct 16, 2001
423
424
425
426
427
428
429
430
431
432
433
434
435
/* 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);
}
Jan 4, 2012
Jan 4, 2012
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
static int detect_mp3(Uint8 *magic)
{
if ( strncmp((char *)magic, "ID3", 3) == 0 ) {
return 1;
}
/* Detection code lifted from SMPEG */
if(((magic[0] & 0xff) != 0xff) || // No sync bits
((magic[1] & 0xf0) != 0xf0) || //
((magic[2] & 0xf0) == 0x00) || // Bitrate is 0
((magic[2] & 0xf0) == 0xf0) || // Bitrate is 15
((magic[2] & 0x0c) == 0x0c) || // Frequency is 3
((magic[1] & 0x06) == 0x00)) { // Layer is 4
return(0);
}
return 1;
}
/* MUS_MOD can't be auto-detected. If no other format was detected, MOD is
* assumed and MUS_MOD will be returned, meaning that the format might not
* actually be MOD-based.
*
* Returns MUS_NONE in case of errors. */
static Mix_MusicType detect_music_type(SDL_RWops *rw)
{
Uint8 magic[5];
Uint8 moremagic[9];
int start = SDL_RWtell(rw);
if (SDL_RWread(rw, magic, 1, 4) != 4 || SDL_RWread(rw, moremagic, 1, 8) != 8 ) {
Mix_SetError("Couldn't read from RWops");
return MUS_NONE;
}
SDL_RWseek(rw, start, RW_SEEK_SET);
magic[4]='\0';
moremagic[8] = '\0';
/* WAVE files have the magic four bytes "RIFF"
AIFF files have the magic 12 bytes "FORM" XXXX "AIFF" */
if (((strcmp((char *)magic, "RIFF") == 0) && (strcmp((char *)(moremagic+4), "WAVE") == 0)) ||
(strcmp((char *)magic, "FORM") == 0)) {
return MUS_WAV;
}
/* Ogg Vorbis files have the magic four bytes "OggS" */
if (strcmp((char *)magic, "OggS") == 0) {
return MUS_OGG;
}
/* FLAC files have the magic four bytes "fLaC" */
if (strcmp((char *)magic, "fLaC") == 0) {
return MUS_FLAC;
}
/* MIDI files have the magic four bytes "MThd" */
if (strcmp((char *)magic, "MThd") == 0) {
return MUS_MID;
}
if (detect_mp3(magic)) {
return MUS_MP3;
}
/* Assume MOD format.
*
* Apparently there is no way to check if the file is really a MOD,
* or there are too many formats supported by MikMod/ModPlug, or
* MikMod/ModPlug does this check by itself. */
return MUS_MOD;
}
Oct 21, 1999
Oct 21, 1999
507
508
509
/* Load a music file */
Mix_Music *Mix_LoadMUS(const char *file)
{
Jan 4, 2012
Jan 4, 2012
510
SDL_RWops *rw;
Oct 21, 1999
Oct 21, 1999
511
Mix_Music *music;
Jan 4, 2012
Jan 4, 2012
512
513
Mix_MusicType type;
char *ext = strrchr(file, '.');
Oct 21, 1999
Oct 21, 1999
514
Jan 4, 2012
Jan 4, 2012
515
516
517
#ifdef CMD_MUSIC
if ( music_cmd ) {
/* Allocate memory for the music structure */
Jan 13, 2012
Jan 13, 2012
518
music = (Mix_Music *)SDL_malloc(sizeof(Mix_Music));
Jan 4, 2012
Jan 4, 2012
519
520
521
if ( music == NULL ) {
Mix_SetError("Out of memory");
return(NULL);
Oct 21, 1999
Oct 21, 1999
522
}
Jan 4, 2012
Jan 4, 2012
523
524
525
526
music->error = 0;
music->type = MUS_CMD;
music->data.cmd = MusicCMD_LoadSong(music_cmd, file);
if ( music->data.cmd == NULL ) {
Jan 13, 2012
Jan 13, 2012
527
SDL_free(music);
Oct 6, 2018
Oct 6, 2018
528
music = NULL;
Jan 4, 2012
Jan 4, 2012
529
530
}
return music;
Oct 21, 1999
Oct 21, 1999
531
}
Jan 4, 2012
Jan 4, 2012
532
533
534
535
536
537
#endif
rw = SDL_RWFromFile(file, "rb");
if ( rw == NULL ) {
Mix_SetError("Couldn't open '%s'", file);
return NULL;
Aug 21, 2004
Aug 21, 2004
538
}
Oct 21, 1999
Oct 21, 1999
539
Jan 4, 2012
Jan 4, 2012
540
541
/* Use the extension as a first guess on the file type */
type = MUS_NONE;
Oct 16, 2001
Oct 16, 2001
542
ext = strrchr(file, '.');
Jan 4, 2012
Jan 4, 2012
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
/* No need to guard these with #ifdef *_MUSIC stuff,
* since we simply call Mix_LoadMUSType_RW() later */
if ( ext ) {
++ext; /* skip the dot in the extension */
if ( MIX_string_equals(ext, "WAV") ) {
type = MUS_WAV;
} else if ( MIX_string_equals(ext, "MID") ||
MIX_string_equals(ext, "MIDI") ||
MIX_string_equals(ext, "KAR") ) {
type = MUS_MID;
} else if ( MIX_string_equals(ext, "OGG") ) {
type = MUS_OGG;
} else if ( MIX_string_equals(ext, "FLAC") ) {
type = MUS_FLAC;
} else if ( MIX_string_equals(ext, "MPG") ||
MIX_string_equals(ext, "MPEG") ||
MIX_string_equals(ext, "MP3") ||
MIX_string_equals(ext, "MAD") ) {
type = MUS_MP3;
}
}
if ( type == MUS_NONE ) {
type = detect_music_type(rw);
}
/* We need to know if a specific error occurs; if not, we'll set a
* generic one, so we clear the current one. */
Mix_SetError("");
music = Mix_LoadMUSType_RW(rw, type, SDL_TRUE);
if ( music == NULL && Mix_GetError()[0] == '\0' ) {
SDL_FreeRW(rw);
Mix_SetError("Couldn't open '%s'", file);
}
return music;
}
Mix_Music *Mix_LoadMUS_RW(SDL_RWops *rw)
{
return Mix_LoadMUSType_RW(rw, MUS_NONE, SDL_FALSE);
}
Mix_Music *Mix_LoadMUSType_RW(SDL_RWops *rw, Mix_MusicType type, int freesrc)
{
Mix_Music *music;
if (!rw) {
Mix_SetError("RWops pointer is NULL");
return NULL;
}
/* If the caller wants auto-detection, figure out what kind of file
* this is. */
if (type == MUS_NONE) {
if ((type = detect_music_type(rw)) == MUS_NONE) {
/* Don't call Mix_SetError() here since detect_music_type()
* does that. */
return NULL;
}
}
Oct 16, 2001
Oct 16, 2001
602
Oct 21, 1999
Oct 21, 1999
603
/* Allocate memory for the music structure */
Jan 13, 2012
Jan 13, 2012
604
music = (Mix_Music *)SDL_malloc(sizeof(Mix_Music));
Jan 4, 2012
Jan 4, 2012
605
if (music == NULL ) {
Dec 26, 1999
Dec 26, 1999
606
Mix_SetError("Out of memory");
Jan 4, 2012
Jan 4, 2012
607
return NULL;
Oct 21, 1999
Oct 21, 1999
608
609
610
}
music->error = 0;
Jan 4, 2012
Jan 4, 2012
611
switch (type) {
Oct 21, 1999
Oct 21, 1999
612
#ifdef WAV_MUSIC
Jan 4, 2012
Jan 4, 2012
613
614
615
616
617
618
619
case MUS_WAV:
/* The WAVE loader needs the first 4 bytes of the header */
{
Uint8 magic[5];
int start = SDL_RWtell(rw);
if (SDL_RWread(rw, magic, 1, 4) != 4) {
Mix_SetError("Couldn't read from RWops");
Oct 6, 2018
Oct 6, 2018
620
SDL_free(music);
Oct 7, 2018
Oct 7, 2018
621
return NULL;
Mar 20, 2011
Mar 20, 2011
622
}
Jan 4, 2012
Jan 4, 2012
623
624
625
626
SDL_RWseek(rw, start, RW_SEEK_SET);
magic[4] = '\0';
music->type = MUS_WAV;
music->data.wave = WAVStream_LoadSong_RW(rw, (char *)magic, freesrc);
Mar 20, 2011
Mar 20, 2011
627
}
Jan 4, 2012
Jan 4, 2012
628
if (music->data.wave == NULL) {
Oct 21, 1999
Oct 21, 1999
629
630
music->error = 1;
}
Jan 4, 2012
Jan 4, 2012
631
break;
Oct 21, 1999
Oct 21, 1999
632
#endif
Jul 3, 2000
Jul 3, 2000
633
#ifdef OGG_MUSIC
Jan 4, 2012
Jan 4, 2012
634
case MUS_OGG:
Jul 3, 2000
Jul 3, 2000
635
music->type = MUS_OGG;
Jan 4, 2012
Jan 4, 2012
636
music->data.ogg = OGG_new_RW(rw, freesrc);
Jul 3, 2000
Jul 3, 2000
637
638
639
if ( music->data.ogg == NULL ) {
music->error = 1;
}
Jan 4, 2012
Jan 4, 2012
640
break;
Jul 3, 2000
Jul 3, 2000
641
#endif
Feb 27, 2008
Feb 27, 2008
642
#ifdef FLAC_MUSIC
Jan 4, 2012
Jan 4, 2012
643
case MUS_FLAC:
Feb 27, 2008
Feb 27, 2008
644
music->type = MUS_FLAC;
Jan 4, 2012
Jan 4, 2012
645
music->data.flac = FLAC_new_RW(rw, freesrc);
Feb 27, 2008
Feb 27, 2008
646
647
648
if ( music->data.flac == NULL ) {
music->error = 1;
}
Jan 4, 2012
Jan 4, 2012
649
break;
Feb 27, 2008
Feb 27, 2008
650
#endif
Oct 21, 1999
Oct 21, 1999
651
#ifdef MP3_MUSIC
Jan 4, 2012
Jan 4, 2012
652
case MUS_MP3:
Nov 8, 2009
Nov 8, 2009
653
if ( Mix_Init(MIX_INIT_MP3) ) {
May 12, 2006
May 12, 2006
654
music->type = MUS_MP3;
Oct 11, 2018
Oct 11, 2018
655
656
657
music->data.mp3_mpg = mpg_new_rw(rw, &used_mixer, freesrc);
if (!music->data.mp3_mpg) {
Mix_SetError("Could not initialize MPEG stream.");
May 12, 2006
May 12, 2006
658
659
music->error = 1;
}
Dec 21, 2004
Dec 21, 2004
660
} else {
May 12, 2006
May 12, 2006
661
music->error = 1;
Oct 21, 1999
Oct 21, 1999
662
}
Jan 4, 2012
Jan 4, 2012
663
664
665
break;
#elif defined(MP3_MAD_MUSIC)
case MUS_MP3:
Jul 15, 2007
Jul 15, 2007
666
music->type = MUS_MP3_MAD;
Jan 4, 2012
Jan 4, 2012
667
music->data.mp3_mad = mad_openFileRW(rw, &used_mixer, freesrc);
Jul 15, 2007
Jul 15, 2007
668
if (music->data.mp3_mad == 0) {
Jan 4, 2012
Jan 4, 2012
669
Mix_SetError("Could not initialize MPEG stream.");
Jul 15, 2007
Jul 15, 2007
670
671
music->error = 1;
}
Jan 4, 2012
Jan 4, 2012
672
break;
Jul 15, 2007
Jul 15, 2007
673
#endif
Jan 4, 2012
Jan 4, 2012
674
675
676
677
678
679
#ifdef MID_MUSIC
case MUS_MID:
music->type = MUS_MID;
#ifdef USE_NATIVE_MIDI
if ( native_midi_ok ) {
music->data.nativemidi = native_midi_loadsong_RW(rw, freesrc);
Oct 7, 2018
Oct 7, 2018
680
681
682
if ( music->data.nativemidi == NULL ) {
Mix_SetError("%s", native_midi_error());
music->error = 1;
Jan 4, 2012
Jan 4, 2012
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
}
break;
}
#endif
#ifdef USE_FLUIDSYNTH_MIDI
if ( fluidsynth_ok ) {
music->data.fluidsynthmidi = fluidsynth_loadsong_RW(rw, freesrc);
if ( music->data.fluidsynthmidi == NULL ) {
music->error = 1;
}
break;
}
#endif
#ifdef USE_TIMIDITY_MIDI
if ( timidity_ok ) {
music->data.midi = Timidity_LoadSong_RW(rw, freesrc);
if ( music->data.midi == NULL ) {
Mix_SetError("%s", Timidity_Error());
music->error = 1;
}
} else {
Mix_SetError("%s", Timidity_Error());
Nov 16, 2009
Nov 16, 2009
705
706
music->error = 1;
}
Jan 4, 2012
Jan 4, 2012
707
708
709
710
711
712
713
714
715
716
717
718
719
720
#endif
break;
#endif
#if defined(MODPLUG_MUSIC) || defined(MOD_MUSIC)
case MUS_MOD:
music->error = 1;
#ifdef MODPLUG_MUSIC
if ( music->error ) {
music->type = MUS_MODPLUG;
music->data.modplug = modplug_new_RW(rw, freesrc);
if ( music->data.modplug ) {
music->error = 0;
}
}
Nov 16, 2009
Nov 16, 2009
721
#endif
Oct 3, 2009
Oct 3, 2009
722
#ifdef MOD_MUSIC
Jan 4, 2012
Jan 4, 2012
723
724
725
726
727
728
if ( music->error ) {
music->type = MUS_MOD;
music->data.module = MOD_new_RW(rw, freesrc);
if ( music->data.module ) {
music->error = 0;
}
Oct 21, 1999
Oct 21, 1999
729
730
}
#endif
Jan 4, 2012
Jan 4, 2012
731
732
733
734
break;
#endif
default:
Dec 26, 1999
Dec 26, 1999
735
Mix_SetError("Unrecognized music format");
Sep 5, 2019
Sep 5, 2019
736
music->error = 1;
Jan 4, 2012
Jan 4, 2012
737
} /* switch (want) */
Mar 20, 2011
Mar 20, 2011
738
Jan 4, 2012
Jan 4, 2012
739
if (music->error) {
Jan 13, 2012
Jan 13, 2012
740
SDL_free(music);
Oct 7, 2018
Oct 7, 2018
741
music = NULL;
Oct 21, 1999
Oct 21, 1999
742
743
744
745
746
747
748
749
}
return(music);
}
/* Free a music chunk previously loaded */
void Mix_FreeMusic(Mix_Music *music)
{
if ( music ) {
May 16, 2002
May 16, 2002
750
751
752
753
754
755
756
757
758
759
760
/* 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
761
}
Oct 21, 1999
Oct 21, 1999
762
}
May 16, 2002
May 16, 2002
763
SDL_UnlockAudio();
Oct 21, 1999
Oct 21, 1999
764
765
766
767
768
769
770
771
772
773
774
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
775
776
777
778
779
#ifdef MODPLUG_MUSIC
case MUS_MODPLUG:
modplug_delete(music->data.modplug);
break;
#endif
Oct 3, 2009
Oct 3, 2009
780
#ifdef MOD_MUSIC
Oct 21, 1999
Oct 21, 1999
781
case MUS_MOD:
Oct 3, 2009
Oct 3, 2009
782
MOD_delete(music->data.module);
Oct 21, 1999
Oct 21, 1999
783
784
785
786
break;
#endif
#ifdef MID_MUSIC
case MUS_MID:
Aug 19, 2001
Aug 19, 2001
787
#ifdef USE_NATIVE_MIDI
Sep 5, 2019
Sep 5, 2019
788
if ( native_midi_ok ) {
Aug 19, 2001
Aug 19, 2001
789
native_midi_freesong(music->data.nativemidi);
Mar 20, 2011
Mar 20, 2011
790
791
792
793
794
795
796
797
goto skip;
}
#endif
#ifdef USE_FLUIDSYNTH_MIDI
if ( fluidsynth_ok ) {
fluidsynth_freesong(music->data.fluidsynthmidi);
goto skip;
}
Aug 19, 2001
Aug 19, 2001
798
#endif
Sep 5, 2001
Sep 5, 2001
799
#ifdef USE_TIMIDITY_MIDI
Aug 19, 2001
Aug 19, 2001
800
801
if ( timidity_ok ) {
Timidity_FreeSong(music->data.midi);
Mar 20, 2011
Mar 20, 2011
802
goto skip;
Aug 19, 2001
Aug 19, 2001
803
}
Sep 5, 2001
Sep 5, 2001
804
#endif
Oct 21, 1999
Oct 21, 1999
805
806
break;
#endif
Jul 3, 2000
Jul 3, 2000
807
808
809
810
811
#ifdef OGG_MUSIC
case MUS_OGG:
OGG_delete(music->data.ogg);
break;
#endif
Feb 27, 2008
Feb 27, 2008
812
813
814
815
816
#ifdef FLAC_MUSIC
case MUS_FLAC:
FLAC_delete(music->data.flac);
break;
#endif
Oct 21, 1999
Oct 21, 1999
817
#ifdef MP3_MUSIC
Dec 26, 1999
Dec 26, 1999
818
case MUS_MP3:
Oct 11, 2018
Oct 11, 2018
819
mpg_delete(music->data.mp3_mpg);
Oct 21, 1999
Oct 21, 1999
820
break;
Jul 15, 2007
Jul 15, 2007
821
822
823
824
825
#endif
#ifdef MP3_MAD_MUSIC
case MUS_MP3_MAD:
mad_closeFile(music->data.mp3_mad);
break;
Oct 21, 1999
Oct 21, 1999
826
827
828
829
830
#endif
default:
/* Unknown music type?? */
break;
}
Mar 20, 2011
Mar 20, 2011
831
832
skip:
Jan 13, 2012
Jan 13, 2012
833
SDL_free(music);
Oct 21, 1999
Oct 21, 1999
834
835
836
}
}
May 19, 2002
May 19, 2002
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
/* 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
856
857
858
/* 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
859
{
May 16, 2002
May 16, 2002
860
861
int retval = 0;
Jan 6, 2012
Jan 6, 2012
862
#if defined(__MACOSX__) && defined(USE_NATIVE_MIDI)
Jan 1, 2012
Jan 1, 2012
863
864
/* 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
865
*/
Jan 1, 2012
Jan 1, 2012
866
867
868
869
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
870
}
Jan 1, 2012
Jan 1, 2012
871
#endif
Jan 1, 2012
Jan 1, 2012
872
May 16, 2002
May 16, 2002
873
874
875
876
877
/* Note the music we're playing */
if ( music_playing ) {
music_internal_halt();
}
music_playing = music;
Oct 30, 1999
Oct 30, 1999
878
May 16, 2002
May 16, 2002
879
/* Set the initial volume */
Nov 9, 2003
Nov 9, 2003
880
881
if ( music->type != MUS_MOD ) {
music_internal_initialize_volume();
May 16, 2002
May 16, 2002
882
883
884
}
/* Set up for playback */
Oct 21, 1999
Oct 21, 1999
885
886
switch (music->type) {
#ifdef CMD_MUSIC
May 16, 2002
May 16, 2002
887
888
889
case MUS_CMD:
MusicCMD_Start(music->data.cmd);
break;
Oct 21, 1999
Oct 21, 1999
890
891
#endif
#ifdef WAV_MUSIC
May 16, 2002
May 16, 2002
892
893
894
case MUS_WAV:
WAVStream_Start(music->data.wave);
break;
Oct 21, 1999
Oct 21, 1999
895
#endif
Nov 16, 2009
Nov 16, 2009
896
897
898
899
900
901
902
#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
903
#ifdef MOD_MUSIC
May 16, 2002
May 16, 2002
904
case MUS_MOD:
Oct 3, 2009
Oct 3, 2009
905
MOD_play(music->data.module);
Nov 9, 2003
Nov 9, 2003
906
907
/* Player_SetVolume() does nothing before Player_Start() */
music_internal_initialize_volume();
May 16, 2002
May 16, 2002
908
break;
Oct 21, 1999
Oct 21, 1999
909
910
#endif
#ifdef MID_MUSIC
May 16, 2002
May 16, 2002
911
case MUS_MID:
Aug 19, 2001
Aug 19, 2001
912
#ifdef USE_NATIVE_MIDI
May 16, 2002
May 16, 2002
913
if ( native_midi_ok ) {
Jan 1, 2012
Jan 1, 2012
914
native_midi_start(music->data.nativemidi, music_loops);
Mar 20, 2011
Mar 20, 2011
915
916
917
918
919
920
921
922
goto skip;
}
#endif
#ifdef USE_FLUIDSYNTH_MIDI
if (fluidsynth_ok ) {
fluidsynth_start(music->data.fluidsynthmidi);
goto skip;
}
Aug 19, 2001
Aug 19, 2001
923
#endif
Sep 5, 2001
Sep 5, 2001
924
#ifdef USE_TIMIDITY_MIDI
May 16, 2002
May 16, 2002
925
926
if ( timidity_ok ) {
Timidity_Start(music->data.midi);
Mar 20, 2011
Mar 20, 2011
927
goto skip;
May 16, 2002
May 16, 2002
928
}
Sep 5, 2001
Sep 5, 2001
929
#endif
May 16, 2002
May 16, 2002
930
break;
Oct 21, 1999
Oct 21, 1999
931
#endif
Jul 3, 2000
Jul 3, 2000
932
#ifdef OGG_MUSIC
May 16, 2002
May 16, 2002
933
934
935
case MUS_OGG:
OGG_play(music->data.ogg);
break;
Jul 3, 2000
Jul 3, 2000
936
#endif
Feb 27, 2008
Feb 27, 2008
937
938
939
940
941
#ifdef FLAC_MUSIC
case MUS_FLAC:
FLAC_play(music->data.flac);
break;
#endif
Oct 21, 1999
Oct 21, 1999
942
#ifdef MP3_MUSIC
May 16, 2002
May 16, 2002
943
case MUS_MP3:
Oct 11, 2018
Oct 11, 2018
944
mpg_start(music->data.mp3_mpg);
May 16, 2002
May 16, 2002
945
break;
Jul 15, 2007
Jul 15, 2007
946
947
948
949
950
#endif
#ifdef MP3_MAD_MUSIC
case MUS_MP3_MAD:
mad_start(music->data.mp3_mad);
break;
Oct 21, 1999
Oct 21, 1999
951
#endif
May 16, 2002
May 16, 2002
952
953
954
955
default:
Mix_SetError("Can't play unknown music type");
retval = -1;
break;
Oct 21, 1999
Oct 21, 1999
956
}
Oct 30, 1999
Oct 30, 1999
957
Mar 20, 2011
Mar 20, 2011
958
skip:
May 16, 2002
May 16, 2002
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
/* 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
978
{
May 16, 2002
May 16, 2002
979
980
int retval;
Jan 24, 2011
Jan 24, 2011
981
982
983
984
985
if ( ms_per_step == 0 ) {
SDL_SetError("Audio device hasn't been opened");
return(-1);
}
Oct 30, 1999
Oct 30, 1999
986
987
/* Don't play null pointers :-) */
if ( music == NULL ) {
May 16, 2002
May 16, 2002
988
Mix_SetError("music parameter was NULL");
Oct 30, 1999
Oct 30, 1999
989
990
return(-1);
}
May 16, 2002
May 16, 2002
991
992
993
994
995
996
/* Setup the data */
if ( ms ) {
music->fading = MIX_FADING_IN;
} else {
music->fading = MIX_NO_FADING;
Oct 30, 1999
Oct 30, 1999
997
}
May 16, 2002
May 16, 2002
998
999
music->fade_step = 0;
music->fade_steps = ms/ms_per_step;
Oct 30, 1999
Oct 30, 1999
1000