Add pause function

- press 'p' or 'space' for pause+
- it goes on with pressing any key
This commit is contained in:
Hanse-14 2023-12-18 07:44:03 +01:00
parent 18feb2ec62
commit 747b949218
4 changed files with 25 additions and 10 deletions

View File

@ -27,8 +27,13 @@ void handleInput_runningState(SDL_Event event)
case SDLK_p: // p: pause case SDLK_p: // p: pause
case SDLK_ESCAPE: case SDLK_ESCAPE:
game.gameState = PAUSED; case SDLK_SPACE:
showPauseScreen(); if(game.gameState == RUNNING)
{
game.gameState = PAUSED;
showPauseScreen();
}
break; break;
//--- control snake direction --- //--- control snake direction ---
@ -105,6 +110,7 @@ void processInputEvent()
handleInput_runningState(event); handleInput_runningState(event);
break; break;
case PAUSED: case PAUSED:
game.gameState = RUNNING;
case MENU: case MENU:
// pass key event to menu handle function which updates menu // pass key event to menu handle function which updates menu
menuHandleInput(event); menuHandleInput(event);

View File

@ -61,7 +61,10 @@ int main(int argc, char *argv[])
{ {
manageMenu(); manageMenu();
} }
if(game.gameState == PAUSE)
{
printf("PAuse\n");
}
if (game.gameState == RUNNING) { if (game.gameState == RUNNING) {
now = GET_TIME_MS(); // Timer startet now = GET_TIME_MS(); // Timer startet
diff = now-game.timestampLastCycle; diff = now-game.timestampLastCycle;

View File

@ -164,9 +164,6 @@ void menuHandleInput(SDL_Event event){
// case SDLK_q: // q: quit // case SDLK_q: // q: quit
// game.gameState = EXIT; // game.gameState = EXIT;
// break; // break;
case SDLK_F2:
activeMenu = LEADERBOARD;
break;
case SDLK_F1: // go to info screen case SDLK_F1: // go to info screen
activeMenu = INFOSCREEN; activeMenu = INFOSCREEN;
@ -267,6 +264,15 @@ void menuHandleInput(SDL_Event event){
} }
} }
break; break;
case LEADERBOARD:
switch(event.key.keysym.sym)
{
case SDLK_q: // q: quit
case SDLK_RETURN:
game.gameState = EXIT;
}
break;
} }
return; return;

View File

@ -451,6 +451,10 @@ void renderInfoScreen()
return; return;
} }
//--------------------------------------------------------------
//-------------------RENDER LEADERBOARD-------------------------
//--------------------------------------------------------------
void renderLeaderboard() void renderLeaderboard()
{ {
#define NUM_COLUMNS 4 #define NUM_COLUMNS 4
@ -558,10 +562,6 @@ void renderLeaderboard()
SDL_DestroyTexture(mapTexture); SDL_DestroyTexture(mapTexture);
SDL_DestroyTexture(numberTexture1); SDL_DestroyTexture(numberTexture1);
SDL_DestroyTexture(numberTexture2); SDL_DestroyTexture(numberTexture2);
} }
SDL_RenderPresent(game.renderer); SDL_RenderPresent(game.renderer);