From 983875d064b4ae39b85251bd043ab24ec400074a Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Thu, 13 Sep 2018 11:35:07 +0200 Subject: [PATCH] Maint: Cleaned up a complex function --- src/main.c | 51 +++++++++++++++++++++++++++++++-------------------- 1 file changed, 31 insertions(+), 20 deletions(-) diff --git a/src/main.c b/src/main.c index 99b90ba..59f8e18 100644 --- a/src/main.c +++ b/src/main.c @@ -562,27 +562,8 @@ toggle_fullscreen(void) } static void -handle_main_input(void) +handle_settings_input(void) { - if (gGameState == PLAYING - || gGameState == IN_GAME_MENU - || gGameState == GAME_OVER - || gGameState == COMPLETED) - { - if (!gGui->activeTooltip && input_key_is_pressed(&input, KEY_ESC)) - toggleInGameMenu(NULL); - } - - if (gGameState == CREDITS && input_key_is_pressed(&input, KEY_ESC)) - gGameState = MENU; - else if ((gGameState == SCORE_SCREEN || gGameState == CHARACTER_MENU) - && input_key_is_pressed(&input, KEY_ESC)) - gGameState = MENU; - else if (gGameState == MENU && input_key_is_pressed(&input, KEY_ESC)) - gGameState = QUIT; - else if (gGui->activeTooltip && input_key_is_pressed(&input, KEY_ESC)) - gGui->activeTooltip = NULL; - if (input_modkey_is_pressed(&input, KEY_CTRL_M)) { if (mixer_toggle_music(&gGameState)) gui_log("Music enabled"); @@ -611,6 +592,36 @@ handle_main_input(void) } } +static void +handle_main_input(void) +{ + if (input_key_is_pressed(&input, KEY_ESC)) { + switch (gGameState) { + case CREDITS: + case SCORE_SCREEN: + case CHARACTER_MENU: + gGameState = MENU; + break; + case MENU: + gGameState = QUIT; + break; + case PLAYING: + case IN_GAME_MENU: + case GAME_OVER: + case COMPLETED: + if (gGui->activeTooltip) + gGui->activeTooltip = NULL; + else + toggleInGameMenu(NULL); + default: + break; + } + + } + + handle_settings_input(); +} + static bool handle_events(void) {