diff --git a/sounds/eat-bite1.wav b/sounds/eat-bite1.wav new file mode 100644 index 0000000..e142880 Binary files /dev/null and b/sounds/eat-bite1.wav differ diff --git a/sounds/eat-bite2.wav b/sounds/eat-bite2.wav new file mode 100644 index 0000000..2ad89ee Binary files /dev/null and b/sounds/eat-bite2.wav differ diff --git a/sounds/eat-crunch1.wav b/sounds/eat-crunch1.wav new file mode 100644 index 0000000..3617898 Binary files /dev/null and b/sounds/eat-crunch1.wav differ diff --git a/sounds/eat-crunch2.wav b/sounds/eat-crunch2.wav new file mode 100644 index 0000000..c32aab7 Binary files /dev/null and b/sounds/eat-crunch2.wav differ diff --git a/src/game.c b/src/game.c index 06a98ac..263001d 100644 --- a/src/game.c +++ b/src/game.c @@ -4,6 +4,7 @@ #include "menu.h" #include "food.h" #include "render.h" +#include "sound.h" // 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 ======= @@ -103,6 +112,8 @@ void runGameCycle() //--- handle food --- if (checkEaten()) { 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 placeFood(); snakeGrow();