snake-pp/include/sound.h
jonny_jr9 6b4bcb09a8 Fix segfault sound-thread (mutex), Add Portal sound
Major changes to sound.c:
    - add mutex (fixes segfault, free erros)
    - allow only one sound at a time, wait for previous to finish
    - outsource init function
    - add global variables
    - return if successfully played
2023-12-15 00:01:22 +01:00

20 lines
635 B
C

#pragma once
#include <stdbool.h>
//===========================
//======== playSound ========
//===========================
//abstract function that plays sound with provided path to .wav file
//'wait' parameter blocks program until playback is finished (otherwise launched in another thread)
int playSound(const char * filePath, bool wait);
//==========================
//===== playSoundAsync =====
//==========================
//launches playSound in another thread to prevent delay
//due to loading of wav file taking up to 300ms
//(equivalent to playsound() with parameter wait=false)
int playSoundAsync(const char *filePath);