RetroArch/menu/menu_entry.c

441 lines
12 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
* Copyright (C) 2014-2015 - Jay McCarthy
*
* 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>
#include <string/string_list.h>
#include "menu.h"
2015-05-11 15:53:33 +00:00
#include "menu_display.h"
2015-05-10 09:00:05 +00:00
#include "menu_entry.h"
#include "menu_navigation.h"
#include "menu_setting.h"
#include "menu_input.h"
2015-05-17 11:10:55 +00:00
#include "../runloop_data.h"
/* This file provides an abstraction of the currently displayed
* menu.
*
2015-06-12 14:07:12 +00:00
* It is organized into an event-based system where the UI companion
* calls this functions and RetroArch responds by changing the global
* state (including arranging for these functions to return different
* values).
*
* Its only interaction back to the UI is to arrange for
* notify_list_loaded on the UI companion.
*/
2015-06-12 14:04:22 +00:00
/* Clicks the back button */
int menu_entry_go_back(void)
{
menu_list_t *menu_list = menu_list_get_ptr();
if (!menu_list)
return -1;
menu_list_pop_stack(menu_list);
return 0;
}
2015-06-01 14:54:48 +00:00
static rarch_setting_t *menu_entry_get_setting(uint32_t i)
2015-05-10 08:33:17 +00:00
{
menu_list_t *menu_list = menu_list_get_ptr();
2015-08-17 17:57:17 +00:00
menu_file_list_cbs_t *cbs = menu_list_get_actiondata_at_offset
(menu_list->selection_buf,i);
2015-05-09 23:30:11 +00:00
2015-08-17 17:57:17 +00:00
if (!cbs)
return NULL;
return cbs->setting;
2015-05-09 23:30:11 +00:00
}
enum menu_entry_type menu_entry_get_type(uint32_t i)
2015-05-10 08:33:17 +00:00
{
2015-08-17 18:08:06 +00:00
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
2015-06-26 16:35:35 +00:00
/* XXX Really a special kind of ST_ACTION, but this should be changed */
if (menu_setting_is_of_path_type(setting))
2015-05-10 08:33:17 +00:00
return MENU_ENTRY_PATH;
2015-06-06 19:36:58 +00:00
2015-08-17 15:46:31 +00:00
if (setting && (setting->type == ST_STRING) && setting->values)
2015-05-10 08:33:17 +00:00
return MENU_ENTRY_ENUM;
2015-06-06 19:36:58 +00:00
if (setting)
{
switch (setting->type)
{
case ST_BOOL:
return MENU_ENTRY_BOOL;
case ST_BIND:
return MENU_ENTRY_BIND;
case ST_INT:
return MENU_ENTRY_INT;
case ST_UINT:
return MENU_ENTRY_UINT;
case ST_FLOAT:
return MENU_ENTRY_FLOAT;
case ST_PATH:
return MENU_ENTRY_PATH;
case ST_DIR:
return MENU_ENTRY_DIR;
case ST_STRING:
return MENU_ENTRY_STRING;
case ST_HEX:
return MENU_ENTRY_HEX;
case ST_NONE:
case ST_ACTION:
case ST_GROUP:
case ST_SUB_GROUP:
case ST_END_GROUP:
case ST_END_SUB_GROUP:
break;
}
}
2015-06-03 08:24:09 +00:00
return MENU_ENTRY_ACTION;
2015-05-09 23:30:11 +00:00
}
void menu_entry_get_path(uint32_t i, char *s, size_t len)
2015-05-10 08:33:17 +00:00
{
2015-06-06 11:02:23 +00:00
menu_entry_t entry = {{0}};
2015-05-10 10:45:53 +00:00
menu_entry_get(&entry, i, NULL, true);
2015-05-10 10:44:32 +00:00
strlcpy(s, entry.path, len);
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
2015-06-01 13:21:43 +00:00
void menu_entry_get_label(uint32_t i, char *s, size_t len)
{
2015-06-06 11:02:23 +00:00
menu_entry_t entry = {{0}};
2015-06-01 13:21:43 +00:00
menu_entry_get(&entry, i, NULL, true);
strlcpy(s, entry.label, len);
}
2015-06-01 13:13:49 +00:00
unsigned menu_entry_get_spacing(uint32_t i)
{
2015-06-06 11:02:23 +00:00
menu_entry_t entry = {{0}};
2015-06-01 13:13:49 +00:00
menu_entry_get(&entry, i, NULL, true);
return entry.spacing;
}
2015-06-01 13:21:43 +00:00
unsigned menu_entry_get_type_new(uint32_t i)
{
2015-06-06 11:02:23 +00:00
menu_entry_t entry = {{0}};
2015-06-01 13:21:43 +00:00
menu_entry_get(&entry, i, NULL, true);
return entry.type;
}
2015-05-10 09:12:50 +00:00
uint32_t menu_entry_get_bool_value(uint32_t i)
2015-05-10 08:33:17 +00:00
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
return *setting->value.boolean;
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
struct string_list *menu_entry_enum_values(uint32_t i)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
return string_split(setting->values, "|");
2015-05-09 23:30:11 +00:00
}
void menu_entry_enum_set_value_with_string(uint32_t i, const char *s)
2015-05-10 08:33:17 +00:00
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
setting_set_with_string_representation(setting, s);
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
int32_t menu_entry_bind_index(uint32_t i)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
if (setting->index)
return setting->index - 1;
return 0;
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
void menu_entry_bind_key_set(uint32_t i, int32_t value)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-20 00:50:27 +00:00
BINDFOR(*setting).key = (enum retro_key)value;
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
void menu_entry_bind_joykey_set(uint32_t i, int32_t value)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
BINDFOR(*setting).joykey = value;
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
void menu_entry_bind_joyaxis_set(uint32_t i, int32_t value)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
BINDFOR(*setting).joyaxis = value;
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
void menu_entry_pathdir_selected(uint32_t i)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
if (menu_setting_is_of_path_type(setting))
setting->action_right(setting, false);
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
bool menu_entry_pathdir_allow_empty(uint32_t i)
2015-05-10 08:33:17 +00:00
{
rarch_setting_t *setting = menu_entry_get_setting(i);
if (!setting)
return false;
2015-05-10 08:33:17 +00:00
return setting->flags & SD_FLAG_ALLOW_EMPTY;
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
uint32_t menu_entry_pathdir_for_directory(uint32_t i)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
return setting->flags & SD_FLAG_PATH_DIR;
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
void menu_entry_pathdir_get_value(uint32_t i, char *s, size_t len)
2015-05-10 08:33:17 +00:00
{
2015-06-06 11:02:23 +00:00
menu_entry_t entry = {{0}};
menu_entry_get(&entry, i, NULL, true);
strlcpy(s, entry.value, len);
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
2015-06-01 14:38:34 +00:00
int menu_entry_pathdir_set_value(uint32_t i, const char *s)
2015-05-10 08:33:17 +00:00
{
2015-08-17 18:11:51 +00:00
menu_file_list_cbs_t *cbs = NULL;
const char *menu_path = NULL;
menu_list_t *menu_list = menu_list_get_ptr();
2015-06-01 14:38:34 +00:00
2015-08-17 18:11:51 +00:00
(void)s;
2015-06-01 14:38:34 +00:00
2015-08-17 18:11:51 +00:00
menu_list_get_last_stack(menu_list,
&menu_path, NULL, NULL, NULL);
cbs = (menu_file_list_cbs_t*)menu_list_get_last_stack_actiondata(menu_list);
2015-06-01 14:38:34 +00:00
2015-08-17 18:11:51 +00:00
if (!cbs || !cbs->setting)
2015-06-01 14:38:34 +00:00
return -1;
2015-08-17 18:11:51 +00:00
if (cbs->setting->type != ST_DIR)
2015-06-01 14:38:34 +00:00
return -1;
2015-08-17 18:11:51 +00:00
setting_set_with_string_representation(cbs->setting, menu_path);
2015-06-01 14:38:34 +00:00
2015-08-17 18:11:51 +00:00
menu_setting_generic(cbs->setting, false);
2015-06-01 14:38:34 +00:00
2015-08-17 18:11:51 +00:00
menu_list_pop_stack_by_needle(menu_list, cbs->setting->name);
2015-06-01 14:38:34 +00:00
return 0;
2015-05-09 23:30:11 +00:00
}
void menu_entry_pathdir_extensions(uint32_t i, char *s, size_t len)
2015-05-10 08:33:17 +00:00
{
rarch_setting_t *setting = menu_entry_get_setting(i);
const char *extensions = setting ? setting->values : NULL;
if (setting && extensions)
strlcpy(s, extensions, len);
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
void menu_entry_reset(uint32_t i)
{
2015-06-06 11:02:23 +00:00
menu_entry_t entry = {{0}};
2015-05-14 22:58:06 +00:00
menu_entry_get(&entry, i, NULL, true);
menu_entry_action(&entry, i, MENU_ACTION_START);
2015-05-10 08:33:17 +00:00
}
void menu_entry_get_value(uint32_t i, char *s, size_t len)
2015-05-10 08:33:17 +00:00
{
2015-06-06 11:02:23 +00:00
menu_entry_t entry = {{0}};
2015-05-10 10:58:46 +00:00
menu_entry_get(&entry, i, NULL, true);
strlcpy(s, entry.value, len);
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
void menu_entry_set_value(uint32_t i, const char *s)
2015-05-10 08:33:17 +00:00
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
setting_set_with_string_representation(setting, s);
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
uint32_t menu_entry_num_has_range(uint32_t i)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
return (setting->flags & SD_FLAG_HAS_RANGE);
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
float menu_entry_num_min(uint32_t i)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
return setting->min;
2015-05-09 23:30:11 +00:00
}
2015-05-10 08:33:17 +00:00
float menu_entry_num_max(uint32_t i)
{
rarch_setting_t *setting = menu_entry_get_setting(i);
2015-05-10 08:33:17 +00:00
return setting->max;
2015-05-09 23:30:11 +00:00
}
void menu_entry_get(menu_entry_t *entry, size_t i,
void *userdata, bool use_representation)
{
const char *path = NULL;
const char *entry_label = NULL;
menu_file_list_cbs_t *cbs = NULL;
file_list_t *list = NULL;
menu_list_t *menu_list = menu_list_get_ptr();
if (!menu_list)
return;
list = userdata ? (file_list_t*)userdata : menu_list->selection_buf;
if (!list)
return;
menu_list_get_at_offset(list, i, &path, &entry_label, &entry->type,
2015-06-10 21:00:38 +00:00
&entry->entry_idx);
cbs = menu_list_get_actiondata_at_offset(list, i);
if (cbs && cbs->action_get_value && use_representation)
2015-08-17 23:58:18 +00:00
{
const char *label = NULL;
menu_list_get_last_stack(menu_list, NULL, &label, NULL, NULL);
cbs->action_get_value(list,
&entry->spacing, entry->type, i, label,
entry->value, sizeof(entry->value),
entry_label, path,
entry->path, sizeof(entry->path));
2015-08-17 23:58:18 +00:00
}
2015-06-10 21:00:38 +00:00
entry->idx = i;
if (path && !use_representation)
strlcpy(entry->path, path, sizeof(entry->path));
if (entry_label)
strlcpy(entry->label, entry_label, sizeof(entry->label));
}
bool menu_entry_is_currently_selected(unsigned id)
{
menu_navigation_t *nav = menu_navigation_get_ptr();
if (!nav)
return false;
return (id == nav->selection_ptr);
}
2015-06-02 12:17:37 +00:00
/* Performs whatever actions are associated with menu entry 'i'.
*
* This is the most important function because it does all the work
* associated with clicking on things in the UI.
*
* This includes loading cores and updating the
* currently displayed menu. */
2015-05-15 02:38:58 +00:00
int menu_entry_select(uint32_t i)
2015-05-09 23:30:11 +00:00
{
2015-06-06 11:02:23 +00:00
menu_entry_t entry = {{0}};
2015-06-01 05:49:49 +00:00
menu_navigation_t *nav = menu_navigation_get_ptr();
nav->selection_ptr = i;
menu_entry_get(&entry, i, NULL, false);
2015-05-10 08:33:17 +00:00
2015-06-01 05:38:59 +00:00
return menu_entry_action(&entry, i, MENU_ACTION_SELECT);
2015-05-09 23:30:11 +00:00
}
2015-05-10 23:27:00 +00:00
2015-05-15 02:41:57 +00:00
int menu_entry_action(menu_entry_t *entry, unsigned i, enum menu_action action)
2015-05-10 23:27:00 +00:00
{
2015-05-18 15:58:21 +00:00
int ret = 0;
2015-06-15 00:37:32 +00:00
menu_navigation_t *nav = menu_navigation_get_ptr();
2015-05-10 23:27:00 +00:00
menu_list_t *menu_list = menu_list_get_ptr();
menu_file_list_cbs_t *cbs = menu_list_get_actiondata_at_offset(menu_list->selection_buf, i);
2015-05-10 23:27:00 +00:00
switch (action)
{
case MENU_ACTION_UP:
if (cbs && cbs->action_up)
2015-05-18 15:58:21 +00:00
ret = cbs->action_up(entry->type, entry->label);
break;
2015-05-10 23:27:00 +00:00
case MENU_ACTION_DOWN:
if (cbs && cbs->action_down)
2015-05-18 15:58:21 +00:00
ret = cbs->action_down(entry->type, entry->label);
2015-05-10 23:27:00 +00:00
break;
case MENU_ACTION_SCROLL_UP:
menu_navigation_descend_alphabet(nav, &nav->selection_ptr);
break;
case MENU_ACTION_SCROLL_DOWN:
menu_navigation_ascend_alphabet(nav, &nav->selection_ptr);
break;
case MENU_ACTION_CANCEL:
if (cbs && cbs->action_cancel)
2015-05-18 15:58:21 +00:00
ret = cbs->action_cancel(entry->path, entry->label, entry->type, i);
2015-05-10 23:27:00 +00:00
break;
case MENU_ACTION_OK:
if (cbs && cbs->action_ok)
2015-06-10 21:11:40 +00:00
ret = cbs->action_ok(entry->path, entry->label, entry->type, i, entry->entry_idx);
2015-05-10 23:27:00 +00:00
break;
case MENU_ACTION_START:
if (cbs && cbs->action_start)
2015-05-18 15:58:21 +00:00
ret = cbs->action_start(entry->type, entry->label);
2015-05-10 23:27:00 +00:00
break;
case MENU_ACTION_LEFT:
if (cbs && cbs->action_left)
2015-05-18 15:58:21 +00:00
ret = cbs->action_left(entry->type, entry->label, false);
break;
2015-05-10 23:27:00 +00:00
case MENU_ACTION_RIGHT:
if (cbs && cbs->action_right)
2015-05-18 15:58:21 +00:00
ret = cbs->action_right(entry->type, entry->label, false);
2015-05-10 23:27:00 +00:00
break;
case MENU_ACTION_INFO:
2015-05-31 20:40:26 +00:00
if (cbs && cbs->action_info)
ret = cbs->action_info(entry->type, entry->label);
2015-05-10 23:27:00 +00:00
break;
2015-06-01 05:38:59 +00:00
case MENU_ACTION_SELECT:
if (cbs && cbs->action_select)
ret = cbs->action_select(entry->path, entry->label, entry->type, i);
break;
2015-05-10 23:27:00 +00:00
case MENU_ACTION_MESSAGE:
2015-08-17 04:59:25 +00:00
{
menu_display_t *disp = menu_display_get_ptr();
if (disp)
disp->msg_force = true;
}
2015-05-10 23:27:00 +00:00
break;
case MENU_ACTION_SEARCH:
menu_input_search_start();
break;
case MENU_ACTION_SCAN:
2015-05-27 04:57:01 +00:00
if (cbs && cbs->action_scan)
ret = cbs->action_scan(entry->path, entry->label, entry->type, i);
2015-05-10 23:27:00 +00:00
break;
default:
break;
}
cbs = menu_list_get_actiondata_at_offset(menu_list->selection_buf, i);
2015-08-22 00:07:10 +00:00
if (menu_entries_needs_refresh())
{
if (cbs && cbs->action_refresh)
{
cbs->action_refresh(menu_list->selection_buf, menu_list->menu_stack);
menu_entries_unset_refresh(false);
}
}
2015-05-18 15:58:21 +00:00
return ret;
2015-05-10 23:27:00 +00:00
}