4 Commits

Author SHA1 Message Date
jonny_l480
fcea6f57ab Fix deadlock on sound error (mutex not released)
when sound failed to play,
the function returned but did not release mutex.
2023-12-22 13:34:51 +01:00
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
jonny_jr9
52c0838dec Add playSoundAsync() -> Fixes game delay
Add function that plays sound using a separate thread.
For not blocking the main thread
2023-12-14 21:24:49 +01:00
jonny_jr9
bc363a9f8b Add playSound(), Reduce debug output - sound on collide works
currently plays sound when snake crashes (leaderboard shown)

- shorten example audio file
- Add sound.c: abstract function to play .wav files
- config:
    - Add config option RENDER_GAME_TO_CONSOLE
    - disable debug output
2023-12-14 18:39:20 +01:00