Add playSoundAsync() -> Fixes game delay
Add function that plays sound using a separate thread. For not blocking the main thread
This commit is contained in:
parent
9c1ca72321
commit
52c0838dec
@ -7,5 +7,14 @@
|
|||||||
//======== playSound ========
|
//======== playSound ========
|
||||||
//===========================
|
//===========================
|
||||||
//abstract function that plays sound with provided path to .wav file
|
//abstract function that plays sound with provided path to .wav file
|
||||||
//wait parameter blocks program until playback finished
|
//wait parameter blocks program until playback finished (otherwise launched in another thread)
|
||||||
int playSound(const char * filePath, bool wait);
|
int playSound(const char * filePath, bool wait);
|
||||||
|
|
||||||
|
|
||||||
|
//==========================
|
||||||
|
//===== playSoundAsync =====
|
||||||
|
//==========================
|
||||||
|
//launches playSound in another thread to prevent delay
|
||||||
|
//due to loading file taking up to 300ms
|
||||||
|
//(equivalent to playsound() with parameter wait=false)
|
||||||
|
void playSoundAsync(const char *filePath);
|
56
src/sound.c
56
src/sound.c
@ -1,5 +1,5 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "sound.h"
|
#include <pthread.h>
|
||||||
#include "SDL.h"
|
#include "SDL.h"
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
@ -16,6 +16,12 @@ int playSound(const char *filePath, bool wait)
|
|||||||
{
|
{
|
||||||
//TODO add volume % option
|
//TODO add volume % option
|
||||||
|
|
||||||
|
//--- run async when wait is not set ---
|
||||||
|
if (!wait){
|
||||||
|
playSoundAsync(filePath);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
//--- variables ---
|
//--- variables ---
|
||||||
static bool soundInitialized = false;
|
static bool soundInitialized = false;
|
||||||
static bool deviceExists = false;
|
static bool deviceExists = false;
|
||||||
@ -23,7 +29,6 @@ int playSound(const char *filePath, bool wait)
|
|||||||
static SDL_AudioDeviceID deviceId;
|
static SDL_AudioDeviceID deviceId;
|
||||||
SDL_AudioSpec wavSpec;
|
SDL_AudioSpec wavSpec;
|
||||||
uint32_t wavLength;
|
uint32_t wavLength;
|
||||||
|
|
||||||
|
|
||||||
//--- initialize SDL audio ---
|
//--- initialize SDL audio ---
|
||||||
if (!soundInitialized)
|
if (!soundInitialized)
|
||||||
@ -36,7 +41,6 @@ int playSound(const char *filePath, bool wait)
|
|||||||
LOGI("sound: initialized SDL audio\n");
|
LOGI("sound: initialized SDL audio\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//--- close device and free memory of previous sound ---
|
//--- close device and free memory of previous sound ---
|
||||||
//note: also cancels currently playing sound
|
//note: also cancels currently playing sound
|
||||||
if (deviceExists)
|
if (deviceExists)
|
||||||
@ -46,7 +50,6 @@ int playSound(const char *filePath, bool wait)
|
|||||||
SDL_FreeWAV(wavBuffer);
|
SDL_FreeWAV(wavBuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//--- load file ---
|
//--- load file ---
|
||||||
if (SDL_LoadWAV(filePath, &wavSpec, &wavBuffer, &wavLength) == NULL)
|
if (SDL_LoadWAV(filePath, &wavSpec, &wavBuffer, &wavLength) == NULL)
|
||||||
{
|
{
|
||||||
@ -54,7 +57,6 @@ int playSound(const char *filePath, bool wait)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//--- play file ---
|
//--- play file ---
|
||||||
deviceId = SDL_OpenAudioDevice(NULL, 0, &wavSpec, NULL, 0);
|
deviceId = SDL_OpenAudioDevice(NULL, 0, &wavSpec, NULL, 0);
|
||||||
deviceExists = true;
|
deviceExists = true;
|
||||||
@ -62,12 +64,52 @@ int playSound(const char *filePath, bool wait)
|
|||||||
SDL_PauseAudioDevice(deviceId, 0);
|
SDL_PauseAudioDevice(deviceId, 0);
|
||||||
LOGI("sound: success, playing file '%s'\n", filePath);
|
LOGI("sound: success, playing file '%s'\n", filePath);
|
||||||
|
|
||||||
|
|
||||||
//--- wait until playback is finished --- (if desired)
|
//--- wait until playback is finished --- (if desired)
|
||||||
while (wait && SDL_GetQueuedAudioSize(deviceId) > 0)
|
while (SDL_GetQueuedAudioSize(deviceId) > 0)
|
||||||
{
|
{
|
||||||
SDL_Delay(100);
|
SDL_Delay(100);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//-------------------------------
|
||||||
|
//------- playSoundThread -------
|
||||||
|
//-------------------------------
|
||||||
|
// thread that runs playSound() and exits when done
|
||||||
|
void *playSoundThread(void *filePath) {
|
||||||
|
// run (slow) playSound function
|
||||||
|
playSound((const char *)filePath, true);
|
||||||
|
// Clean up and exit the thread
|
||||||
|
free(filePath);
|
||||||
|
pthread_exit(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//==========================
|
||||||
|
//===== playSoundAsync =====
|
||||||
|
//==========================
|
||||||
|
// play audio file asynchronously
|
||||||
|
// creates separate thread which runs playSound
|
||||||
|
// -> program does not get blocked by up to 300ms for loading the file
|
||||||
|
void playSoundAsync(const char *filePath) {
|
||||||
|
//--- allocate memory for filePath ---
|
||||||
|
char *filePathCopy = strdup(filePath);
|
||||||
|
if (filePathCopy == NULL) {
|
||||||
|
fprintf(stderr, "Memory allocation failed\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//--- create new thread ---
|
||||||
|
pthread_t thread;
|
||||||
|
if (pthread_create(&thread, NULL, playSoundThread, filePathCopy) != 0) {
|
||||||
|
fprintf(stderr, "Failed to create thread\n");
|
||||||
|
free(filePathCopy);
|
||||||
|
} else {
|
||||||
|
// detach the thread to clean up automatically when it exits
|
||||||
|
pthread_detach(thread);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user