From 3c0f837daa41bcfb2c72417afdb75fad2d7d48ba Mon Sep 17 00:00:00 2001 From: jonny_jr9 Date: Mon, 4 Dec 2023 23:12:33 +0100 Subject: [PATCH] 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