RetroArch/menu/cbs/menu_cbs_iterate.c

607 lines
18 KiB
C
Raw Normal View History

2015-02-27 02:05:19 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2011-2015 - Daniel De Matteis
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
2015-06-13 17:12:10 +00:00
#include <compat/strl.h>
2015-02-27 02:05:19 +00:00
#include <file/file_path.h>
2015-03-15 03:52:46 +00:00
#include <retro_inline.h>
#include "../menu.h"
#include "../menu_display.h"
2015-06-13 17:12:10 +00:00
#include "../menu_hash.h"
#include "../menu_entry.h"
#include "../menu_setting.h"
#include "../menu_input.h"
#include "../menu_shader.h"
#include "../menu_navigation.h"
2015-06-13 17:12:10 +00:00
#include "../../general.h"
#include "../../retroarch.h"
2015-06-13 20:57:55 +00:00
#include "../../input/input_common.h"
#include "../../input/input_autodetect.h"
2015-02-27 02:05:19 +00:00
extern char detect_content_path[PATH_MAX_LENGTH];
2015-02-27 02:05:19 +00:00
static int archive_open(void)
{
2015-06-12 15:23:31 +00:00
char cat_path[PATH_MAX_LENGTH] = {0};
menu_displaylist_info_t info = {0};
const char *menu_path = NULL;
const char *menu_label = NULL;
const char* path = NULL;
unsigned int type = 0;
size_t entry_idx = 0;
menu_navigation_t *nav = menu_navigation_get_ptr();
menu_list_t *menu_list = menu_list_get_ptr();
2015-02-27 02:05:19 +00:00
2015-05-07 03:11:37 +00:00
if (!menu_list || !nav)
2015-02-27 02:05:19 +00:00
return -1;
2015-05-07 03:11:37 +00:00
menu_list_pop_stack(menu_list);
2015-02-27 02:05:19 +00:00
2015-05-07 03:11:37 +00:00
menu_list_get_last_stack(menu_list,
&menu_path, &menu_label, NULL, NULL);
2015-02-27 02:05:19 +00:00
2015-05-07 03:11:37 +00:00
if (menu_list_get_size(menu_list) == 0)
2015-02-27 02:05:19 +00:00
return 0;
2015-05-07 03:11:37 +00:00
menu_list_get_at_offset(menu_list->selection_buf,
nav->selection_ptr, &path, NULL, &type, &entry_idx);
2015-02-27 02:05:19 +00:00
fill_pathname_join(cat_path, menu_path, path, sizeof(cat_path));
fill_pathname_join(detect_content_path, menu_path, path,
sizeof(detect_content_path));
info.list = menu_list->menu_stack;
info.type = type;
info.directory_ptr = nav->selection_ptr;
strlcpy(info.path, cat_path, sizeof(info.path));
strlcpy(info.label, menu_label, sizeof(info.label));
return menu_displaylist_push_list(&info, DISPLAYLIST_GENERIC);
2015-02-27 02:05:19 +00:00
}
static int archive_load(void)
{
int ret = 0;
menu_displaylist_info_t info = {0};
2015-02-27 02:05:19 +00:00
const char *menu_path = NULL;
const char *menu_label = NULL;
const char* path = NULL;
size_t entry_idx = 0;
2015-03-20 20:22:38 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 04:42:49 +00:00
global_t *global = global_get_ptr();
size_t selected = menu_navigation_get_current_selection();
2015-06-14 02:01:21 +00:00
menu_handle_t *menu = menu_driver_get_ptr();
menu_list_t *menu_list = menu_list_get_ptr();
2015-02-27 02:05:19 +00:00
2015-06-14 02:01:21 +00:00
if (!menu || !menu_list)
2015-02-27 02:05:19 +00:00
return -1;
2015-06-14 02:01:21 +00:00
menu_list_pop_stack(menu_list);
2015-02-27 02:05:19 +00:00
2015-06-14 02:01:21 +00:00
menu_list_get_last_stack(menu_list, &menu_path, &menu_label, NULL, NULL);
2015-02-27 02:05:19 +00:00
2015-06-14 02:01:21 +00:00
if (menu_list_get_size(menu_list) == 0)
2015-02-27 02:05:19 +00:00
return 0;
2015-06-14 02:01:21 +00:00
menu_list_get_at_offset(menu_list->selection_buf,
selected, &path, NULL, NULL, &entry_idx);
2015-02-27 02:05:19 +00:00
2015-03-21 04:42:49 +00:00
ret = rarch_defer_core(global->core_info, menu_path, path, menu_label,
2015-02-27 02:05:19 +00:00
menu->deferred_path, sizeof(menu->deferred_path));
fill_pathname_join(detect_content_path, menu_path, path,
sizeof(detect_content_path));
2015-02-27 02:05:19 +00:00
switch (ret)
{
case -1:
event_command(EVENT_CMD_LOAD_CORE);
menu_common_load_content(false, CORE_TYPE_PLAIN);
2015-02-27 02:05:19 +00:00
break;
case 0:
2015-06-14 02:01:21 +00:00
info.list = menu_list->menu_stack;
info.type = 0;
info.directory_ptr = selected;
strlcpy(info.path, settings->libretro_directory, sizeof(info.path));
2015-06-19 02:40:43 +00:00
strlcpy(info.label,
menu_hash_to_str(MENU_LABEL_DEFERRED_CORE_LIST), sizeof(info.label));
ret = menu_displaylist_push_list(&info, DISPLAYLIST_GENERIC);
2015-02-27 02:05:19 +00:00
break;
}
return ret;
2015-02-27 02:05:19 +00:00
}
2015-05-18 20:26:00 +00:00
static int load_or_open_zip_iterate(char *s, size_t len, unsigned action)
2015-02-27 02:05:19 +00:00
{
2015-05-18 20:26:00 +00:00
snprintf(s, len, "Opening compressed file\n"
2015-02-27 02:05:19 +00:00
" \n"
" - OK to open as Folder\n"
" - Cancel/Back to Load \n");
2015-05-18 20:26:00 +00:00
menu_driver_render_messagebox(s);
2015-02-27 02:05:19 +00:00
switch (action)
{
case MENU_ACTION_OK:
archive_open();
break;
case MENU_ACTION_CANCEL:
archive_load();
break;
}
return 0;
}
2015-05-18 20:26:00 +00:00
static int action_iterate_help(char *s, size_t len, const char *label)
2015-02-27 02:05:19 +00:00
{
unsigned i;
static const unsigned binds[] = {
RETRO_DEVICE_ID_JOYPAD_UP,
RETRO_DEVICE_ID_JOYPAD_DOWN,
RETRO_DEVICE_ID_JOYPAD_A,
RETRO_DEVICE_ID_JOYPAD_B,
RETRO_DEVICE_ID_JOYPAD_SELECT,
RARCH_MENU_TOGGLE,
RARCH_QUIT_KEY,
RETRO_DEVICE_ID_JOYPAD_X,
RETRO_DEVICE_ID_JOYPAD_Y,
2015-02-27 02:05:19 +00:00
};
2015-06-12 17:25:08 +00:00
char desc[ARRAY_SIZE(binds)][64] = {{0}};
2015-06-12 15:23:31 +00:00
settings_t *settings = config_get_ptr();
menu_driver_render();
2015-02-27 02:05:19 +00:00
for (i = 0; i < ARRAY_SIZE(binds); i++)
{
const struct retro_keybind *keybind = (const struct retro_keybind*)
2015-03-20 20:22:38 +00:00
&settings->input.binds[0][binds[i]];
2015-02-27 02:05:19 +00:00
const struct retro_keybind *auto_bind = (const struct retro_keybind*)
input_get_auto_bind(0, binds[i]);
input_get_bind_string(desc[i], keybind, auto_bind, sizeof(desc[i]));
}
2015-05-18 20:26:00 +00:00
snprintf(s, len,
2015-02-27 02:05:19 +00:00
"-- Welcome to RetroArch --\n"
" \n" // strtok_r doesn't split empty strings.
"Basic Menu controls:\n"
" Scroll (Up): %-20s\n"
" Scroll (Down): %-20s\n"
" Accept/OK: %-20s\n"
" Back: %-20s\n"
" Info: %-20s\n"
"Enter/Exit Menu: %-20s\n"
" Exit RetroArch: %-20s\n"
"Toggle Keyboard: %-20s\n"
" \n"
"To run content:\n"
"Load a libretro core (Core).\n"
"Load a content file (Load Content). \n"
" \n"
2015-04-13 15:29:21 +00:00
"See Path Settings to set directories \n"
"for faster access to files.\n"
2015-02-27 02:05:19 +00:00
" \n"
"Press Accept/OK to continue.",
2015-05-27 03:24:41 +00:00
desc[0], desc[1], desc[2], desc[3], desc[4], desc[5], desc[6], desc[7]);
2015-02-27 02:05:19 +00:00
return 0;
2015-02-27 02:05:19 +00:00
}
2015-05-18 20:26:00 +00:00
static int action_iterate_info(char *s, size_t len, const char *label)
2015-02-27 02:05:19 +00:00
{
int ret = 0;
2015-06-12 15:23:31 +00:00
char needle[PATH_MAX_LENGTH] = {0};
2015-03-23 02:09:30 +00:00
unsigned info_type = 0;
2015-02-27 02:05:19 +00:00
rarch_setting_t *current_setting = NULL;
2015-03-23 02:09:30 +00:00
file_list_t *list = NULL;
menu_list_t *menu_list = menu_list_get_ptr();
size_t selection = menu_navigation_get_current_selection();
2015-06-15 15:19:58 +00:00
if (!menu_list)
2015-02-27 02:05:19 +00:00
return 0;
list = (file_list_t*)menu_list->selection_buf;
2015-02-27 02:05:19 +00:00
menu_driver_render();
2015-02-27 02:05:19 +00:00
2015-05-08 15:19:43 +00:00
current_setting = menu_setting_find(list->list[selection].label);
2015-02-27 02:05:19 +00:00
if (current_setting)
strlcpy(needle, current_setting->name, sizeof(needle));
2015-05-08 15:19:43 +00:00
else if ((current_setting = menu_setting_find(list->list[selection].label)))
2015-02-27 02:05:19 +00:00
{
if (current_setting)
strlcpy(needle, current_setting->name, sizeof(needle));
}
else
{
const char *lbl = NULL;
menu_list_get_at_offset(list, selection, NULL, &lbl, &info_type, NULL);
2015-02-27 02:05:19 +00:00
if (lbl)
strlcpy(needle, lbl, sizeof(needle));
}
2015-05-18 20:26:00 +00:00
setting_get_description(needle, s, len);
2015-02-27 02:05:19 +00:00
return ret;
2015-02-27 02:05:19 +00:00
}
2015-05-18 20:26:00 +00:00
static int action_iterate_load_open_zip(const char *label, char *s, size_t len, unsigned action)
2015-02-27 02:05:19 +00:00
{
2015-03-20 20:22:38 +00:00
settings_t *settings = config_get_ptr();
switch (settings->archive.mode)
2015-02-27 02:05:19 +00:00
{
case 0:
2015-05-18 20:26:00 +00:00
return load_or_open_zip_iterate(s, len, action);
2015-02-27 02:05:19 +00:00
case 1:
return archive_load();
case 2:
return archive_open();
default:
break;
}
return 0;
}
2015-06-22 00:19:29 +00:00
static int action_iterate_menu_viewport(char *s, size_t len,
const char *label, unsigned action, uint32_t hash)
2015-02-27 02:05:19 +00:00
{
int stride_x = 1, stride_y = 1;
menu_displaylist_info_t info = {0};
2015-02-27 02:05:19 +00:00
struct retro_game_geometry *geom = NULL;
2015-03-23 02:09:30 +00:00
const char *base_msg = NULL;
unsigned type = 0;
video_viewport_t *custom = video_viewport_get_custom();
2015-06-15 00:37:32 +00:00
menu_display_t *disp = menu_display_get_ptr();
2015-06-13 14:22:05 +00:00
menu_navigation_t *nav = menu_navigation_get_ptr();
menu_list_t *menu_list = menu_list_get_ptr();
2015-03-23 02:09:30 +00:00
settings_t *settings = config_get_ptr();
struct retro_system_av_info *av_info = video_viewport_get_system_av_info();
2015-03-20 20:22:38 +00:00
2015-06-15 15:19:58 +00:00
if (!menu_list)
2015-02-27 02:05:19 +00:00
return -1;
menu_list_get_last_stack(menu_list, NULL, NULL, &type, NULL);
2015-02-27 02:05:19 +00:00
geom = (struct retro_game_geometry*)&av_info->geometry;
2015-02-27 02:05:19 +00:00
2015-03-20 20:22:38 +00:00
if (settings->video.scale_integer)
2015-02-27 02:05:19 +00:00
{
stride_x = geom->base_width;
stride_y = geom->base_height;
}
switch (action)
{
case MENU_ACTION_UP:
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT)
{
2015-03-23 02:09:30 +00:00
custom->y -= stride_y;
2015-02-27 02:05:19 +00:00
custom->height += stride_y;
}
else if (custom->height >= (unsigned)stride_y)
custom->height -= stride_y;
event_command(EVENT_CMD_VIDEO_APPLY_STATE_CHANGES);
2015-02-27 02:05:19 +00:00
break;
case MENU_ACTION_DOWN:
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT)
{
custom->y += stride_y;
if (custom->height >= (unsigned)stride_y)
custom->height -= stride_y;
}
else
custom->height += stride_y;
event_command(EVENT_CMD_VIDEO_APPLY_STATE_CHANGES);
2015-02-27 02:05:19 +00:00
break;
case MENU_ACTION_LEFT:
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT)
{
2015-03-23 02:09:30 +00:00
custom->x -= stride_x;
2015-02-27 02:05:19 +00:00
custom->width += stride_x;
}
else if (custom->width >= (unsigned)stride_x)
custom->width -= stride_x;
event_command(EVENT_CMD_VIDEO_APPLY_STATE_CHANGES);
2015-02-27 02:05:19 +00:00
break;
case MENU_ACTION_RIGHT:
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT)
{
custom->x += stride_x;
if (custom->width >= (unsigned)stride_x)
custom->width -= stride_x;
}
else
custom->width += stride_x;
event_command(EVENT_CMD_VIDEO_APPLY_STATE_CHANGES);
2015-02-27 02:05:19 +00:00
break;
case MENU_ACTION_CANCEL:
menu_list_pop_stack(menu_list);
2015-02-27 02:05:19 +00:00
if (hash == MENU_LABEL_CUSTOM_VIEWPORT_2)
2015-02-27 02:05:19 +00:00
{
info.list = menu_list->menu_stack;
info.type = MENU_SETTINGS_CUSTOM_VIEWPORT;
2015-06-13 14:22:05 +00:00
info.directory_ptr = nav->selection_ptr;
2015-05-31 20:40:26 +00:00
menu_displaylist_push_list(&info, DISPLAYLIST_INFO);
2015-02-27 02:05:19 +00:00
}
break;
case MENU_ACTION_OK:
menu_list_pop_stack(menu_list);
2015-02-27 02:05:19 +00:00
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT
2015-03-20 20:22:38 +00:00
&& !settings->video.scale_integer)
{
info.list = menu_list->menu_stack;
2015-06-21 06:41:36 +00:00
strlcpy(info.label,
menu_hash_to_str(MENU_LABEL_CUSTOM_VIEWPORT_2),
sizeof(info.label));
info.type = 0;
2015-06-13 14:22:05 +00:00
info.directory_ptr = nav->selection_ptr;
2015-05-31 20:40:26 +00:00
menu_displaylist_push_list(&info, DISPLAYLIST_INFO);
}
2015-02-27 02:05:19 +00:00
break;
case MENU_ACTION_START:
2015-03-20 20:22:38 +00:00
if (!settings->video.scale_integer)
2015-02-27 02:05:19 +00:00
{
video_viewport_t vp;
2015-03-22 20:28:50 +00:00
video_driver_viewport_info(&vp);
2015-02-27 02:05:19 +00:00
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT)
{
2015-03-23 02:09:30 +00:00
custom->width += custom->x;
2015-02-27 02:05:19 +00:00
custom->height += custom->y;
2015-03-23 02:09:30 +00:00
custom->x = 0;
custom->y = 0;
2015-02-27 02:05:19 +00:00
}
else
{
2015-03-23 02:09:30 +00:00
custom->width = vp.full_width - custom->x;
custom->height = vp.full_height - custom->y;
2015-02-27 02:05:19 +00:00
}
event_command(EVENT_CMD_VIDEO_APPLY_STATE_CHANGES);
2015-02-27 02:05:19 +00:00
}
break;
case MENU_ACTION_MESSAGE:
2015-06-15 00:37:32 +00:00
if (disp)
disp->msg_force = true;
2015-02-27 02:05:19 +00:00
break;
default:
break;
}
menu_list_get_last_stack(menu_list, NULL, &label, &type, NULL);
2015-02-27 02:05:19 +00:00
menu_driver_render();
2015-02-27 02:05:19 +00:00
2015-03-20 20:22:38 +00:00
if (settings->video.scale_integer)
2015-02-27 02:05:19 +00:00
{
2015-03-23 02:09:30 +00:00
custom->x = 0;
custom->y = 0;
2015-02-27 02:05:19 +00:00
custom->width = ((custom->width + geom->base_width - 1) /
geom->base_width) * geom->base_width;
custom->height = ((custom->height + geom->base_height - 1) /
geom->base_height) * geom->base_height;
2015-03-23 02:09:30 +00:00
base_msg = "Set scale";
2015-05-18 20:26:00 +00:00
snprintf(s, len, "%s (%4ux%4u, %u x %u scale)",
2015-02-27 02:05:19 +00:00
base_msg,
custom->width, custom->height,
custom->width / geom->base_width,
custom->height / geom->base_height);
}
else
{
2015-06-19 02:46:11 +00:00
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT)
2015-06-21 06:41:36 +00:00
base_msg = menu_hash_to_str(MENU_LABEL_VALUE_CUSTOM_VIEWPORT_1);
2015-06-19 02:46:11 +00:00
else if (hash == MENU_LABEL_CUSTOM_VIEWPORT_2)
2015-06-21 06:41:36 +00:00
base_msg = menu_hash_to_str(MENU_LABEL_VALUE_CUSTOM_VIEWPORT_2);
2015-02-27 02:05:19 +00:00
2015-05-18 20:26:00 +00:00
snprintf(s, len, "%s (%d, %d : %4ux%4u)",
2015-02-27 02:05:19 +00:00
base_msg, custom->x, custom->y, custom->width, custom->height);
}
2015-05-18 20:26:00 +00:00
menu_driver_render_messagebox(s);
2015-02-27 02:05:19 +00:00
if (!custom->width)
custom->width = stride_x;
if (!custom->height)
custom->height = stride_y;
aspectratio_lut[ASPECT_RATIO_CUSTOM].value =
(float)custom->width / custom->height;
event_command(EVENT_CMD_VIDEO_APPLY_STATE_CHANGES);
2015-02-27 02:05:19 +00:00
return 0;
}
2015-05-18 19:42:09 +00:00
enum action_iterate_type
{
ITERATE_TYPE_DEFAULT = 0,
ITERATE_TYPE_HELP,
ITERATE_TYPE_INFO,
ITERATE_TYPE_ZIP,
ITERATE_TYPE_MESSAGE,
ITERATE_TYPE_VIEWPORT,
ITERATE_TYPE_BIND,
};
static enum action_iterate_type action_iterate_type(uint32_t hash)
{
switch (hash)
{
case MENU_LABEL_HELP:
return ITERATE_TYPE_HELP;
case MENU_LABEL_INFO_SCREEN:
return ITERATE_TYPE_INFO;
case MENU_LABEL_LOAD_OPEN_ZIP:
return ITERATE_TYPE_ZIP;
case MENU_LABEL_MESSAGE:
return ITERATE_TYPE_MESSAGE;
case MENU_LABEL_CUSTOM_VIEWPORT_1:
case MENU_LABEL_CUSTOM_VIEWPORT_2:
return ITERATE_TYPE_VIEWPORT;
case MENU_LABEL_CUSTOM_BIND:
case MENU_LABEL_CUSTOM_BIND_ALL:
case MENU_LABEL_CUSTOM_BIND_DEFAULTS:
return ITERATE_TYPE_BIND;
}
2015-05-18 19:42:09 +00:00
return ITERATE_TYPE_DEFAULT;
}
static int action_iterate_main(const char *label, unsigned action)
{
2015-06-12 15:23:31 +00:00
menu_entry_t entry;
2015-05-18 21:56:23 +00:00
static bool did_messagebox = false;
2015-06-12 15:23:31 +00:00
char msg[PATH_MAX_LENGTH] = {0};
2015-05-18 19:42:09 +00:00
enum action_iterate_type iterate_type;
2015-05-18 19:58:17 +00:00
size_t selected, *pop_selected = false;
bool do_messagebox = false;
2015-05-18 19:55:20 +00:00
bool do_pop_stack = false;
2015-05-18 19:52:14 +00:00
bool do_post_iterate = false;
bool do_render = false;
2015-05-18 19:42:09 +00:00
int ret = 0;
menu_handle_t *menu = menu_driver_get_ptr();
2015-06-13 14:22:05 +00:00
menu_navigation_t *nav = menu_navigation_get_ptr();
2015-06-15 00:08:25 +00:00
menu_display_t *disp = menu_display_get_ptr();
2015-05-18 19:42:09 +00:00
menu_list_t *menu_list = menu_list_get_ptr();
2015-06-17 17:55:24 +00:00
uint32_t hash = menu_hash_calculate(label);
2015-05-18 19:42:09 +00:00
if (!menu || !menu_list)
2015-05-18 01:37:07 +00:00
return 0;
2015-05-18 19:42:09 +00:00
iterate_type = action_iterate_type(hash);
2015-05-08 09:11:18 +00:00
2015-05-18 19:42:09 +00:00
switch (iterate_type)
{
case ITERATE_TYPE_HELP:
2015-05-18 20:26:00 +00:00
ret = action_iterate_help(msg, sizeof(msg), label);
2015-05-18 19:58:17 +00:00
pop_selected = NULL;
do_messagebox = true;
2015-05-18 19:58:17 +00:00
do_pop_stack = true;
2015-05-18 19:52:14 +00:00
do_post_iterate = true;
2015-05-18 19:42:09 +00:00
break;
case ITERATE_TYPE_BIND:
if (menu_input_bind_iterate())
menu_list_pop_stack(menu_list);
break;
case ITERATE_TYPE_VIEWPORT:
ret = action_iterate_menu_viewport(msg, sizeof(msg), label, action, hash);
2015-05-18 19:42:09 +00:00
break;
case ITERATE_TYPE_INFO:
2015-05-18 20:26:00 +00:00
ret = action_iterate_info(msg, sizeof(msg), label);
2015-06-13 14:22:05 +00:00
pop_selected = &nav->selection_ptr;
do_messagebox = true;
2015-05-18 19:55:20 +00:00
do_pop_stack = true;
2015-05-18 19:52:14 +00:00
do_post_iterate = true;
2015-05-18 19:42:09 +00:00
break;
case ITERATE_TYPE_ZIP:
2015-05-18 20:26:00 +00:00
ret = action_iterate_load_open_zip(label, msg, sizeof(msg), action);
2015-05-18 19:42:09 +00:00
break;
case ITERATE_TYPE_MESSAGE:
2015-06-15 00:08:25 +00:00
strlcpy(msg, disp->message_contents, sizeof(msg));
2015-06-13 14:22:05 +00:00
pop_selected = &nav->selection_ptr;
2015-05-18 20:32:31 +00:00
do_messagebox = true;
2015-05-18 19:55:20 +00:00
do_pop_stack = true;
2015-05-18 19:42:09 +00:00
break;
case ITERATE_TYPE_DEFAULT:
2015-06-15 17:18:06 +00:00
selected = menu_navigation_get_current_selection();
2015-06-15 17:36:16 +00:00
/* FIXME: selected > selection_buf->list->size, i don't know why. */
2015-06-15 17:18:06 +00:00
selected = max(min(selected, menu_list_get_size(menu_list)-1), 0);
2015-05-18 19:42:09 +00:00
menu_entry_get(&entry, selected, NULL, false);
2015-05-20 00:50:27 +00:00
ret = menu_entry_action(&entry, selected, (enum menu_action)action);
2015-05-08 09:11:18 +00:00
2015-05-18 19:42:09 +00:00
if (ret)
return ret;
2015-02-27 02:05:19 +00:00
2015-05-18 19:52:14 +00:00
do_post_iterate = true;
do_render = true;
2015-02-27 02:05:19 +00:00
2015-05-18 19:42:09 +00:00
/* Have to defer it so we let settings refresh. */
if (menu->push_start_screen)
{
menu_displaylist_info_t info = {0};
2015-05-18 19:42:09 +00:00
info.list = menu_list->menu_stack;
2015-06-19 02:40:43 +00:00
strlcpy(info.label,
menu_hash_to_str(MENU_LABEL_HELP),
sizeof(info.label));
2015-05-18 01:25:45 +00:00
2015-05-18 19:42:09 +00:00
menu_displaylist_push_list(&info, DISPLAYLIST_HELP);
}
break;
2015-02-27 02:05:19 +00:00
}
2015-05-18 19:55:20 +00:00
2015-05-18 21:56:23 +00:00
did_messagebox = did_messagebox != do_messagebox;
if (did_messagebox)
2015-05-18 22:05:17 +00:00
menu_display_fb_set_dirty();
2015-05-18 21:56:23 +00:00
if (do_messagebox)
menu_driver_render_messagebox(msg);
2015-05-18 19:55:20 +00:00
if (do_pop_stack && action == MENU_ACTION_OK)
2015-05-18 19:58:17 +00:00
menu_list_pop(menu_list->menu_stack, pop_selected);
2015-05-18 19:52:14 +00:00
if (do_post_iterate)
menu_input_post_iterate(&ret, action);
if (do_render)
menu_driver_render();
2015-02-27 02:05:19 +00:00
return ret;
}
int menu_cbs_init_bind_iterate(menu_file_list_cbs_t *cbs,
2015-02-27 02:05:19 +00:00
const char *path, const char *label, unsigned type, size_t idx,
const char *elem0, const char *elem1,
uint32_t label_hash, uint32_t menu_label_hash)
2015-02-27 02:05:19 +00:00
{
2015-06-07 16:14:48 +00:00
if (!cbs)
2015-06-07 16:36:10 +00:00
return -1;
2015-06-07 16:14:48 +00:00
cbs->action_iterate = action_iterate_main;
2015-06-07 16:36:10 +00:00
return -1;
2015-02-27 02:05:19 +00:00
}