RetroArch/menu/cbs/menu_cbs_iterate.c

528 lines
16 KiB
C
Raw Normal View History

2015-02-27 03:05:19 +01: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 19:12:10 +02:00
#include <compat/strl.h>
2015-02-27 03:05:19 +01:00
#include <file/file_path.h>
2015-03-15 04:52:46 +01:00
#include <retro_inline.h>
#include "../menu.h"
2015-06-26 15:28:01 +02:00
#include "../menu_cbs.h"
#include "../menu_display.h"
2015-06-13 19:12:10 +02: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 19:12:10 +02:00
#include "../../general.h"
#include "../../performance.h"
#include "../../retroarch.h"
2015-06-13 22:57:55 +02:00
#include "../../input/input_common.h"
#include "../../input/input_autodetect.h"
2015-02-27 03:05:19 +01:00
2015-05-18 22:26:00 +02:00
static int action_iterate_help(char *s, size_t len, const char *label)
2015-02-27 03:05:19 +01:00
{
unsigned i;
2015-07-08 05:45:43 +02:00
menu_handle_t *menu = menu_driver_get_ptr();
settings_t *settings = config_get_ptr();
menu_driver_render();
2015-02-27 03:05:19 +01:00
2015-07-08 05:45:43 +02:00
switch (menu->help_screen_type)
2015-02-27 03:05:19 +01:00
{
case MENU_HELP_WELCOME:
2015-07-08 05:45:43 +02:00
{
static int64_t timeout_end;
int64_t timeout;
static bool timer_begin = false;
static bool timer_end = false;
int64_t current = rarch_get_time_usec();
if (!timer_begin)
{
timeout_end = rarch_get_time_usec() +
3 /* seconds */ * 1000000;
timer_begin = true;
timer_end = false;
}
timeout = (timeout_end - current) / 1000000;
menu_hash_get_help(MENU_LABEL_WELCOME_TO_RETROARCH,
s, len);
if (!timer_end && timeout <= 0)
{
menu_input_t *menu_input = menu_input_get_ptr();
timer_end = true;
timer_begin = false;
timeout_end = 0;
menu->help_screen_type = MENU_HELP_NONE;
return 1;
}
}
break;
case MENU_HELP_CONTROLS:
{
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,
2015-07-17 21:50:51 +02:00
RETRO_DEVICE_ID_JOYPAD_START,
RARCH_MENU_TOGGLE,
RARCH_QUIT_KEY,
RETRO_DEVICE_ID_JOYPAD_X,
RETRO_DEVICE_ID_JOYPAD_Y,
};
2015-07-08 05:45:43 +02:00
char desc[ARRAY_SIZE(binds)][64] = {{0}};
2015-02-27 03:05:19 +01:00
2015-07-08 05:45:43 +02:00
for (i = 0; i < ARRAY_SIZE(binds); i++)
{
const struct retro_keybind *keybind = (const struct retro_keybind*)
&settings->input.binds[0][binds[i]];
const struct retro_keybind *auto_bind = (const struct retro_keybind*)
input_get_auto_bind(0, binds[i]);
2015-02-27 03:05:19 +01:00
2015-07-08 05:45:43 +02:00
input_get_bind_string(desc[i], keybind, auto_bind, sizeof(desc[i]));
}
2015-02-27 03:05:19 +01:00
2015-07-08 05:45:43 +02:00
snprintf(s, len,
2015-07-17 15:53:02 +02:00
"[%s]: "
"%-20s\n"
"[%s]: "
"%-20s\n"
"[%s]: "
"%-20s\n"
"[%s]: "
"%-20s\n"
"[%s]: "
"%-20s\n"
"[%s]: "
"%-20s\n"
"[%s]: "
"%-20s\n"
"[%s]: "
"%-20s\n"
2015-07-17 21:50:51 +02:00
"[%s]: "
"%-20s\n",
2015-07-17 15:53:02 +02:00
menu_hash_to_str(MENU_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_UP), desc[0],
menu_hash_to_str(MENU_LABEL_VALUE_BASIC_MENU_CONTROLS_SCROLL_DOWN), desc[1],
menu_hash_to_str(MENU_LABEL_VALUE_BASIC_MENU_CONTROLS_CONFIRM), desc[2],
menu_hash_to_str(MENU_LABEL_VALUE_BASIC_MENU_CONTROLS_BACK), desc[3],
menu_hash_to_str(MENU_LABEL_VALUE_BASIC_MENU_CONTROLS_INFO), desc[4],
2015-07-17 21:50:51 +02:00
menu_hash_to_str(MENU_LABEL_VALUE_BASIC_MENU_CONTROLS_START), desc[5],
menu_hash_to_str(MENU_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_MENU), desc[6],
menu_hash_to_str(MENU_LABEL_VALUE_BASIC_MENU_CONTROLS_QUIT), desc[7],
menu_hash_to_str(MENU_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_KEYBOARD), desc[8]
);
2015-07-08 05:45:43 +02:00
}
break;
2015-07-17 22:11:24 +02:00
case MENU_HELP_LOADING_CONTENT:
menu_hash_get_help(MENU_LABEL_LOAD_CONTENT,
s, len);
break;
case MENU_HELP_EXTRACT:
2015-07-17 18:22:59 +02:00
menu_hash_get_help(MENU_LABEL_VALUE_EXTRACTING_PLEASE_WAIT,
s, len);
2015-07-08 05:45:43 +02:00
break;
case MENU_HELP_NONE:
2015-07-08 05:45:43 +02:00
default:
break;
}
2015-02-27 03:05:19 +01:00
return 0;
2015-02-27 03:05:19 +01:00
}
2015-05-18 22:26:00 +02:00
static int action_iterate_info(char *s, size_t len, const char *label)
2015-02-27 03:05:19 +01:00
{
int ret = 0;
2015-06-12 17:23:31 +02:00
char needle[PATH_MAX_LENGTH] = {0};
2015-03-23 03:09:30 +01:00
unsigned info_type = 0;
2015-02-27 03:05:19 +01:00
rarch_setting_t *current_setting = NULL;
2015-03-23 03:09:30 +01: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 17:19:58 +02:00
if (!menu_list)
2015-02-27 03:05:19 +01:00
return 0;
list = (file_list_t*)menu_list->selection_buf;
2015-02-27 03:05:19 +01:00
menu_driver_render();
2015-02-27 03:05:19 +01:00
2015-05-08 17:19:43 +02:00
current_setting = menu_setting_find(list->list[selection].label);
2015-02-27 03:05:19 +01:00
if (current_setting)
strlcpy(needle, current_setting->name, sizeof(needle));
2015-05-08 17:19:43 +02:00
else if ((current_setting = menu_setting_find(list->list[selection].label)))
2015-02-27 03:05:19 +01: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 03:05:19 +01:00
if (lbl)
strlcpy(needle, lbl, sizeof(needle));
}
2015-05-18 22:26:00 +02:00
setting_get_description(needle, s, len);
2015-02-27 03:05:19 +01:00
return ret;
2015-02-27 03:05:19 +01:00
}
2015-06-22 02:19:29 +02:00
static int action_iterate_menu_viewport(char *s, size_t len,
const char *label, unsigned action, uint32_t hash)
2015-02-27 03:05:19 +01:00
{
int stride_x = 1, stride_y = 1;
menu_displaylist_info_t info = {0};
2015-02-27 03:05:19 +01:00
struct retro_game_geometry *geom = NULL;
2015-03-23 03:09:30 +01:00
const char *base_msg = NULL;
unsigned type = 0;
video_viewport_t *custom = video_viewport_get_custom();
2015-06-15 02:37:32 +02:00
menu_display_t *disp = menu_display_get_ptr();
2015-06-13 16:22:05 +02:00
menu_navigation_t *nav = menu_navigation_get_ptr();
menu_list_t *menu_list = menu_list_get_ptr();
2015-03-23 03:09:30 +01:00
settings_t *settings = config_get_ptr();
struct retro_system_av_info *av_info = video_viewport_get_system_av_info();
2015-03-20 21:22:38 +01:00
2015-06-15 17:19:58 +02:00
if (!menu_list)
2015-02-27 03:05:19 +01:00
return -1;
menu_list_get_last_stack(menu_list, NULL, NULL, &type, NULL);
2015-02-27 03:05:19 +01:00
geom = (struct retro_game_geometry*)&av_info->geometry;
2015-02-27 03:05:19 +01:00
2015-03-20 21:22:38 +01:00
if (settings->video.scale_integer)
2015-02-27 03:05:19 +01: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 03:09:30 +01:00
custom->y -= stride_y;
2015-02-27 03:05:19 +01: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 03:05:19 +01: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 03:05:19 +01:00
break;
case MENU_ACTION_LEFT:
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT)
{
2015-03-23 03:09:30 +01:00
custom->x -= stride_x;
2015-02-27 03:05:19 +01: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 03:05:19 +01: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 03:05:19 +01:00
break;
case MENU_ACTION_CANCEL:
menu_list_pop_stack(menu_list);
2015-02-27 03:05:19 +01:00
if (hash == MENU_LABEL_CUSTOM_VIEWPORT_2)
2015-02-27 03:05:19 +01:00
{
info.list = menu_list->menu_stack;
info.type = MENU_SETTINGS_CUSTOM_VIEWPORT;
2015-06-13 16:22:05 +02:00
info.directory_ptr = nav->selection_ptr;
2015-05-31 22:40:26 +02:00
menu_displaylist_push_list(&info, DISPLAYLIST_INFO);
2015-02-27 03:05:19 +01:00
}
break;
case MENU_ACTION_OK:
menu_list_pop_stack(menu_list);
2015-02-27 03:05:19 +01:00
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT
2015-03-20 21:22:38 +01:00
&& !settings->video.scale_integer)
{
info.list = menu_list->menu_stack;
2015-06-21 08:41:36 +02:00
strlcpy(info.label,
menu_hash_to_str(MENU_LABEL_CUSTOM_VIEWPORT_2),
sizeof(info.label));
info.type = 0;
2015-06-13 16:22:05 +02:00
info.directory_ptr = nav->selection_ptr;
2015-05-31 22:40:26 +02:00
menu_displaylist_push_list(&info, DISPLAYLIST_INFO);
}
2015-02-27 03:05:19 +01:00
break;
case MENU_ACTION_START:
2015-03-20 21:22:38 +01:00
if (!settings->video.scale_integer)
2015-02-27 03:05:19 +01:00
{
video_viewport_t vp;
2015-03-22 21:28:50 +01:00
video_driver_viewport_info(&vp);
2015-02-27 03:05:19 +01:00
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT)
{
2015-03-23 03:09:30 +01:00
custom->width += custom->x;
2015-02-27 03:05:19 +01:00
custom->height += custom->y;
2015-03-23 03:09:30 +01:00
custom->x = 0;
custom->y = 0;
2015-02-27 03:05:19 +01:00
}
else
{
2015-03-23 03:09:30 +01:00
custom->width = vp.full_width - custom->x;
custom->height = vp.full_height - custom->y;
2015-02-27 03:05:19 +01:00
}
event_command(EVENT_CMD_VIDEO_APPLY_STATE_CHANGES);
2015-02-27 03:05:19 +01:00
}
break;
case MENU_ACTION_MESSAGE:
2015-06-15 02:37:32 +02:00
if (disp)
disp->msg_force = true;
2015-02-27 03:05:19 +01:00
break;
default:
break;
}
menu_list_get_last_stack(menu_list, NULL, &label, &type, NULL);
2015-02-27 03:05:19 +01:00
menu_driver_render();
2015-02-27 03:05:19 +01:00
2015-03-20 21:22:38 +01:00
if (settings->video.scale_integer)
2015-02-27 03:05:19 +01:00
{
2015-03-23 03:09:30 +01:00
custom->x = 0;
custom->y = 0;
2015-02-27 03:05:19 +01: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 03:09:30 +01:00
base_msg = "Set scale";
2015-05-18 22:26:00 +02:00
snprintf(s, len, "%s (%4ux%4u, %u x %u scale)",
2015-02-27 03:05:19 +01:00
base_msg,
custom->width, custom->height,
custom->width / geom->base_width,
custom->height / geom->base_height);
}
else
{
2015-06-19 04:46:11 +02:00
if (type == MENU_SETTINGS_CUSTOM_VIEWPORT)
2015-06-21 08:41:36 +02:00
base_msg = menu_hash_to_str(MENU_LABEL_VALUE_CUSTOM_VIEWPORT_1);
2015-06-19 04:46:11 +02:00
else if (hash == MENU_LABEL_CUSTOM_VIEWPORT_2)
2015-06-21 08:41:36 +02:00
base_msg = menu_hash_to_str(MENU_LABEL_VALUE_CUSTOM_VIEWPORT_2);
2015-02-27 03:05:19 +01:00
2015-05-18 22:26:00 +02:00
snprintf(s, len, "%s (%d, %d : %4ux%4u)",
2015-02-27 03:05:19 +01:00
base_msg, custom->x, custom->y, custom->width, custom->height);
}
2015-05-18 22:26:00 +02:00
menu_driver_render_messagebox(s);
2015-02-27 03:05:19 +01: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 03:05:19 +01:00
return 0;
}
2015-05-18 21:42:09 +02:00
enum action_iterate_type
{
ITERATE_TYPE_DEFAULT = 0,
ITERATE_TYPE_HELP,
ITERATE_TYPE_INFO,
ITERATE_TYPE_MESSAGE,
ITERATE_TYPE_VIEWPORT,
2015-06-26 18:35:35 +02:00
ITERATE_TYPE_BIND
2015-05-18 21:42:09 +02:00
};
static enum action_iterate_type action_iterate_type(uint32_t hash)
{
switch (hash)
{
case MENU_LABEL_HELP:
2015-07-17 20:33:09 +02:00
case MENU_LABEL_HELP_CONTROLS:
2015-07-17 22:11:24 +02:00
case MENU_LABEL_HELP_LOADING_CONTENT:
return ITERATE_TYPE_HELP;
case MENU_LABEL_INFO_SCREEN:
return ITERATE_TYPE_INFO;
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 21:42:09 +02:00
return ITERATE_TYPE_DEFAULT;
}
static int action_iterate_main(const char *label, unsigned action)
{
2015-06-12 17:23:31 +02:00
menu_entry_t entry;
2015-05-18 18:56:23 -03:00
static bool did_messagebox = false;
2015-06-12 17:23:31 +02:00
char msg[PATH_MAX_LENGTH] = {0};
2015-05-18 21:42:09 +02:00
enum action_iterate_type iterate_type;
2015-06-25 17:36:31 +02:00
size_t selected;
size_t *pop_selected = NULL;
bool do_messagebox = false;
2015-05-18 21:55:20 +02:00
bool do_pop_stack = false;
2015-05-18 21:52:14 +02:00
bool do_post_iterate = false;
bool do_render = false;
2015-05-18 21:42:09 +02:00
int ret = 0;
menu_handle_t *menu = menu_driver_get_ptr();
2015-06-13 16:22:05 +02:00
menu_navigation_t *nav = menu_navigation_get_ptr();
2015-06-15 02:08:25 +02:00
menu_display_t *disp = menu_display_get_ptr();
2015-05-18 21:42:09 +02:00
menu_list_t *menu_list = menu_list_get_ptr();
2015-06-17 19:55:24 +02:00
uint32_t hash = menu_hash_calculate(label);
2015-05-18 21:42:09 +02:00
if (!menu || !menu_list)
2015-05-18 03:37:07 +02:00
return 0;
2015-05-18 21:42:09 +02:00
iterate_type = action_iterate_type(hash);
2015-05-08 11:11:18 +02:00
2015-05-18 21:42:09 +02:00
switch (iterate_type)
{
case ITERATE_TYPE_HELP:
2015-05-18 22:26:00 +02:00
ret = action_iterate_help(msg, sizeof(msg), label);
2015-05-18 21:58:17 +02:00
pop_selected = NULL;
do_messagebox = true;
2015-05-18 21:58:17 +02:00
do_pop_stack = true;
2015-05-18 21:52:14 +02:00
do_post_iterate = true;
if (ret == 1)
action = MENU_ACTION_OK;
2015-05-18 21:42:09 +02: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 21:42:09 +02:00
break;
case ITERATE_TYPE_INFO:
2015-05-18 22:26:00 +02:00
ret = action_iterate_info(msg, sizeof(msg), label);
2015-06-13 16:22:05 +02:00
pop_selected = &nav->selection_ptr;
do_messagebox = true;
2015-05-18 21:55:20 +02:00
do_pop_stack = true;
2015-05-18 21:52:14 +02:00
do_post_iterate = true;
2015-05-18 21:42:09 +02:00
break;
case ITERATE_TYPE_MESSAGE:
2015-06-15 02:08:25 +02:00
strlcpy(msg, disp->message_contents, sizeof(msg));
2015-06-13 16:22:05 +02:00
pop_selected = &nav->selection_ptr;
2015-05-18 22:32:31 +02:00
do_messagebox = true;
2015-05-18 21:55:20 +02:00
do_pop_stack = true;
2015-05-18 21:42:09 +02:00
break;
case ITERATE_TYPE_DEFAULT:
2015-06-15 14:18:06 -03:00
selected = menu_navigation_get_current_selection();
2015-06-15 14:36:16 -03:00
/* FIXME: selected > selection_buf->list->size, i don't know why. */
2015-06-15 14:18:06 -03:00
selected = max(min(selected, menu_list_get_size(menu_list)-1), 0);
2015-05-18 21:42:09 +02:00
menu_entry_get(&entry, selected, NULL, false);
2015-05-20 02:50:27 +02:00
ret = menu_entry_action(&entry, selected, (enum menu_action)action);
2015-05-08 11:11:18 +02:00
2015-05-18 21:42:09 +02:00
if (ret)
return ret;
2015-02-27 03:05:19 +01:00
2015-05-18 21:52:14 +02:00
do_post_iterate = true;
do_render = true;
2015-02-27 03:05:19 +01:00
2015-05-18 21:42:09 +02:00
/* Have to defer it so we let settings refresh. */
2015-07-08 05:45:43 +02:00
if (menu->push_help_screen)
2015-05-18 21:42:09 +02:00
{
menu_displaylist_info_t info = {0};
2015-05-18 21:42:09 +02:00
info.list = menu_list->menu_stack;
2015-06-19 04:40:43 +02:00
strlcpy(info.label,
menu_hash_to_str(MENU_LABEL_HELP),
sizeof(info.label));
2015-05-18 03:25:45 +02:00
2015-05-18 21:42:09 +02:00
menu_displaylist_push_list(&info, DISPLAYLIST_HELP);
}
break;
2015-02-27 03:05:19 +01:00
}
2015-05-18 21:55:20 +02:00
2015-05-18 18:56:23 -03:00
did_messagebox = did_messagebox != do_messagebox;
if (did_messagebox)
2015-05-19 00:05:17 +02:00
menu_display_fb_set_dirty();
2015-05-18 18:56:23 -03:00
if (do_messagebox)
menu_driver_render_messagebox(msg);
2015-05-18 21:55:20 +02:00
if (do_pop_stack && action == MENU_ACTION_OK)
2015-05-18 21:58:17 +02:00
menu_list_pop(menu_list->menu_stack, pop_selected);
2015-05-18 21:52:14 +02:00
if (do_post_iterate)
menu_input_post_iterate(&ret, action);
if (do_render)
menu_driver_render();
2015-02-27 03:05:19 +01:00
return ret;
}
int menu_cbs_init_bind_iterate(menu_file_list_cbs_t *cbs,
2015-02-27 03:05:19 +01: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 03:05:19 +01:00
{
2015-06-07 18:14:48 +02:00
if (!cbs)
2015-06-07 18:36:10 +02:00
return -1;
2015-06-07 18:14:48 +02:00
cbs->action_iterate = action_iterate_main;
2015-06-07 18:36:10 +02:00
return -1;
2015-02-27 03:05:19 +01:00
}