RetroArch/menu/cbs/menu_cbs_left.c

564 lines
16 KiB
C
Raw Normal View History

/* 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/>.
*/
#include <file/file_path.h>
2015-12-06 16:55:27 +00:00
#include "../menu_driver.h"
2015-06-26 13:28:01 +00:00
#include "../menu_cbs.h"
2015-06-13 17:12:10 +00:00
#include "../menu_hash.h"
#include "../menu_input.h"
#include "../menu_setting.h"
#include "../menu_shader.h"
#include "../menu_navigation.h"
2015-12-01 02:33:50 +00:00
#include "../../cheats.h"
2015-06-13 17:12:10 +00:00
#include "../../general.h"
#include "../../retroarch.h"
#ifndef BIND_ACTION_LEFT
#define BIND_ACTION_LEFT(cbs, name) \
cbs->action_left = name; \
cbs->action_left_ident = #name;
#endif
2015-09-07 20:30:20 +00:00
#ifdef HAVE_SHADER_MANAGER
2015-09-07 19:22:19 +00:00
static int generic_shader_action_parameter_left(
struct video_shader *shader, struct video_shader_parameter *param,
unsigned type, const char *label, bool wraparound)
{
if (shader)
{
param->current -= param->step;
param->current = min(max(param->minimum, param->current), param->maximum);
}
return 0;
}
static int shader_action_parameter_left(unsigned type, const char *label,
bool wraparound)
{
2015-09-07 19:22:19 +00:00
struct video_shader *shader = video_shader_driver_get_current_shader();
struct video_shader_parameter *param = &shader->parameters[type - MENU_SETTINGS_SHADER_PARAMETER_0];
return generic_shader_action_parameter_left(shader, param, type, label, wraparound);
}
static int shader_action_parameter_preset_left(unsigned type, const char *label,
bool wraparound)
{
2015-09-07 19:22:19 +00:00
menu_handle_t *menu = menu_driver_get_ptr();
struct video_shader *shader = menu ? menu->shader : NULL;
struct video_shader_parameter *param = &shader->parameters[type - MENU_SETTINGS_SHADER_PRESET_PARAMETER_0];
return generic_shader_action_parameter_left(shader, param, type, label, wraparound);
}
2015-09-07 20:30:20 +00:00
#endif
static int action_left_cheat(unsigned type, const char *label,
bool wraparound)
{
size_t idx = type - MENU_SETTINGS_CHEAT_BEGIN;
2015-09-05 15:09:57 +00:00
return generic_action_cheat_toggle(idx, type, label,
wraparound);
}
static int action_left_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 (settings->input.remap_ids[inp_desc_user][inp_desc_button_index_offset] > 0)
settings->input.remap_ids[inp_desc_user][inp_desc_button_index_offset]--;
return 0;
}
static int action_left_scroll(unsigned type, const char *label,
bool wraparound)
{
2015-09-25 12:57:37 +00:00
size_t selection;
size_t scroll_accel = 0;
unsigned scroll_speed = 0, fast_scroll_speed = 0;
2015-09-25 12:57:37 +00:00
if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection))
return -1;
if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SCROLL_ACCEL, &scroll_accel))
return false;
2015-09-25 12:57:37 +00:00
scroll_speed = (max(scroll_accel, 2) - 2) / 4 + 1;
fast_scroll_speed = 4 + 4 * scroll_speed;
2015-09-06 00:06:02 +00:00
if (selection > fast_scroll_speed)
2015-09-25 13:42:31 +00: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-09-25 13:15:31 +00:00
{
bool pending_push = false;
menu_navigation_ctl(MENU_NAVIGATION_CTL_CLEAR, &pending_push);
}
return 0;
}
static int action_left_mainmenu(unsigned type, const char *label,
bool wraparound)
{
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();
2015-10-17 16:06:02 +00:00
menu_handle_t *menu = menu_driver_get_ptr();
unsigned action = MENU_ACTION_LEFT;
size_t list_size = menu_driver_list_get_size(MENU_LIST_PLAIN);
if (!menu)
return -1;
if (list_size == 1)
{
menu_navigation_ctl(MENU_NAVIGATION_CTL_SET_SELECTION, &selection);
if (menu_driver_list_get_selection() != 0
|| settings->menu.navigation.wraparound.enable)
push_list = 1;
}
else
push_list = 2;
menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection);
2015-10-19 14:32:51 +00:00
cbs = menu_entries_get_actiondata_at_offset(selection_buf,
selection);
switch (push_list)
{
case 1:
menu_driver_list_cache(MENU_LIST_HORIZONTAL, action);
if (cbs && cbs->action_content_list_switch)
return cbs->action_content_list_switch(
2015-10-17 16:06:02 +00:00
selection_buf, menu_stack, "", "", 0);
break;
case 2:
action_left_scroll(0, "", false);
break;
case 0:
default:
break;
}
return 0;
}
static int action_left_shader_scale_pass(unsigned type, const char *label,
bool wraparound)
{
#ifdef HAVE_SHADER_MANAGER
unsigned pass = type - MENU_SETTINGS_SHADER_PASS_SCALE_0;
struct video_shader *shader = NULL;
struct video_shader_pass *shader_pass = NULL;
menu_handle_t *menu = menu_driver_get_ptr();
if (!menu)
return -1;
shader = menu->shader;
if (!shader)
return -1;
shader_pass = &shader->pass[pass];
if (!shader_pass)
return -1;
{
unsigned current_scale = shader_pass->fbo.scale_x;
unsigned delta = 5;
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_left_shader_filter_pass(unsigned type, const char *label,
bool wraparound)
{
#ifdef HAVE_SHADER_MANAGER
unsigned delta = 2;
unsigned pass = type - MENU_SETTINGS_SHADER_PASS_FILTER_0;
struct video_shader *shader = NULL;
struct video_shader_pass *shader_pass = NULL;
menu_handle_t *menu = menu_driver_get_ptr();
if (!menu)
return -1;
shader = menu->shader;
if (!shader)
return -1;
shader_pass = &shader->pass[pass];
if (!shader_pass)
return -1;
shader_pass->filter = ((shader_pass->filter + delta) % 3);
#endif
return 0;
}
static int action_left_shader_filter_default(unsigned type, const char *label,
bool wraparound)
{
#ifdef HAVE_SHADER_MANAGER
2015-06-23 02:12:47 +00:00
rarch_setting_t *setting = menu_setting_find(menu_hash_to_str(MENU_LABEL_VIDEO_SMOOTH));
2015-06-03 08:33:41 +00:00
if (!setting)
return -1;
return menu_action_handle_setting(setting,
2015-09-26 00:22:01 +00:00
menu_setting_get_type(setting), MENU_ACTION_LEFT, wraparound);
2015-06-03 08:33:41 +00:00
#else
return 0;
2015-06-03 08:33:41 +00:00
#endif
}
static int action_left_cheat_num_passes(unsigned type, const char *label,
bool wraparound)
{
unsigned new_size = 0;
menu_handle_t *menu = menu_driver_get_ptr();
2015-12-01 01:55:07 +00:00
if (cheat_manager_get_size())
new_size = cheat_manager_get_size() - 1;
menu_entries_set_refresh(false);
menu->prevent_populate = true;
2015-12-01 01:55:07 +00:00
cheat_manager_realloc(new_size);
return 0;
}
static int action_left_shader_num_passes(unsigned type, const char *label,
bool wraparound)
{
#ifdef HAVE_SHADER_MANAGER
struct video_shader *shader = NULL;
menu_handle_t *menu = menu_driver_get_ptr();
if (!menu)
return -1;
shader = menu->shader;
if (!shader)
return -1;
if (shader->passes)
shader->passes--;
menu_entries_set_refresh(false);
menu->prevent_populate = true;
video_shader_resolve_parameters(NULL, menu->shader);
#endif
return 0;
}
static int action_left_video_resolution(unsigned type, const char *label,
bool wraparound)
{
2015-11-20 20:22:26 +00:00
video_driver_ctl(RARCH_DISPLAY_CTL_GET_PREV_VIDEO_OUT, NULL);
return 0;
}
static int playlist_association_left(unsigned type, const char *label,
bool wraparound)
{
2015-11-25 02:31:37 +00:00
unsigned i;
int next, found, current = 0;
2015-11-25 03:05:04 +00:00
core_info_t *info = NULL;
2015-11-25 02:38:57 +00:00
struct string_list *stnames = NULL;
struct string_list *stcores = NULL;
2015-11-19 22:20:13 +00:00
char core_path[PATH_MAX_LENGTH] = {0};
2015-11-20 12:58:19 +00:00
char new_playlist_cores[PATH_MAX_LENGTH] = {0};
2015-11-19 22:20:13 +00:00
global_t *global = global_get_ptr();
settings_t *settings = config_get_ptr();
const char *path = path_basename(label);
2015-11-20 12:58:19 +00:00
core_info_list_t *list = global ? global->core_info.list : NULL;
2015-11-19 22:20:13 +00:00
if (!list)
return -1;
2015-11-19 22:20:13 +00:00
2015-11-25 02:38:57 +00:00
stnames = string_split(settings->playlist_names, ";");
stcores = string_split(settings->playlist_cores, ";");
2015-11-19 22:20:13 +00:00
if (!menu_playlist_find_associated_core(path, core_path, sizeof(core_path)))
strlcpy(core_path, "DETECT", sizeof(core_path));
for (i = 0; i < list->count; i++)
{
core_info_t *info = core_info_get(list, i);
if (!strcmp(info->path, core_path))
current = i;
}
next = current - 1;
if (next < 0)
{
if (wraparound)
next = list->count;
else
next = 0;
}
2015-11-25 03:05:04 +00:00
info = core_info_get(list, next);
2015-11-19 22:20:13 +00: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-19 22:20:13 +00:00
strlcpy(settings->playlist_cores, new_playlist_cores, sizeof(settings->playlist_cores));
return 0;
}
static int core_setting_left(unsigned type, const char *label,
bool wraparound)
{
unsigned idx = type - MENU_SETTINGS_CORE_OPTION_START;
2015-06-25 11:46:32 +00:00
rarch_system_info_t *system = rarch_system_info_get_ptr();
(void)label;
2015-06-25 11:46:32 +00:00
core_option_prev(system->core_options, idx);
return 0;
}
static int disk_options_disk_idx_left(unsigned type, const char *label,
bool wraparound)
{
event_command(EVENT_CMD_DISK_PREV);
return 0;
}
static int bind_left_generic(unsigned type, const char *label,
bool wraparound)
{
2015-09-01 23:17:51 +00:00
return menu_setting_set(type, label, MENU_ACTION_LEFT, wraparound);
}
static int menu_cbs_init_bind_left_compare_label(menu_file_list_cbs_t *cbs,
const char *label, uint32_t label_hash, uint32_t menu_label_hash, const char *elem0)
{
unsigned i;
if (cbs->setting)
{
2015-10-11 11:10:46 +00:00
const char *parent_group = menu_setting_get_parent_group(cbs->setting);
uint32_t parent_group_hash = menu_hash_calculate(parent_group);
2015-09-26 00:22:01 +00:00
if ((parent_group_hash == MENU_VALUE_MAIN_MENU) && (menu_setting_get_type(cbs->setting) == ST_GROUP))
{
2015-10-20 12:11:43 +00:00
BIND_ACTION_LEFT(cbs, action_left_mainmenu);
return 0;
}
}
for (i = 0; i < MAX_USERS; i++)
{
uint32_t label_setting_hash;
char label_setting[PATH_MAX_LENGTH];
label_setting[0] = '\0';
snprintf(label_setting, sizeof(label_setting), "input_player%d_joypad_index", i + 1);
2015-06-17 17:55:24 +00:00
label_setting_hash = menu_hash_calculate(label_setting);
if (label_hash != label_setting_hash)
continue;
BIND_ACTION_LEFT(cbs, bind_left_generic);
return 0;
}
2015-06-07 16:05:26 +00:00
if (strstr(label, "rdb_entry"))
{
BIND_ACTION_LEFT(cbs, action_left_scroll);
}
2015-06-07 16:05:26 +00:00
else
{
2015-06-07 16:05:26 +00:00
switch (label_hash)
{
2015-06-07 16:05:26 +00:00
case MENU_LABEL_VIDEO_SHADER_SCALE_PASS:
BIND_ACTION_LEFT(cbs, action_left_shader_scale_pass);
2015-06-07 16:05:26 +00:00
break;
case MENU_LABEL_VIDEO_SHADER_FILTER_PASS:
BIND_ACTION_LEFT(cbs, action_left_shader_filter_pass);
2015-06-07 16:05:26 +00:00
break;
case MENU_LABEL_VIDEO_SHADER_DEFAULT_FILTER:
BIND_ACTION_LEFT(cbs, action_left_shader_filter_default);
2015-06-07 16:05:26 +00:00
break;
case MENU_LABEL_VIDEO_SHADER_NUM_PASSES:
BIND_ACTION_LEFT(cbs, action_left_shader_num_passes);
2015-06-07 16:05:26 +00:00
break;
case MENU_LABEL_CHEAT_NUM_PASSES:
BIND_ACTION_LEFT(cbs, action_left_cheat_num_passes);
2015-06-07 16:05:26 +00:00
break;
2015-06-25 03:35:23 +00:00
case MENU_LABEL_SCREEN_RESOLUTION:
BIND_ACTION_LEFT(cbs, action_left_video_resolution);
2015-06-25 03:35:23 +00:00
break;
case MENU_LABEL_NO_PLAYLIST_ENTRIES_AVAILABLE:
switch (menu_label_hash)
{
case MENU_VALUE_HORIZONTAL_MENU:
case MENU_VALUE_MAIN_MENU:
BIND_ACTION_LEFT(cbs, action_left_mainmenu);
break;
}
2015-06-07 16:05:26 +00:00
default:
return -1;
}
}
2015-06-07 16:05:26 +00:00
return 0;
}
static int menu_cbs_init_bind_left_compare_type(menu_file_list_cbs_t *cbs,
2015-06-27 12:47:32 +00:00
unsigned type, uint32_t label_hash, uint32_t menu_label_hash)
2015-06-07 16:05:26 +00:00
{
2015-09-07 20:30:20 +00:00
if (type >= MENU_SETTINGS_CHEAT_BEGIN
&& type <= MENU_SETTINGS_CHEAT_END)
{
BIND_ACTION_LEFT(cbs, action_left_cheat);
}
2015-09-07 20:30:20 +00:00
#ifdef HAVE_SHADER_MANAGER
else if (type >= MENU_SETTINGS_SHADER_PARAMETER_0
&& type <= MENU_SETTINGS_SHADER_PARAMETER_LAST)
{
BIND_ACTION_LEFT(cbs, shader_action_parameter_left);
}
else if (type >= MENU_SETTINGS_SHADER_PRESET_PARAMETER_0
&& type <= MENU_SETTINGS_SHADER_PRESET_PARAMETER_LAST)
{
BIND_ACTION_LEFT(cbs, shader_action_parameter_preset_left);
}
2015-09-07 20:30:20 +00:00
#endif
else if (type >= MENU_SETTINGS_INPUT_DESC_BEGIN
&& type <= MENU_SETTINGS_INPUT_DESC_END)
{
BIND_ACTION_LEFT(cbs, action_left_input_desc);
}
else if ((type >= MENU_SETTINGS_PLAYLIST_ASSOCIATION_START))
{
BIND_ACTION_LEFT(cbs, playlist_association_left);
}
2015-06-05 10:24:00 +00:00
else if ((type >= MENU_SETTINGS_CORE_OPTION_START))
{
BIND_ACTION_LEFT(cbs, core_setting_left);
}
2015-06-05 10:25:27 +00:00
else
{
2015-06-07 16:05:26 +00:00
switch (type)
2015-06-05 10:25:27 +00:00
{
2015-06-07 16:05:26 +00:00
case MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_INDEX:
BIND_ACTION_LEFT(cbs, disk_options_disk_idx_left);
2015-06-05 10:25:27 +00:00
break;
2015-06-07 16:05:26 +00:00
case MENU_FILE_PLAIN:
case MENU_FILE_DIRECTORY:
case MENU_FILE_CARCHIVE:
case MENU_FILE_IN_CARCHIVE:
2015-06-07 16:05:26 +00:00
case MENU_FILE_CORE:
case MENU_FILE_RDB:
case MENU_FILE_RDB_ENTRY:
case MENU_FILE_RPL_ENTRY:
2015-06-07 16:05:26 +00:00
case MENU_FILE_CURSOR:
case MENU_FILE_SHADER:
case MENU_FILE_SHADER_PRESET:
case MENU_FILE_IMAGE:
case MENU_FILE_OVERLAY:
case MENU_FILE_VIDEOFILTER:
case MENU_FILE_AUDIOFILTER:
case MENU_FILE_CONFIG:
case MENU_FILE_USE_DIRECTORY:
case MENU_FILE_PLAYLIST_ENTRY:
case MENU_INFO_MESSAGE:
2015-06-07 16:05:26 +00:00
case MENU_FILE_DOWNLOAD_CORE:
case MENU_FILE_CHEAT:
case MENU_FILE_REMAP:
case MENU_FILE_MOVIE:
case MENU_FILE_MUSIC:
2015-06-28 15:21:32 +00:00
case MENU_FILE_IMAGEVIEWER:
case MENU_FILE_PLAYLIST_COLLECTION:
case MENU_FILE_DOWNLOAD_CORE_CONTENT:
case MENU_FILE_SCAN_DIRECTORY:
2015-06-07 16:05:26 +00:00
case MENU_SETTING_GROUP:
switch (menu_label_hash)
{
case MENU_VALUE_HORIZONTAL_MENU:
case MENU_VALUE_MAIN_MENU:
2015-10-22 18:05:51 +00:00
case MENU_VALUE_HISTORY_TAB:
case MENU_VALUE_ADD_TAB:
case MENU_VALUE_PLAYLISTS_TAB:
BIND_ACTION_LEFT(cbs, action_left_mainmenu);
2015-06-07 16:05:26 +00:00
break;
default:
BIND_ACTION_LEFT(cbs, action_left_scroll);
2015-06-07 16:05:26 +00:00
break;
}
2015-06-05 10:25:27 +00:00
break;
2015-06-07 16:05:26 +00:00
case MENU_SETTING_ACTION:
case MENU_FILE_CONTENTLIST_ENTRY:
BIND_ACTION_LEFT(cbs, action_left_mainmenu);
2015-06-05 10:25:27 +00:00
break;
2015-06-07 16:05:26 +00:00
default:
return -1;
2015-06-05 10:25:27 +00:00
}
}
2015-06-07 16:05:26 +00:00
return 0;
}
int menu_cbs_init_bind_left(menu_file_list_cbs_t *cbs,
2015-06-07 16:05:26 +00:00
const char *path, const char *label, unsigned type, size_t idx,
const char *elem0, const char *elem1, const char *menu_label,
uint32_t label_hash, uint32_t menu_label_hash)
{
if (!cbs)
2015-06-07 16:36:10 +00:00
return -1;
2015-06-07 16:05:26 +00:00
BIND_ACTION_LEFT(cbs, bind_left_generic);
2015-06-07 16:05:26 +00:00
if (type == MENU_SETTING_NO_ITEM)
{
switch (menu_label_hash)
{
case MENU_VALUE_HORIZONTAL_MENU:
case MENU_VALUE_MAIN_MENU:
case 153956705: /* TODO/FIXME - dehardcode */
BIND_ACTION_LEFT(cbs, action_left_mainmenu);
return 0;
default:
break;
}
}
if (menu_cbs_init_bind_left_compare_label(cbs, label, label_hash, menu_label_hash, elem0) == 0)
2015-06-07 16:36:10 +00:00
return 0;
2015-06-27 12:47:32 +00:00
if (menu_cbs_init_bind_left_compare_type(cbs, type, label_hash, menu_label_hash) == 0)
2015-06-07 16:36:10 +00:00
return 0;
2015-06-07 16:05:26 +00:00
2015-06-07 16:36:10 +00:00
return -1;
}