From 747b949218a40593c70103a683142041f5bf5b16 Mon Sep 17 00:00:00 2001 From: Hanse-14 Date: Mon, 18 Dec 2023 07:44:03 +0100 Subject: [PATCH] Add pause function - press 'p' or 'space' for pause+ - it goes on with pressing any key --- src/input.c | 10 ++++++++-- src/main.cpp | 5 ++++- src/menu.c | 12 +++++++++--- src/render.c | 8 ++++---- 4 files changed, 25 insertions(+), 10 deletions(-) diff --git a/src/input.c b/src/input.c index ce17f8a..f9b039b 100644 --- a/src/input.c +++ b/src/input.c @@ -27,8 +27,13 @@ void handleInput_runningState(SDL_Event event) case SDLK_p: // p: pause case SDLK_ESCAPE: - game.gameState = PAUSED; - showPauseScreen(); + case SDLK_SPACE: + if(game.gameState == RUNNING) + { + game.gameState = PAUSED; + showPauseScreen(); + } + break; //--- control snake direction --- @@ -105,6 +110,7 @@ void processInputEvent() handleInput_runningState(event); break; case PAUSED: + game.gameState = RUNNING; case MENU: // pass key event to menu handle function which updates menu menuHandleInput(event); diff --git a/src/main.cpp b/src/main.cpp index 491e532..08e3673 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -61,7 +61,10 @@ int main(int argc, char *argv[]) { manageMenu(); } - + if(game.gameState == PAUSE) + { + printf("PAuse\n"); + } if (game.gameState == RUNNING) { now = GET_TIME_MS(); // Timer startet diff = now-game.timestampLastCycle; diff --git a/src/menu.c b/src/menu.c index 4c71f51..93020ab 100644 --- a/src/menu.c +++ b/src/menu.c @@ -164,9 +164,6 @@ void menuHandleInput(SDL_Event event){ // case SDLK_q: // q: quit // game.gameState = EXIT; // break; - case SDLK_F2: - activeMenu = LEADERBOARD; - break; case SDLK_F1: // go to info screen activeMenu = INFOSCREEN; @@ -267,6 +264,15 @@ void menuHandleInput(SDL_Event event){ } } break; + + case LEADERBOARD: + switch(event.key.keysym.sym) + { + case SDLK_q: // q: quit + case SDLK_RETURN: + game.gameState = EXIT; + } + break; } return; diff --git a/src/render.c b/src/render.c index 3577e9d..79e4ca7 100644 --- a/src/render.c +++ b/src/render.c @@ -451,6 +451,10 @@ void renderInfoScreen() return; } + +//-------------------------------------------------------------- +//-------------------RENDER LEADERBOARD------------------------- +//-------------------------------------------------------------- void renderLeaderboard() { #define NUM_COLUMNS 4 @@ -558,10 +562,6 @@ void renderLeaderboard() SDL_DestroyTexture(mapTexture); SDL_DestroyTexture(numberTexture1); SDL_DestroyTexture(numberTexture2); - - - - } SDL_RenderPresent(game.renderer);