2011-04-08 13:03:26 -07:00
|
|
|
/*
|
2019-01-04 22:01:14 -08:00
|
|
|
Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
|
2011-04-08 13:03:26 -07:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2015-12-06 17:50:51 +01:00
|
|
|
/* Program to load a wave file and loop playing it using SDL audio */
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2013-05-18 14:17:52 -07:00
|
|
|
/* loopwaves.c is much more robust in handling WAVE files --
|
|
|
|
This is only for simple WAVEs
|
2001-04-26 16:45:43 +00:00
|
|
|
*/
|
2006-03-03 04:43:42 +00:00
|
|
|
#include "SDL_config.h"
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2006-03-03 04:43:42 +00:00
|
|
|
|
Initial merge of Emscripten port!
With this commit, you can compile SDL2 with Emscripten
( http://emscripten.org/ ), and make your SDL-based C/C++ program
into a web app.
This port was due to the efforts of several people, including: Charlie Birks,
Sathyanarayanan Gunasekaran, Jukka Jylänki, Alon Zakai, Edward Rudd,
Bruce Mitchener, and Martin Gerhardy. (Thanks, everyone!)
--HG--
extra : rebase_source : 97af74c8a5121e926ebe89f123536b5dd6681695
2014-12-18 00:19:52 -05:00
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
#include <emscripten/emscripten.h>
|
|
|
|
#endif
|
|
|
|
|
2001-04-26 16:45:43 +00:00
|
|
|
#include "SDL.h"
|
|
|
|
|
2017-02-19 21:05:42 +01:00
|
|
|
static struct
|
2006-07-10 21:04:37 +00:00
|
|
|
{
|
|
|
|
SDL_AudioSpec spec;
|
|
|
|
Uint8 *sound; /* Pointer to wave data */
|
|
|
|
Uint32 soundlen; /* Length of wave data */
|
|
|
|
int soundpos; /* Current play position */
|
2001-04-26 16:45:43 +00:00
|
|
|
} wave;
|
|
|
|
|
2017-03-09 14:50:23 -08:00
|
|
|
static SDL_AudioDeviceID device;
|
2005-09-28 11:36:20 +00:00
|
|
|
|
|
|
|
/* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
|
2006-07-10 21:04:37 +00:00
|
|
|
static void
|
|
|
|
quit(int rc)
|
2005-09-28 11:36:20 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_Quit();
|
|
|
|
exit(rc);
|
2005-09-28 11:36:20 +00:00
|
|
|
}
|
|
|
|
|
2017-03-09 14:50:23 -08:00
|
|
|
static void
|
|
|
|
close_audio()
|
|
|
|
{
|
2017-03-09 15:12:19 -08:00
|
|
|
if (device != 0) {
|
|
|
|
SDL_CloseAudioDevice(device);
|
|
|
|
device = 0;
|
|
|
|
}
|
2017-03-09 14:50:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
open_audio()
|
|
|
|
{
|
2017-03-09 15:12:19 -08:00
|
|
|
/* Initialize fillerup() variables */
|
|
|
|
device = SDL_OpenAudioDevice(NULL, SDL_FALSE, &wave.spec, NULL, 0);
|
|
|
|
if (!device) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't open audio: %s\n", SDL_GetError());
|
|
|
|
SDL_FreeWAV(wave.sound);
|
|
|
|
quit(2);
|
|
|
|
}
|
2017-03-09 14:50:23 -08:00
|
|
|
|
|
|
|
|
2017-03-09 15:12:19 -08:00
|
|
|
/* Let the audio run */
|
|
|
|
SDL_PauseAudioDevice(device, SDL_FALSE);
|
2017-03-09 14:50:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void reopen_audio()
|
|
|
|
{
|
2017-03-09 15:12:19 -08:00
|
|
|
close_audio();
|
|
|
|
open_audio();
|
2017-03-09 14:50:23 -08:00
|
|
|
}
|
|
|
|
|
2005-09-28 11:36:20 +00:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
void SDLCALL
|
|
|
|
fillerup(void *unused, Uint8 * stream, int len)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
Uint8 *waveptr;
|
|
|
|
int waveleft;
|
|
|
|
|
|
|
|
/* Set up the pointers */
|
|
|
|
waveptr = wave.sound + wave.soundpos;
|
|
|
|
waveleft = wave.soundlen - wave.soundpos;
|
|
|
|
|
|
|
|
/* Go! */
|
|
|
|
while (waveleft <= len) {
|
2007-07-05 02:45:47 +00:00
|
|
|
SDL_memcpy(stream, waveptr, waveleft);
|
2006-07-10 21:04:37 +00:00
|
|
|
stream += waveleft;
|
|
|
|
len -= waveleft;
|
|
|
|
waveptr = wave.sound;
|
|
|
|
waveleft = wave.soundlen;
|
|
|
|
wave.soundpos = 0;
|
|
|
|
}
|
2007-07-05 02:45:47 +00:00
|
|
|
SDL_memcpy(stream, waveptr, len);
|
2006-07-10 21:04:37 +00:00
|
|
|
wave.soundpos += len;
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int done = 0;
|
|
|
|
|
2014-12-24 02:01:12 -05:00
|
|
|
#ifdef __EMSCRIPTEN__
|
Initial merge of Emscripten port!
With this commit, you can compile SDL2 with Emscripten
( http://emscripten.org/ ), and make your SDL-based C/C++ program
into a web app.
This port was due to the efforts of several people, including: Charlie Birks,
Sathyanarayanan Gunasekaran, Jukka Jylänki, Alon Zakai, Edward Rudd,
Bruce Mitchener, and Martin Gerhardy. (Thanks, everyone!)
--HG--
extra : rebase_source : 97af74c8a5121e926ebe89f123536b5dd6681695
2014-12-18 00:19:52 -05:00
|
|
|
void
|
|
|
|
loop()
|
|
|
|
{
|
2017-03-09 14:50:23 -08:00
|
|
|
if(done || (SDL_GetAudioDeviceStatus(device) != SDL_AUDIO_PLAYING))
|
Initial merge of Emscripten port!
With this commit, you can compile SDL2 with Emscripten
( http://emscripten.org/ ), and make your SDL-based C/C++ program
into a web app.
This port was due to the efforts of several people, including: Charlie Birks,
Sathyanarayanan Gunasekaran, Jukka Jylänki, Alon Zakai, Edward Rudd,
Bruce Mitchener, and Martin Gerhardy. (Thanks, everyone!)
--HG--
extra : rebase_source : 97af74c8a5121e926ebe89f123536b5dd6681695
2014-12-18 00:19:52 -05:00
|
|
|
emscripten_cancel_main_loop();
|
|
|
|
}
|
2014-12-24 02:01:12 -05:00
|
|
|
#endif
|
Initial merge of Emscripten port!
With this commit, you can compile SDL2 with Emscripten
( http://emscripten.org/ ), and make your SDL-based C/C++ program
into a web app.
This port was due to the efforts of several people, including: Charlie Birks,
Sathyanarayanan Gunasekaran, Jukka Jylänki, Alon Zakai, Edward Rudd,
Bruce Mitchener, and Martin Gerhardy. (Thanks, everyone!)
--HG--
extra : rebase_source : 97af74c8a5121e926ebe89f123536b5dd6681695
2014-12-18 00:19:52 -05:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2012-11-29 09:48:42 -08:00
|
|
|
int i;
|
2014-03-09 11:06:11 -07:00
|
|
|
char filename[4096];
|
2012-11-29 09:48:42 -08:00
|
|
|
|
2015-11-25 21:39:28 +01:00
|
|
|
/* Enable standard application logging */
|
|
|
|
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
2013-08-14 23:30:10 -07:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Load the SDL library */
|
2017-03-09 14:50:23 -08:00
|
|
|
if (SDL_Init(SDL_INIT_AUDIO|SDL_INIT_EVENTS) < 0) {
|
2013-08-14 23:30:10 -07:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
|
2006-07-10 21:04:37 +00:00
|
|
|
return (1);
|
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
2014-06-07 17:09:32 -07:00
|
|
|
if (argc > 1) {
|
2014-03-09 11:06:11 -07:00
|
|
|
SDL_strlcpy(filename, argv[1], sizeof(filename));
|
|
|
|
} else {
|
|
|
|
SDL_strlcpy(filename, "sample.wav", sizeof(filename));
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
/* Load the wave file into memory */
|
2014-03-09 11:06:11 -07:00
|
|
|
if (SDL_LoadWAV(filename, &wave.spec, &wave.sound, &wave.soundlen) == NULL) {
|
2014-06-07 17:25:35 -07:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't load %s: %s\n", filename, SDL_GetError());
|
2006-07-10 21:04:37 +00:00
|
|
|
quit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
wave.spec.callback = fillerup;
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2012-11-29 09:48:42 -08:00
|
|
|
/* Show the list of available drivers */
|
2013-08-14 23:30:10 -07:00
|
|
|
SDL_Log("Available audio drivers:");
|
2012-11-29 09:48:42 -08:00
|
|
|
for (i = 0; i < SDL_GetNumAudioDrivers(); ++i) {
|
2015-11-25 21:39:28 +01:00
|
|
|
SDL_Log("%i: %s", i, SDL_GetAudioDriver(i));
|
2017-03-09 15:12:19 -08:00
|
|
|
}
|
2012-11-29 09:48:42 -08:00
|
|
|
|
2017-03-09 15:12:19 -08:00
|
|
|
SDL_Log("Using audio driver: %s\n", SDL_GetCurrentAudioDriver());
|
2009-10-10 06:32:11 +00:00
|
|
|
|
2017-03-09 15:12:19 -08:00
|
|
|
open_audio();
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2017-03-09 15:12:19 -08:00
|
|
|
SDL_FlushEvents(SDL_AUDIODEVICEADDED, SDL_AUDIODEVICEREMOVED);
|
Initial merge of Emscripten port!
With this commit, you can compile SDL2 with Emscripten
( http://emscripten.org/ ), and make your SDL-based C/C++ program
into a web app.
This port was due to the efforts of several people, including: Charlie Birks,
Sathyanarayanan Gunasekaran, Jukka Jylänki, Alon Zakai, Edward Rudd,
Bruce Mitchener, and Martin Gerhardy. (Thanks, everyone!)
--HG--
extra : rebase_source : 97af74c8a5121e926ebe89f123536b5dd6681695
2014-12-18 00:19:52 -05:00
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
emscripten_set_main_loop(loop, 0, 1);
|
|
|
|
#else
|
2017-03-09 15:12:19 -08:00
|
|
|
while (!done) {
|
|
|
|
SDL_Event event;
|
|
|
|
|
|
|
|
while (SDL_PollEvent(&event) > 0) {
|
|
|
|
if (event.type == SDL_QUIT) {
|
|
|
|
done = 1;
|
|
|
|
}
|
|
|
|
if ((event.type == SDL_AUDIODEVICEADDED && !event.adevice.iscapture) ||
|
|
|
|
(event.type == SDL_AUDIODEVICEREMOVED && !event.adevice.iscapture && event.adevice.which == device)) {
|
|
|
|
reopen_audio();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SDL_Delay(100);
|
|
|
|
}
|
Initial merge of Emscripten port!
With this commit, you can compile SDL2 with Emscripten
( http://emscripten.org/ ), and make your SDL-based C/C++ program
into a web app.
This port was due to the efforts of several people, including: Charlie Birks,
Sathyanarayanan Gunasekaran, Jukka Jylänki, Alon Zakai, Edward Rudd,
Bruce Mitchener, and Martin Gerhardy. (Thanks, everyone!)
--HG--
extra : rebase_source : 97af74c8a5121e926ebe89f123536b5dd6681695
2014-12-18 00:19:52 -05:00
|
|
|
#endif
|
2006-07-10 21:04:37 +00:00
|
|
|
|
|
|
|
/* Clean up on signal */
|
2017-03-09 15:12:19 -08:00
|
|
|
close_audio();
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_FreeWAV(wave.sound);
|
|
|
|
SDL_Quit();
|
|
|
|
return (0);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
2012-11-29 09:48:42 -08:00
|
|
|
|
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|