From ad1dd7f5c356fff93acea649dc1e9aacf8ad9289 Mon Sep 17 00:00:00 2001 From: jonny_jr9 Date: Sun, 3 Dec 2023 22:16:55 +0100 Subject: [PATCH 1/5] Add tests, Disable collision - Game runs in console! currently starts SDL window and repeatedly renders the game to console. The snake can be controlled with arrow-keys while the SDL-window is focused. main: add 3 test sections for testing certain functions that can be enabled using a macro variable game.c: temporarily disable collision, otherwise confusing state because main and menu not implemented yet. --- src/game.c | 10 +++++---- src/main.cpp | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 65 insertions(+), 5 deletions(-) diff --git a/src/game.c b/src/game.c index c72ddaf..2dd515e 100644 --- a/src/game.c +++ b/src/game.c @@ -92,8 +92,10 @@ void runGameCycle() // show leaderboard when collided // TODO consider game.lifesRemaining and reset if still good? LOGI("game: collided with wall or self! => show leaderboard\n"); - game.gameState = MENU; - showLeaderboard(); + LOGI("DEBUG: collision currently disabled, game will continue in 1s...\n"); + DELAY(1000); + //game.gameState = MENU; //TODO add config.collisionEnabled option? + //showLeaderboard(); return; } @@ -108,7 +110,7 @@ void runGameCycle() } //--- update frame --- - renderGame(); - //printMap(game.map); (render game to console) + //renderGame(); + printMap(game.map); //render game to console return; } \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp index f0a7d5c..54813df 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2,6 +2,9 @@ extern "C" { #include "food.h" +#include "game.h" +#include "input.h" +#include "render.h" } //initialize SDL window @@ -11,8 +14,30 @@ extern "C" { //uninitialize SDL + +//========================== +//====== enabled test ====== +//========================== +//uncomment one test at a time to run the corresponding code in main() +//#define TEST__FOOD_PLACEMENT +//#define TEST__SDL_INPUT +#define TEST__GAME_WITH_CONSOLE_OUTPUT + + + + int main(int argc, char *argv[]) { + gameInit(); + + +#ifdef TEST__FOOD_PLACEMENT + // --- test food.c --- + startFoodPlacementTest(); +#endif + + + SDL_Init(SDL_INIT_VIDEO); SDL_Window *window = SDL_CreateWindow( @@ -29,7 +54,40 @@ int main(int argc, char *argv[]) SDL_RenderClear(renderer); SDL_RenderPresent(renderer); - SDL_Delay(1000); + + + + +#ifdef TEST__GAME_WITH_CONSOLE_OUTPUT + // --- test game with render to console --- + game.gameState = RUNNING; + while (game.gameState != EXIT) + { + processInputEvent(); + SDL_Delay(600); + processInputEvent(); + runGameCycle(); + } +#endif + + + + +#ifdef TEST__SDL_INPUT + // --- test input.c --- + game.gameState = RUNNING; + while (game.gameState != EXIT) + { + processInputEvent(); + SDL_Delay(100); + } +#endif + + + + + + SDL_Delay(500); SDL_DestroyWindow(window); SDL_Quit(); From cf92191177cfeee99b7971d6dd02b3dce027d62d Mon Sep 17 00:00:00 2001 From: jonny_jr9 Date: Mon, 4 Dec 2023 22:58:08 +0100 Subject: [PATCH 2/5] Fix #2 random segfault after growing see issue for more details https://github.com/Jonny999999/snake-pp/issues/2 --- src/game.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/game.c b/src/game.c index 2dd515e..7cd36a7 100644 --- a/src/game.c +++ b/src/game.c @@ -105,9 +105,10 @@ void runGameCycle() //--- handle food --- if (checkEaten()) { LOGI("game: picked up food at x=%d y=%d -> growing, placing food\n", game.foodX, game.foodY); + // NOTE: order of place and grow is relevant, otherwise function in food.c will access invalid memory + placeFood(); snakeGrow(); - placeFood(); - } +} //--- update frame --- //renderGame(); From 3c0f837daa41bcfb2c72417afdb75fad2d7d48ba Mon Sep 17 00:00:00 2001 From: jonny_jr9 Date: Mon, 4 Dec 2023 23:12:33 +0100 Subject: [PATCH 3/5] Add new map "empty", Increase game speed --- src/game.c | 1 + src/main.cpp | 2 +- src/map.c | 22 +++++++++++++++++++--- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/src/game.c b/src/game.c index 7cd36a7..065088c 100644 --- a/src/game.c +++ b/src/game.c @@ -38,6 +38,7 @@ void gameInit() //load default map if no map loaded yet if (!game.mapIsLoaded){ loadMapByName("default"); + //loadMapByName("empty"); //loadMapByName("intermediate"); } diff --git a/src/main.cpp b/src/main.cpp index 54813df..b3b5e00 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -64,7 +64,7 @@ int main(int argc, char *argv[]) while (game.gameState != EXIT) { processInputEvent(); - SDL_Delay(600); + SDL_Delay(300); processInputEvent(); runGameCycle(); } diff --git a/src/map.c b/src/map.c index 222b506..3ff3af7 100644 --- a/src/map.c +++ b/src/map.c @@ -28,7 +28,7 @@ void renderGameToArray(int mapFrame[MAX_MAP_SIZE][MAX_MAP_SIZE], map_t map, snak { mapFrame[snake.tail[i][1]][snake.tail[i][0]] = 5; } - // copy food + // copy food mapFrame[game.foodY][game.foodX] = 6; // copy snake head (last element -> head overwrites previous elements) mapFrame[snake.headY][snake.headX] = 4; @@ -185,6 +185,22 @@ static const map_t map_default = { .color = "blue"}}, .portalCount = 1}; + +static const map_t map_empty = { + .width = 20, + .height = 10, + .name = "empty", + .collisions = {}, + .collisionCount = 0, + .portals = { + {.posX = 5, + .posY = 8, + .targetX = 7, + .targetY = 1, + .color = "blue"}}, + .portalCount = 1}; + + static const map_t map_intermediate = { .width = 15, .height = 15, @@ -205,5 +221,5 @@ static const map_t map_intermediate = { .portalCount = 2}; // global variables for accessing the stored maps -const map_t *storedMaps[16] = {&map_default, &map_intermediate}; -const int storedMapsCount = 2; \ No newline at end of file +const map_t *storedMaps[16] = {&map_default, &map_empty, &map_intermediate}; +const int storedMapsCount = 3; \ No newline at end of file From ae7469f291ff9866aefba320b82fa02899c572da Mon Sep 17 00:00:00 2001 From: Hanse-14 Date: Thu, 7 Dec 2023 15:52:41 +0100 Subject: [PATCH 4/5] add function snakeUpdateHeadPos() write content of snakeSetHeadPos() in snakeUpdateHeadPos() snakeSetHeadPos() set head-position via transfer parameters --- include/snake.h | 7 +++++-- src/snake.c | 16 ++++++++++++---- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/include/snake.h b/include/snake.h index 5f6990d..ddd784a 100644 --- a/include/snake.h +++ b/include/snake.h @@ -39,6 +39,9 @@ bool snakeIsAlive(); // Überprüfen, ob Schlange noch lebt // Prüft Kollision mit sich selbst -void snakeSetHeadPos(); // optional +void snakeSetHeadPos(int xPos, int yPos); // optional // für handlePortals -// generiert zufällige Zielsposition, wohin sich die Schlange nach Betreten eines Portals bewegt \ No newline at end of file +// generiert zufällige Zielposition(Übergabeparameter), wohin sich die Schlange nach Betreten eines Portals bewegt + +void snakeUpdateHeadPos(); +// berechnet neue Position des Kopfs anhand der aktuellen Bewegungsrichtung \ No newline at end of file diff --git a/src/snake.c b/src/snake.c index 42f8c94..a39a9b8 100644 --- a/src/snake.c +++ b/src/snake.c @@ -45,8 +45,8 @@ void snakeMove() { int i = game.snake.length - 1; // counter for snake moving - // update head position - snakeSetHeadPos(); + // update head position automatically + snakeUpdateHeadPos(); // tail part of[x,y][0,1] get coordinates of tail part before while(i) @@ -77,9 +77,17 @@ bool snakeIsAlive() return true; } -void snakeSetHeadPos() +void snakeSetHeadPos(int xPos, int yPos) { - switch(game.snake.direction) + game.snake.headX = xPos; + game.snake.headY = yPos; + return; +} + + +void snakeUpdateHeadPos() +{ + switch(game.snake.direction) { // DOWN case DOWN: From 655657ab4380f0bc2316467430febcd05b529e38 Mon Sep 17 00:00:00 2001 From: Hanse-14 Date: Thu, 7 Dec 2023 16:16:29 +0100 Subject: [PATCH 5/5] Fix snakeSetHeadPos() - Head position will be updated in tail[][] array --- src/snake.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/snake.c b/src/snake.c index a39a9b8..b348b27 100644 --- a/src/snake.c +++ b/src/snake.c @@ -81,6 +81,8 @@ void snakeSetHeadPos(int xPos, int yPos) { game.snake.headX = xPos; game.snake.headY = yPos; + game.snake.tail[0][0] = xPos; + game.snake.tail[0][1] = yPos; return; }