Add sounds when food eaten, FIXME: adds unwanted delay

playSound() causes approx 200ms delay before playing a sound
which now significantly lags the game when picking up food
This commit is contained in:
jonny_jr9 2023-12-14 20:29:03 +01:00
parent bc363a9f8b
commit 9c1ca72321
5 changed files with 11 additions and 0 deletions

BIN
sounds/eat-bite1.wav Normal file

Binary file not shown.

BIN
sounds/eat-bite2.wav Normal file

Binary file not shown.

BIN
sounds/eat-crunch1.wav Normal file

Binary file not shown.

BIN
sounds/eat-crunch2.wav Normal file

Binary file not shown.

View File

@ -4,6 +4,7 @@
#include "menu.h" #include "menu.h"
#include "food.h" #include "food.h"
#include "render.h" #include "render.h"
#include "sound.h"
// global struct for storing all game data // global struct for storing all game data
@ -19,6 +20,14 @@ gameData_t game = {
}; };
// list of audio files randomly played when food eaten
const char *eatSounds[] = {
"../sounds/eat-bite1.wav",
"../sounds/eat-bite2.wav",
"../sounds/eat-crunch1.wav",
"../sounds/eat-crunch2.wav"};
#define EAT_SOUNDS_COUNT 4
//======================== //========================
//======= gameInit ======= //======= gameInit =======
@ -103,6 +112,8 @@ void runGameCycle()
//--- handle food --- //--- handle food ---
if (checkEaten()) { if (checkEaten()) {
LOGI("game: picked up food at x=%d y=%d -> growing, placing food\n", game.foodX, game.foodY); LOGI("game: picked up food at x=%d y=%d -> growing, placing food\n", game.foodX, game.foodY);
//play eat sound (picks random file from above list)
playSound(eatSounds[rand() % EAT_SOUNDS_COUNT], false);
// NOTE: order of place and grow is relevant, otherwise function in food.c will access invalid memory // NOTE: order of place and grow is relevant, otherwise function in food.c will access invalid memory
placeFood(); placeFood();
snakeGrow(); snakeGrow();