Cleanup menu_dialog.c

This commit is contained in:
twinaphex 2020-03-05 00:29:48 +01:00
parent 8bad0b6b7e
commit a1951b51b6

View File

@ -30,23 +30,15 @@
#include "../menu_driver.h" #include "../menu_driver.h"
#include "../../configuration.h" #include "../../configuration.h"
#include "../../tasks/tasks_internal.h"
#include "../../performance_counters.h" #include "../../performance_counters.h"
static bool menu_dialog_pending_push = false; static bool menu_dialog_pending_push = false;
static unsigned menu_dialog_current_id = 0; static unsigned menu_dialog_current_id = 0;
static enum menu_dialog_type menu_dialog_current_type = MENU_DIALOG_NONE; static enum menu_dialog_type menu_dialog_current_type = MENU_DIALOG_NONE;
static enum msg_hash_enums menu_dialog_current_msg = MSG_UNKNOWN;
int menu_dialog_iterate(char *s, size_t len, int menu_dialog_iterate(char *s, size_t len,
retro_time_t current_time) retro_time_t current_time)
{ {
#ifdef HAVE_CHEEVOS
rcheevos_ctx_desc_t desc_info;
#endif
bool do_exit = false;
switch (menu_dialog_current_type) switch (menu_dialog_current_type)
{ {
case MENU_DIALOG_WELCOME: case MENU_DIALOG_WELCOME:
@ -65,7 +57,8 @@ int menu_dialog_iterate(char *s, size_t len,
if (!timer.timer_end && rarch_timer_has_expired(&timer)) if (!timer.timer_end && rarch_timer_has_expired(&timer))
{ {
rarch_timer_end(&timer); rarch_timer_end(&timer);
do_exit = true; menu_dialog_current_type = MENU_DIALOG_NONE;
return 1;
} }
} }
break; break;
@ -171,10 +164,13 @@ int menu_dialog_iterate(char *s, size_t len,
#ifdef HAVE_CHEEVOS #ifdef HAVE_CHEEVOS
case MENU_DIALOG_HELP_CHEEVOS_DESCRIPTION: case MENU_DIALOG_HELP_CHEEVOS_DESCRIPTION:
desc_info.idx = menu_dialog_current_id; {
desc_info.s = s; rcheevos_ctx_desc_t desc_info;
desc_info.len = len; desc_info.idx = menu_dialog_current_id;
rcheevos_get_description((rcheevos_ctx_desc_t*) &desc_info); desc_info.s = s;
desc_info.len = len;
rcheevos_get_description((rcheevos_ctx_desc_t*) &desc_info);
}
break; break;
#endif #endif
@ -208,13 +204,15 @@ int menu_dialog_iterate(char *s, size_t len,
case MENU_DIALOG_HELP_EXTRACT: case MENU_DIALOG_HELP_EXTRACT:
{ {
settings_t *settings = config_get_ptr(); settings_t *settings = config_get_ptr();
menu_hash_get_help_enum(MENU_ENUM_LABEL_VALUE_EXTRACTING_PLEASE_WAIT, menu_hash_get_help_enum(
MENU_ENUM_LABEL_VALUE_EXTRACTING_PLEASE_WAIT,
s, len); s, len);
if (settings->bools.bundle_finished) if (settings->bools.bundle_finished)
{ {
settings->bools.bundle_finished = false; settings->bools.bundle_finished = false;
do_exit = true; menu_dialog_current_type = MENU_DIALOG_NONE;
return 1;
} }
} }
break; break;
@ -223,7 +221,7 @@ int menu_dialog_iterate(char *s, size_t len,
case MENU_DIALOG_QUESTION: case MENU_DIALOG_QUESTION:
case MENU_DIALOG_WARNING: case MENU_DIALOG_WARNING:
case MENU_DIALOG_ERROR: case MENU_DIALOG_ERROR:
menu_hash_get_help_enum(menu_dialog_current_msg, menu_hash_get_help_enum(MSG_UNKNOWN,
s, len); s, len);
break; break;
case MENU_DIALOG_NONE: case MENU_DIALOG_NONE:
@ -231,12 +229,6 @@ int menu_dialog_iterate(char *s, size_t len,
break; break;
} }
if (do_exit)
{
menu_dialog_current_type = MENU_DIALOG_NONE;
return 1;
}
return 0; return 0;
} }
@ -292,5 +284,4 @@ void menu_dialog_reset(void)
menu_dialog_pending_push = false; menu_dialog_pending_push = false;
menu_dialog_current_id = 0; menu_dialog_current_id = 0;
menu_dialog_current_type = MENU_DIALOG_NONE; menu_dialog_current_type = MENU_DIALOG_NONE;
menu_dialog_current_msg = MSG_UNKNOWN;
} }