2015-06-21 23:33:46 +08:00
|
|
|
/*
|
2023-01-10 01:41:41 +08:00
|
|
|
Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 23:33:46 +08: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.
|
|
|
|
*/
|
|
|
|
|
2015-12-07 00:50:51 +08:00
|
|
|
/* Program to load a wave file and loop playing it using SDL audio */
|
2015-06-21 23:33:46 +08:00
|
|
|
|
|
|
|
/* loopwaves.c is much more robust in handling WAVE files --
|
|
|
|
This is only for simple WAVEs
|
|
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
#include <emscripten/emscripten.h>
|
|
|
|
#endif
|
|
|
|
|
2022-11-27 12:43:38 +08:00
|
|
|
#include <SDL3/SDL.h>
|
2022-12-15 12:58:20 +08:00
|
|
|
#include <SDL3/SDL_main.h>
|
2023-03-17 07:25:39 +08:00
|
|
|
#include <SDL3/SDL_test.h>
|
2022-04-12 20:07:18 +08:00
|
|
|
#include "testutils.h"
|
2015-06-21 23:33:46 +08:00
|
|
|
|
2017-02-20 04:05:42 +08:00
|
|
|
static struct
|
2015-06-21 23:33:46 +08:00
|
|
|
{
|
2023-05-30 13:08:22 +08:00
|
|
|
SDL_AudioSpec spec;
|
2022-12-01 04:51:59 +08:00
|
|
|
Uint8 *sound; /* Pointer to wave data */
|
|
|
|
Uint32 soundlen; /* Length of wave data */
|
2023-05-29 10:39:39 +08:00
|
|
|
Uint32 soundpos;
|
2015-06-21 23:33:46 +08:00
|
|
|
} wave;
|
|
|
|
|
2017-03-10 06:50:23 +08:00
|
|
|
static SDL_AudioDeviceID device;
|
2023-05-13 11:37:02 +08:00
|
|
|
static SDL_AudioStream *stream;
|
2015-06-21 23:33:46 +08:00
|
|
|
|
2023-05-29 10:39:39 +08:00
|
|
|
static void SDLCALL
|
|
|
|
fillerup(SDL_AudioStream *stream, int len, void *unused)
|
|
|
|
{
|
|
|
|
Uint8 *waveptr;
|
|
|
|
int waveleft;
|
|
|
|
|
|
|
|
/*SDL_Log("CALLBACK WANTS %d MORE BYTES!", len);*/
|
|
|
|
|
|
|
|
/* Set up the pointers */
|
|
|
|
waveptr = wave.sound + wave.soundpos;
|
|
|
|
waveleft = wave.soundlen - wave.soundpos;
|
|
|
|
|
|
|
|
/* Go! */
|
|
|
|
while (waveleft <= len) {
|
|
|
|
SDL_PutAudioStreamData(stream, waveptr, waveleft);
|
|
|
|
len -= waveleft;
|
|
|
|
waveptr = wave.sound;
|
|
|
|
waveleft = wave.soundlen;
|
|
|
|
wave.soundpos = 0;
|
|
|
|
}
|
|
|
|
SDL_PutAudioStreamData(stream, waveptr, len);
|
|
|
|
wave.soundpos += len;
|
|
|
|
}
|
|
|
|
|
2015-06-21 23:33:46 +08:00
|
|
|
/* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
|
|
|
|
static void
|
|
|
|
quit(int rc)
|
|
|
|
{
|
|
|
|
SDL_Quit();
|
2023-04-12 17:07:28 +08:00
|
|
|
/* Let 'main()' return normally */
|
|
|
|
if (rc != 0) {
|
|
|
|
exit(rc);
|
|
|
|
}
|
2015-06-21 23:33:46 +08:00
|
|
|
}
|
|
|
|
|
2017-03-10 06:50:23 +08:00
|
|
|
static void
|
2023-03-08 18:40:07 +08:00
|
|
|
close_audio(void)
|
2017-03-10 06:50:23 +08:00
|
|
|
{
|
2017-03-10 07:12:19 +08:00
|
|
|
if (device != 0) {
|
2023-05-13 11:37:02 +08:00
|
|
|
SDL_DestroyAudioStream(stream);
|
|
|
|
stream = NULL;
|
2017-03-10 07:12:19 +08:00
|
|
|
SDL_CloseAudioDevice(device);
|
|
|
|
device = 0;
|
|
|
|
}
|
2017-03-10 06:50:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2023-03-08 18:40:07 +08:00
|
|
|
open_audio(void)
|
2017-03-10 06:50:23 +08:00
|
|
|
{
|
2023-06-23 14:37:48 +08:00
|
|
|
device = SDL_OpenAudioDevice(SDL_AUDIO_DEVICE_DEFAULT_OUTPUT, &wave.spec);
|
2017-03-10 07:12:19 +08:00
|
|
|
if (!device) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't open audio: %s\n", SDL_GetError());
|
2022-12-27 20:22:43 +08:00
|
|
|
SDL_free(wave.sound);
|
2017-03-10 07:12:19 +08:00
|
|
|
quit(2);
|
|
|
|
}
|
2023-05-30 13:08:22 +08:00
|
|
|
stream = SDL_CreateAndBindAudioStream(device, &wave.spec);
|
2023-05-13 11:37:02 +08:00
|
|
|
if (!stream) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create audio stream: %s\n", SDL_GetError());
|
|
|
|
SDL_CloseAudioDevice(device);
|
|
|
|
SDL_free(wave.sound);
|
|
|
|
quit(2);
|
|
|
|
}
|
2023-05-29 10:39:39 +08:00
|
|
|
|
|
|
|
SDL_SetAudioStreamGetCallback(stream, fillerup, NULL);
|
2017-03-10 06:50:23 +08:00
|
|
|
}
|
|
|
|
|
2023-05-13 11:37:02 +08:00
|
|
|
|
|
|
|
static int done = 0;
|
|
|
|
|
2015-06-21 23:33:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
2023-03-08 18:40:07 +08:00
|
|
|
static void loop(void)
|
2015-06-21 23:33:46 +08:00
|
|
|
{
|
2022-11-28 00:38:43 +08:00
|
|
|
if (done || (SDL_GetAudioDeviceStatus(device) != SDL_AUDIO_PLAYING)) {
|
2015-06-21 23:33:46 +08:00
|
|
|
emscripten_cancel_main_loop();
|
2023-05-13 11:37:02 +08:00
|
|
|
} else {
|
|
|
|
fillerup();
|
2022-11-28 00:38:43 +08:00
|
|
|
}
|
2015-06-21 23:33:46 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-12-01 04:51:59 +08:00
|
|
|
int main(int argc, char *argv[])
|
2015-06-21 23:33:46 +08:00
|
|
|
{
|
|
|
|
int i;
|
2022-04-12 20:07:18 +08:00
|
|
|
char *filename = NULL;
|
2023-03-17 07:25:39 +08:00
|
|
|
SDLTest_CommonState *state;
|
|
|
|
|
|
|
|
/* Initialize test framework */
|
|
|
|
state = SDLTest_CommonCreateState(argv, 0);
|
|
|
|
if (state == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
2015-06-21 23:33:46 +08:00
|
|
|
|
2015-11-26 04:39:28 +08:00
|
|
|
/* Enable standard application logging */
|
|
|
|
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
2015-06-21 23:33:46 +08:00
|
|
|
|
2023-03-17 07:25:39 +08:00
|
|
|
/* Parse commandline */
|
|
|
|
for (i = 1; i < argc;) {
|
|
|
|
int consumed;
|
|
|
|
|
|
|
|
consumed = SDLTest_CommonArg(state, i);
|
|
|
|
if (!consumed) {
|
|
|
|
if (!filename) {
|
|
|
|
filename = argv[i];
|
|
|
|
consumed = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (consumed <= 0) {
|
|
|
|
static const char *options[] = { "[sample.wav]", NULL };
|
|
|
|
SDLTest_CommonLogUsage(state, argv[0], options);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
i += consumed;
|
|
|
|
}
|
|
|
|
|
2015-06-21 23:33:46 +08:00
|
|
|
/* Load the SDL library */
|
2022-12-01 04:51:59 +08:00
|
|
|
if (SDL_Init(SDL_INIT_AUDIO | SDL_INIT_EVENTS) < 0) {
|
2015-06-21 23:33:46 +08:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
|
2022-11-28 00:38:43 +08:00
|
|
|
return 1;
|
2015-06-21 23:33:46 +08:00
|
|
|
}
|
|
|
|
|
2023-03-17 07:25:39 +08:00
|
|
|
filename = GetResourceFilename(filename, "sample.wav");
|
2022-04-12 20:07:18 +08:00
|
|
|
|
|
|
|
if (filename == NULL) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "%s\n", SDL_GetError());
|
|
|
|
quit(1);
|
2015-06-21 23:33:46 +08:00
|
|
|
}
|
2022-04-12 20:07:18 +08:00
|
|
|
|
2015-06-21 23:33:46 +08:00
|
|
|
/* Load the wave file into memory */
|
2023-05-30 13:08:22 +08:00
|
|
|
if (SDL_LoadWAV(filename, &wave.spec, &wave.sound, &wave.soundlen) == -1) {
|
2015-06-21 23:33:46 +08:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't load %s: %s\n", filename, SDL_GetError());
|
|
|
|
quit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Show the list of available drivers */
|
|
|
|
SDL_Log("Available audio drivers:");
|
|
|
|
for (i = 0; i < SDL_GetNumAudioDrivers(); ++i) {
|
2015-11-26 04:39:28 +08:00
|
|
|
SDL_Log("%i: %s", i, SDL_GetAudioDriver(i));
|
2017-03-10 07:12:19 +08:00
|
|
|
}
|
2015-06-21 23:33:46 +08:00
|
|
|
|
2017-03-10 07:12:19 +08:00
|
|
|
SDL_Log("Using audio driver: %s\n", SDL_GetCurrentAudioDriver());
|
2015-06-21 23:33:46 +08:00
|
|
|
|
2017-03-10 07:12:19 +08:00
|
|
|
open_audio();
|
2015-06-21 23:33:46 +08:00
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
emscripten_set_main_loop(loop, 0, 1);
|
|
|
|
#else
|
2017-03-10 07:12:19 +08:00
|
|
|
while (!done) {
|
|
|
|
SDL_Event event;
|
|
|
|
|
|
|
|
while (SDL_PollEvent(&event) > 0) {
|
2023-01-24 09:54:09 +08:00
|
|
|
if (event.type == SDL_EVENT_QUIT) {
|
2017-03-10 07:12:19 +08:00
|
|
|
done = 1;
|
|
|
|
}
|
|
|
|
}
|
2023-05-13 11:37:02 +08:00
|
|
|
|
2017-03-10 07:12:19 +08:00
|
|
|
SDL_Delay(100);
|
|
|
|
}
|
2015-06-21 23:33:46 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Clean up on signal */
|
2017-03-10 07:12:19 +08:00
|
|
|
close_audio();
|
2022-12-27 20:22:43 +08:00
|
|
|
SDL_free(wave.sound);
|
2022-04-12 20:07:18 +08:00
|
|
|
SDL_free(filename);
|
2015-06-21 23:33:46 +08:00
|
|
|
SDL_Quit();
|
2023-03-17 07:25:39 +08:00
|
|
|
SDLTest_CommonDestroyState(state);
|
2022-11-28 00:38:43 +08:00
|
|
|
return 0;
|
2015-06-21 23:33:46 +08:00
|
|
|
}
|