RetroArch/menu/cbs/menu_cbs_right.c

665 lines
21 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
2016-01-10 04:06:50 +01:00
* Copyright (C) 2011-2016 - 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/>.
*/
2016-09-01 18:01:41 +02:00
#include <compat/strl.h>
#include <file/file_path.h>
#include <lists/string_list.h>
2016-01-20 04:54:17 +01:00
#include <string/stdstring.h>
2015-06-05 12:28:11 +02:00
2016-09-08 05:39:08 +02:00
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
2016-07-01 15:55:36 +02:00
#include "../menu_content.h"
2015-12-06 17:55:27 +01:00
#include "../menu_driver.h"
2015-06-26 15:28:01 +02:00
#include "../menu_cbs.h"
2015-06-13 19:12:10 +02:00
#include "../menu_input.h"
#include "../menu_setting.h"
#include "../menu_shader.h"
#include "../menu_navigation.h"
2016-09-15 00:10:37 +02:00
#include "../widgets/menu_list.h"
2016-09-01 18:01:41 +02:00
#include "../../configuration.h"
2016-09-06 06:11:44 +02:00
#include "../../core.h"
#include "../../core_info.h"
#include "../../managers/cheat_manager.h"
2016-07-01 15:55:36 +02:00
#include "../../file_path_special.h"
#include "../../retroarch.h"
2016-09-01 18:01:41 +02:00
#include "../../runloop.h"
#include "../../ui/ui_companion_driver.h"
#ifndef BIND_ACTION_RIGHT
#define BIND_ACTION_RIGHT(cbs, name) \
cbs->action_right = name; \
cbs->action_right_ident = #name;
#endif
2015-09-07 22:30:20 +02:00
#ifdef HAVE_SHADER_MANAGER
2015-09-07 21:22:19 +02:00
static int generic_shader_action_parameter_right(
struct video_shader *shader, struct video_shader_parameter *param,
unsigned type, const char *label, bool wraparound)
{
if (!shader)
2016-02-10 21:42:18 +01:00
return menu_cbs_exit();
param->current += param->step;
2016-03-02 00:07:31 +01:00
param->current = MIN(MAX(param->minimum, param->current), param->maximum);
if (ui_companion_is_on_foreground())
ui_companion_driver_notify_refresh();
return 0;
}
int shader_action_parameter_right(unsigned type, const char *label, bool wraparound)
{
2016-02-14 22:13:21 +01:00
video_shader_ctx_t shader_info;
struct video_shader_parameter *param = NULL;
2016-05-08 21:11:27 +02:00
video_shader_driver_get_current_shader(&shader_info);
2016-02-14 22:13:21 +01:00
param = &shader_info.data->parameters[type - MENU_SETTINGS_SHADER_PARAMETER_0];
return generic_shader_action_parameter_right(shader_info.data, param, type, label, wraparound);
}
int shader_action_parameter_preset_right(unsigned type, const char *label,
bool wraparound)
{
2015-12-10 19:56:08 +01:00
struct video_shader_parameter *param = NULL;
struct video_shader *shader = NULL;
menu_driver_ctl(RARCH_MENU_CTL_SHADER_GET,
&shader);
param = shader ?
&shader->parameters[type - MENU_SETTINGS_SHADER_PRESET_PARAMETER_0] :
NULL;
2015-09-07 21:22:19 +02:00
return generic_shader_action_parameter_right(shader, param, type, label, wraparound);
}
2015-09-07 22:30:20 +02:00
#endif
2015-09-05 17:09:57 +02:00
int generic_action_cheat_toggle(size_t idx, unsigned type, const char *label,
bool wraparound)
{
2015-12-01 03:03:33 +01:00
cheat_manager_toggle_index(idx);
return 0;
}
2015-09-05 17:09:57 +02:00
int action_right_cheat(unsigned type, const char *label,
bool wraparound)
{
size_t idx = type - MENU_SETTINGS_CHEAT_BEGIN;
return generic_action_cheat_toggle(idx, type, label,
wraparound);
}
2015-06-06 20:40:17 +02:00
int action_right_input_desc(unsigned type, const char *label,
bool wraparound)
{
unsigned inp_desc_index_offset = type - MENU_SETTINGS_INPUT_DESC_BEGIN;
unsigned inp_desc_user = inp_desc_index_offset / (RARCH_FIRST_CUSTOM_BIND + 4);
unsigned inp_desc_button_index_offset = inp_desc_index_offset - (inp_desc_user * (RARCH_FIRST_CUSTOM_BIND + 4));
settings_t *settings = config_get_ptr();
if (inp_desc_button_index_offset < RARCH_FIRST_CUSTOM_BIND)
{
if (settings->input.remap_ids[inp_desc_user][inp_desc_button_index_offset] < RARCH_FIRST_CUSTOM_BIND - 1)
settings->input.remap_ids[inp_desc_user][inp_desc_button_index_offset]++;
}
else
{
if (settings->input.remap_ids[inp_desc_user][inp_desc_button_index_offset] < 4 - 1)
settings->input.remap_ids[inp_desc_user][inp_desc_button_index_offset]++;
}
return 0;
}
static int action_right_scroll(unsigned type, const char *label,
bool wraparound)
{
2015-09-25 14:57:37 +02:00
size_t selection;
size_t scroll_accel = 0;
unsigned scroll_speed = 0, fast_scroll_speed = 0;
2015-09-25 14:57:37 +02:00
if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection))
return false;
if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SCROLL_ACCEL, &scroll_accel))
return false;
2016-03-02 00:07:31 +01:00
scroll_speed = (MAX(scroll_accel, 2) - 2) / 4 + 1;
fast_scroll_speed = 4 + 4 * scroll_speed;
2015-10-17 19:21:18 +02:00
if (selection + fast_scroll_speed < (menu_entries_get_size()))
2015-09-25 15:42:31 +02:00
{
size_t idx = selection + fast_scroll_speed;
bool scroll = true;
menu_navigation_ctl(MENU_NAVIGATION_CTL_SET_SELECTION, &idx);
menu_navigation_ctl(MENU_NAVIGATION_CTL_SET, &scroll);
}
else
{
2015-10-17 19:21:18 +02:00
if ((menu_entries_get_size() > 0))
2015-09-25 14:42:28 +02:00
menu_navigation_ctl(MENU_NAVIGATION_CTL_SET_LAST, NULL);
}
return 0;
}
static int action_right_mainmenu(unsigned type, const char *label,
bool wraparound)
{
menu_ctx_list_t list_info;
size_t selection = 0;
menu_file_list_cbs_t *cbs = NULL;
unsigned push_list = 0;
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
file_list_t *menu_stack = menu_entries_get_menu_stack_ptr(0);
settings_t *settings = config_get_ptr();
unsigned action = MENU_ACTION_RIGHT;
2016-02-11 01:07:30 +01:00
menu_driver_ctl(RARCH_MENU_CTL_LIST_GET_SELECTION, &list_info);
list_info.type = MENU_LIST_PLAIN;
menu_driver_ctl(RARCH_MENU_CTL_LIST_GET_SIZE, &list_info);
if (list_info.size == 1)
{
2016-02-11 01:07:30 +01:00
menu_ctx_list_t list_horiz_info;
menu_ctx_list_t list_tabs_info;
2015-12-08 15:20:44 +01:00
2016-02-11 01:07:30 +01:00
list_horiz_info.type = MENU_LIST_HORIZONTAL;
list_tabs_info.type = MENU_LIST_TABS;
menu_driver_ctl(RARCH_MENU_CTL_LIST_GET_SIZE, &list_horiz_info);
menu_driver_ctl(RARCH_MENU_CTL_LIST_GET_SIZE, &list_tabs_info);
menu_navigation_ctl(MENU_NAVIGATION_CTL_SET_SELECTION, &selection);
2016-02-11 01:07:30 +01:00
if ((list_info.selection != (list_horiz_info.size + list_tabs_info.size))
|| settings->menu.navigation.wraparound.enable)
push_list = 1;
}
else
push_list = 2;
menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection);
2015-10-19 16:32:51 +02:00
cbs = menu_entries_get_actiondata_at_offset(selection_buf, selection);
switch (push_list)
{
case 1:
2016-02-10 06:43:56 +01:00
{
menu_ctx_list_t list_info;
2016-02-10 06:43:56 +01:00
list_info.type = MENU_LIST_HORIZONTAL;
list_info.action = action;
menu_driver_ctl(RARCH_MENU_CTL_LIST_CACHE, &list_info);
if (cbs && cbs->action_content_list_switch)
return cbs->action_content_list_switch(selection_buf, menu_stack,
"", "", 0);
}
break;
case 2:
action_right_scroll(0, "", false);
break;
case 0:
default:
break;
}
return 0;
}
static int action_right_shader_scale_pass(unsigned type, const char *label,
bool wraparound)
{
#ifdef HAVE_SHADER_MANAGER
unsigned pass = type - MENU_SETTINGS_SHADER_PASS_SCALE_0;
2015-12-10 19:56:08 +01:00
struct video_shader *shader = NULL;
struct video_shader_pass *shader_pass = NULL;
2015-12-10 19:56:08 +01:00
menu_driver_ctl(RARCH_MENU_CTL_SHADER_GET,
&shader);
if (!shader)
2016-02-10 21:42:18 +01:00
return menu_cbs_exit();
shader_pass = &shader->pass[pass];
if (!shader_pass)
2016-02-10 21:42:18 +01:00
return menu_cbs_exit();
{
unsigned current_scale = shader_pass->fbo.scale_x;
unsigned delta = 1;
current_scale = (current_scale + delta) % 6;
shader_pass->fbo.valid = current_scale;
shader_pass->fbo.scale_x = shader_pass->fbo.scale_y = current_scale;
}
#endif
return 0;
}
static int action_right_shader_filter_pass(unsigned type, const char *label,
bool wraparound)
{
#ifdef HAVE_SHADER_MANAGER
2015-12-10 19:56:08 +01:00
unsigned pass = type - MENU_SETTINGS_SHADER_PASS_FILTER_0;
unsigned delta = 1;
struct video_shader *shader = NULL;
struct video_shader_pass *shader_pass = NULL;
2015-12-10 19:56:08 +01:00
menu_driver_ctl(RARCH_MENU_CTL_SHADER_GET,
&shader);
if (!shader)
2016-02-10 21:42:18 +01:00
return menu_cbs_exit();
shader_pass = &shader->pass[pass];
if (!shader_pass)
2016-02-10 21:42:18 +01:00
return menu_cbs_exit();
shader_pass->filter = ((shader_pass->filter + delta) % 3);
#endif
return 0;
}
static int action_right_shader_filter_default(unsigned type, const char *label,
bool wraparound)
{
#ifdef HAVE_SHADER_MANAGER
2016-06-16 12:58:52 +02:00
rarch_setting_t *setting = menu_setting_find_enum(MENU_ENUM_LABEL_VIDEO_SMOOTH);
2015-06-03 10:33:41 +02:00
if (!setting)
2016-02-10 21:42:18 +01:00
return menu_cbs_exit();
2016-08-29 03:07:20 +02:00
return menu_action_handle_setting(setting, setting_get_type(setting), MENU_ACTION_RIGHT,
2015-06-03 10:33:41 +02:00
wraparound);
#else
return 0;
2015-06-03 10:33:41 +02:00
#endif
}
static int action_right_cheat_num_passes(unsigned type, const char *label,
bool wraparound)
{
bool refresh = false;
unsigned new_size = 0;
2015-12-01 02:55:07 +01:00
new_size = cheat_manager_get_size() + 1;
menu_entries_ctl(MENU_ENTRIES_CTL_SET_REFRESH, &refresh);
menu_driver_ctl(RARCH_MENU_CTL_SET_PREVENT_POPULATE, NULL);
2015-12-01 02:55:07 +01:00
cheat_manager_realloc(new_size);
return 0;
}
static int action_right_shader_num_passes(unsigned type, const char *label,
bool wraparound)
{
#ifdef HAVE_SHADER_MANAGER
bool refresh = false;
struct video_shader *shader = NULL;
2015-12-10 19:56:08 +01:00
menu_driver_ctl(RARCH_MENU_CTL_SHADER_GET,
&shader);
if (!shader)
2016-02-10 21:42:18 +01:00
return menu_cbs_exit();
if ((shader->passes < GFX_MAX_SHADERS))
shader->passes++;
menu_entries_ctl(MENU_ENTRIES_CTL_SET_REFRESH, &refresh);
menu_driver_ctl(RARCH_MENU_CTL_SET_PREVENT_POPULATE, NULL);
2015-12-10 19:56:08 +01:00
video_shader_resolve_parameters(NULL, shader);
#endif
return 0;
}
static int action_right_video_resolution(unsigned type, const char *label,
bool wraparound)
{
2016-05-08 14:00:51 +02:00
video_driver_get_next_video_out();
return 0;
}
static int playlist_association_right(unsigned type, const char *label,
bool wraparound)
{
char core_path[PATH_MAX_LENGTH];
char new_playlist_cores[PATH_MAX_LENGTH];
size_t i, next, found, current = 0;
2015-11-25 04:05:04 +01:00
core_info_t *info = NULL;
2015-11-25 03:38:57 +01:00
struct string_list *stnames = NULL;
struct string_list *stcores = NULL;
core_info_list_t *list = NULL;
2015-11-20 05:20:13 +07:00
settings_t *settings = config_get_ptr();
const char *path = path_basename(label);
2015-12-11 13:51:17 +01:00
2016-05-09 18:11:17 +02:00
core_info_get_list(&list);
2015-11-20 05:20:13 +07:00
if (!list)
2016-02-10 21:42:18 +01:00
return menu_cbs_exit();
2015-11-20 05:20:13 +07:00
core_path[0] = new_playlist_cores[0] = '\0';
2015-11-25 03:38:57 +01:00
stnames = string_split(settings->playlist_names, ";");
stcores = string_split(settings->playlist_cores, ";");
2015-11-20 05:20:13 +07:00
2016-07-01 15:55:36 +02:00
if (!menu_content_playlist_find_associated_core(path, core_path, sizeof(core_path)))
strlcpy(core_path,
file_path_str(FILE_PATH_DETECT), sizeof(core_path));
2015-11-20 05:20:13 +07:00
for (i = 0; i < list->count; i++)
{
core_info_t *info = core_info_get(list, i);
2016-01-20 04:54:17 +01:00
if (string_is_equal(info->path, core_path))
2015-11-20 05:20:13 +07:00
current = i;
}
next = current + 1;
if (next >= list->count)
{
if (wraparound)
next = list->count-1;
else
next = 0;
}
2015-11-25 04:05:04 +01:00
info = core_info_get(list, next);
2015-11-20 05:20:13 +07:00
found = string_list_find_elem(stnames, path);
if (found)
string_list_set(stcores, found-1, info->path);
string_list_join_concat(new_playlist_cores, sizeof(new_playlist_cores), stcores, ";");
2015-11-20 05:20:13 +07:00
strlcpy(settings->playlist_cores, new_playlist_cores, sizeof(settings->playlist_cores));
2016-05-23 22:17:28 +02:00
string_list_free(stnames);
string_list_free(stcores);
return 0;
}
int core_setting_right(unsigned type, const char *label,
bool wraparound)
{
unsigned idx = type - MENU_SETTINGS_CORE_OPTION_START;
2015-12-09 09:31:22 +01:00
runloop_ctl(RUNLOOP_CTL_CORE_OPTION_NEXT, &idx);
return 0;
}
static int disk_options_disk_idx_right(unsigned type, const char *label,
bool wraparound)
{
2016-05-09 20:51:53 +02:00
command_event(CMD_EVENT_DISK_NEXT, NULL);
return 0;
}
2015-10-28 15:56:45 +01:00
int bind_right_generic(unsigned type, const char *label,
bool wraparound)
{
2015-06-04 10:02:27 +02:00
return menu_setting_set(type, label, MENU_ACTION_RIGHT, wraparound);
}
static int menu_cbs_init_bind_right_compare_type(menu_file_list_cbs_t *cbs,
2016-07-02 07:05:43 +02:00
unsigned type, const char *menu_label)
{
2015-09-07 22:30:20 +02:00
if (type >= MENU_SETTINGS_CHEAT_BEGIN
&& type <= MENU_SETTINGS_CHEAT_END)
{
BIND_ACTION_RIGHT(cbs, action_right_cheat);
}
2015-09-07 22:30:20 +02:00
#ifdef HAVE_SHADER_MANAGER
else if (type >= MENU_SETTINGS_SHADER_PARAMETER_0
&& type <= MENU_SETTINGS_SHADER_PARAMETER_LAST)
{
BIND_ACTION_RIGHT(cbs, shader_action_parameter_right);
}
else if (type >= MENU_SETTINGS_SHADER_PRESET_PARAMETER_0
&& type <= MENU_SETTINGS_SHADER_PRESET_PARAMETER_LAST)
{
BIND_ACTION_RIGHT(cbs, shader_action_parameter_preset_right);
}
2015-09-07 22:30:20 +02:00
#endif
else if (type >= MENU_SETTINGS_INPUT_DESC_BEGIN
&& type <= MENU_SETTINGS_INPUT_DESC_END)
{
BIND_ACTION_RIGHT(cbs, action_right_input_desc);
}
else if ((type >= MENU_SETTINGS_PLAYLIST_ASSOCIATION_START))
{
BIND_ACTION_RIGHT(cbs, playlist_association_right);
}
else if ((type >= MENU_SETTINGS_CORE_OPTION_START))
{
BIND_ACTION_RIGHT(cbs, core_setting_right);
}
2015-06-05 12:28:11 +02:00
else
2015-06-07 17:57:42 +02:00
{
switch (type)
{
case MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_INDEX:
BIND_ACTION_RIGHT(cbs, disk_options_disk_idx_right);
2015-06-07 17:57:42 +02:00
break;
2016-06-20 15:50:37 +02:00
case FILE_TYPE_PLAIN:
case FILE_TYPE_DIRECTORY:
case FILE_TYPE_PARENT_DIRECTORY:
case FILE_TYPE_CARCHIVE:
case FILE_TYPE_IN_CARCHIVE:
case FILE_TYPE_CORE:
case FILE_TYPE_RDB:
case FILE_TYPE_RDB_ENTRY:
case FILE_TYPE_RPL_ENTRY:
case FILE_TYPE_CURSOR:
case FILE_TYPE_SHADER:
case FILE_TYPE_SHADER_PRESET:
case FILE_TYPE_IMAGE:
case FILE_TYPE_OVERLAY:
case FILE_TYPE_VIDEOFILTER:
case FILE_TYPE_AUDIOFILTER:
case FILE_TYPE_CONFIG:
case FILE_TYPE_USE_DIRECTORY:
case FILE_TYPE_PLAYLIST_ENTRY:
case MENU_INFO_MESSAGE:
2016-06-20 15:50:37 +02:00
case FILE_TYPE_DOWNLOAD_CORE:
case FILE_TYPE_CHEAT:
case FILE_TYPE_REMAP:
case FILE_TYPE_MOVIE:
case FILE_TYPE_MUSIC:
case FILE_TYPE_IMAGEVIEWER:
case FILE_TYPE_PLAYLIST_COLLECTION:
case FILE_TYPE_DOWNLOAD_CORE_CONTENT:
case FILE_TYPE_DOWNLOAD_THUMBNAIL_CONTENT:
case FILE_TYPE_DOWNLOAD_URL:
2016-06-20 15:50:37 +02:00
case FILE_TYPE_SCAN_DIRECTORY:
2015-06-07 17:57:42 +02:00
case MENU_SETTING_GROUP:
case MENU_SETTINGS_CORE_INFO_NONE:
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TAB)) ||
2016-07-30 19:12:56 +02:00
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MUSIC_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_IMAGES_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_SETTINGS_TAB))
)
2015-06-07 17:57:42 +02:00
{
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);
break;
2015-06-07 17:57:42 +02:00
}
BIND_ACTION_RIGHT(cbs, action_right_scroll);
break;
2015-06-07 17:57:42 +02:00
case MENU_SETTING_ACTION:
2016-06-20 15:50:37 +02:00
case FILE_TYPE_CONTENTLIST_ENTRY:
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);
2015-06-07 17:57:42 +02:00
break;
default:
return -1;
}
}
return 0;
}
static int menu_cbs_init_bind_right_compare_label(menu_file_list_cbs_t *cbs,
2016-07-01 20:57:23 +02:00
const char *label, uint32_t label_hash, const char *menu_label)
2015-06-07 17:57:42 +02:00
{
unsigned i;
2015-08-17 19:39:12 +02:00
if (cbs->setting)
{
2015-10-11 13:10:46 +02:00
const char *parent_group = menu_setting_get_parent_group(cbs->setting);
if (string_is_equal(parent_group, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU))
2016-08-29 03:07:20 +02:00
&& (setting_get_type(cbs->setting) == ST_GROUP))
{
BIND_ACTION_RIGHT(cbs, action_right_scroll);
return 0;
}
}
for (i = 0; i < MAX_USERS; i++)
{
uint32_t label_setting_hash;
char label_setting[128];
label_setting[0] = '\0';
snprintf(label_setting, sizeof(label_setting), "input_player%d_joypad_index", i + 1);
label_setting_hash = msg_hash_calculate(label_setting);
if (label_hash != label_setting_hash)
continue;
BIND_ACTION_RIGHT(cbs, bind_right_generic);
return 0;
}
if (string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)))
{
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);
return 0;
}
2015-06-07 17:57:42 +02:00
if (strstr(label, "rdb_entry"))
{
BIND_ACTION_RIGHT(cbs, action_right_scroll);
}
2015-06-07 17:57:42 +02:00
else
2015-06-05 12:28:11 +02:00
{
if (cbs->enum_idx != MSG_UNKNOWN)
2015-06-05 12:28:11 +02:00
{
2016-06-16 20:14:15 +02:00
switch (cbs->enum_idx)
{
case MENU_ENUM_LABEL_VIDEO_SHADER_SCALE_PASS:
BIND_ACTION_RIGHT(cbs, action_right_shader_scale_pass);
break;
case MENU_ENUM_LABEL_VIDEO_SHADER_FILTER_PASS:
BIND_ACTION_RIGHT(cbs, action_right_shader_filter_pass);
break;
case MENU_ENUM_LABEL_VIDEO_SHADER_DEFAULT_FILTER:
BIND_ACTION_RIGHT(cbs, action_right_shader_filter_default);
break;
case MENU_ENUM_LABEL_VIDEO_SHADER_NUM_PASSES:
BIND_ACTION_RIGHT(cbs, action_right_shader_num_passes);
break;
case MENU_ENUM_LABEL_CHEAT_NUM_PASSES:
BIND_ACTION_RIGHT(cbs, action_right_cheat_num_passes);
break;
case MENU_ENUM_LABEL_SCREEN_RESOLUTION:
BIND_ACTION_RIGHT(cbs, action_right_video_resolution);
break;
2016-06-17 20:43:42 +02:00
case MENU_ENUM_LABEL_NO_ITEMS:
2016-06-16 20:14:15 +02:00
case MENU_ENUM_LABEL_NO_PLAYLIST_ENTRIES_AVAILABLE:
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
2016-07-30 19:12:56 +02:00
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MUSIC_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_IMAGES_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU))
2016-06-17 20:43:42 +02:00
)
2016-06-16 20:14:15 +02:00
{
2016-06-17 20:43:42 +02:00
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);
break;
2016-06-16 20:14:15 +02:00
}
case MENU_ENUM_LABEL_START_VIDEO_PROCESSOR:
case MENU_ENUM_LABEL_TAKE_SCREENSHOT:
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MUSIC_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_IMAGES_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_SETTINGS_TAB))
)
{
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);
break;
}
2016-06-16 20:14:15 +02:00
default:
return -1;
}
}
2016-07-10 13:51:40 +02:00
else
{
return -1;
}
2015-06-05 12:28:11 +02:00
}
2015-06-07 17:57:42 +02:00
return 0;
}
int menu_cbs_init_bind_right(menu_file_list_cbs_t *cbs,
2015-06-07 17:57:42 +02:00
const char *path, const char *label, unsigned type, size_t idx,
2016-07-01 19:26:27 +02:00
const char *menu_label,
2016-07-01 20:57:23 +02:00
uint32_t label_hash)
2015-06-07 17:57:42 +02:00
{
if (!cbs)
2016-02-10 21:42:18 +01:00
return menu_cbs_exit();
2015-06-07 17:57:42 +02:00
BIND_ACTION_RIGHT(cbs, bind_right_generic);
if (type == MENU_SETTING_NO_ITEM)
{
if ( string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HISTORY_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MAIN_MENU)) ||
2016-07-30 19:12:56 +02:00
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_MUSIC_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_IMAGES_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_TAB)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
string_is_equal(menu_label, msg_hash_to_str(MENU_ENUM_LABEL_SETTINGS_TAB))
)
{
BIND_ACTION_RIGHT(cbs, action_right_mainmenu);
return 0;
}
}
2015-06-07 17:57:42 +02:00
2016-07-01 20:57:23 +02:00
if (menu_cbs_init_bind_right_compare_label(cbs, label, label_hash, menu_label
) == 0)
2015-06-07 18:36:10 +02:00
return 0;
2016-07-02 07:05:43 +02:00
if (menu_cbs_init_bind_right_compare_type(cbs, type, menu_label ) == 0)
2015-06-07 18:36:10 +02:00
return 0;
2015-06-07 17:57:42 +02:00
2016-02-10 21:42:18 +01:00
return menu_cbs_exit();
}