2015-06-01 05:16:31 +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-08 12:35:58 +00:00
|
|
|
#include "../menu.h"
|
|
|
|
#include "../menu_entry.h"
|
2015-06-12 14:01:46 +00:00
|
|
|
#include "../menu_cbs.h"
|
2015-06-08 12:35:58 +00:00
|
|
|
#include "../menu_setting.h"
|
2015-06-01 05:16:31 +00:00
|
|
|
|
2015-11-30 14:35:57 +00:00
|
|
|
#include "../../runloop.h"
|
2015-06-01 05:16:31 +00:00
|
|
|
|
2015-10-11 18:26:44 +00:00
|
|
|
#ifndef BIND_ACTION_SELECT
|
|
|
|
#define BIND_ACTION_SELECT(cbs, name) \
|
|
|
|
cbs->action_select = name; \
|
|
|
|
cbs->action_select_ident = #name;
|
|
|
|
#endif
|
|
|
|
|
2015-06-01 05:16:31 +00:00
|
|
|
static int action_select_default(const char *path, const char *label, unsigned type,
|
|
|
|
size_t idx)
|
|
|
|
{
|
2015-06-06 14:40:10 +00:00
|
|
|
menu_entry_t entry;
|
2015-10-17 17:27:18 +00:00
|
|
|
int ret = 0;
|
|
|
|
enum menu_action action = MENU_ACTION_NOOP;
|
|
|
|
menu_file_list_cbs_t *cbs = NULL;
|
2015-10-27 09:10:33 +00:00
|
|
|
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
|
2015-06-01 05:16:31 +00:00
|
|
|
|
2015-10-27 09:10:33 +00:00
|
|
|
menu_entry_get(&entry, 0, idx, NULL, false);
|
2015-06-01 05:16:31 +00:00
|
|
|
|
2015-10-19 14:32:51 +00:00
|
|
|
cbs = menu_entries_get_actiondata_at_offset(selection_buf, idx);
|
2015-09-28 21:00:22 +00:00
|
|
|
|
|
|
|
if (!cbs)
|
|
|
|
return -1;
|
2015-08-16 21:52:39 +00:00
|
|
|
|
2015-09-26 00:22:01 +00:00
|
|
|
switch (menu_setting_get_type(cbs->setting))
|
2015-08-16 21:52:39 +00:00
|
|
|
{
|
2015-09-26 00:22:01 +00:00
|
|
|
case ST_BOOL:
|
|
|
|
case ST_INT:
|
|
|
|
case ST_UINT:
|
|
|
|
case ST_FLOAT:
|
|
|
|
action = MENU_ACTION_RIGHT;
|
|
|
|
break;
|
|
|
|
case ST_PATH:
|
|
|
|
case ST_DIR:
|
|
|
|
case ST_ACTION:
|
|
|
|
case ST_STRING:
|
|
|
|
case ST_HEX:
|
|
|
|
case ST_BIND:
|
|
|
|
action = MENU_ACTION_OK;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2015-08-16 21:52:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (action == MENU_ACTION_NOOP)
|
2015-08-16 21:35:09 +00:00
|
|
|
{
|
2015-09-28 21:00:22 +00:00
|
|
|
if (cbs->action_ok)
|
2015-08-16 21:52:39 +00:00
|
|
|
action = MENU_ACTION_OK;
|
|
|
|
else
|
|
|
|
{
|
2015-09-28 21:00:22 +00:00
|
|
|
if (cbs->action_start)
|
2015-08-16 21:35:09 +00:00
|
|
|
action = MENU_ACTION_START;
|
2015-09-28 21:00:22 +00:00
|
|
|
if (cbs->action_right)
|
2015-08-16 21:35:09 +00:00
|
|
|
action = MENU_ACTION_RIGHT;
|
2015-08-16 21:52:39 +00:00
|
|
|
}
|
2015-06-06 14:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (action != MENU_ACTION_NOOP)
|
|
|
|
ret = menu_entry_action(&entry, idx, action);
|
2015-06-01 05:16:31 +00:00
|
|
|
|
2015-11-28 02:26:01 +00:00
|
|
|
rarch_main_data_iterate();
|
2015-06-01 05:16:31 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-08-05 07:41:02 +00:00
|
|
|
static int action_select_path_use_directory(const char *path,
|
|
|
|
const char *label, unsigned type, size_t idx)
|
|
|
|
{
|
|
|
|
return action_ok_path_use_directory(path, label, type, idx, 0 /* unused */);
|
|
|
|
}
|
|
|
|
|
2015-08-05 03:55:04 +00:00
|
|
|
static int action_select_directory(const char *path, const char *label, unsigned type,
|
|
|
|
size_t idx)
|
|
|
|
{
|
|
|
|
return action_ok_directory_push(path, label, type, idx, 0 /* ignored */);
|
|
|
|
}
|
|
|
|
|
2015-10-28 14:56:45 +00:00
|
|
|
static int action_select_driver_setting(const char *path, const char *label, unsigned type,
|
|
|
|
size_t idx)
|
|
|
|
{
|
|
|
|
return bind_right_generic(type, label, true);
|
|
|
|
}
|
|
|
|
|
2015-06-06 18:35:39 +00:00
|
|
|
static int action_select_core_setting(const char *path, const char *label, unsigned type,
|
|
|
|
size_t idx)
|
|
|
|
{
|
|
|
|
return core_setting_right(type, label, true);
|
|
|
|
}
|
|
|
|
|
2015-09-07 20:33:11 +00:00
|
|
|
#ifdef HAVE_SHADER_MANAGER
|
2015-09-01 23:39:52 +00:00
|
|
|
static int shader_action_parameter_select(const char *path, const char *label, unsigned type,
|
|
|
|
size_t idx)
|
|
|
|
{
|
|
|
|
return shader_action_parameter_right(type, label, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int shader_action_parameter_preset_select(const char *path, const char *label, unsigned type,
|
|
|
|
size_t idx)
|
|
|
|
{
|
|
|
|
return shader_action_parameter_preset_right(type, label, true);
|
|
|
|
}
|
2015-09-07 20:33:11 +00:00
|
|
|
#endif
|
2015-09-01 23:39:52 +00:00
|
|
|
|
2015-06-06 18:40:17 +00:00
|
|
|
static int action_select_cheat(const char *path, const char *label, unsigned type,
|
|
|
|
size_t idx)
|
|
|
|
{
|
|
|
|
return action_right_cheat(type, label, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int action_select_input_desc(const char *path, const char *label, unsigned type,
|
|
|
|
size_t idx)
|
|
|
|
{
|
|
|
|
return action_right_input_desc(type, label, true);
|
|
|
|
}
|
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
static int menu_cbs_init_bind_select_compare_type(
|
2015-06-07 15:52:01 +00:00
|
|
|
menu_file_list_cbs_t *cbs, unsigned type)
|
2015-06-01 05:16:31 +00:00
|
|
|
{
|
2015-09-07 20:33:11 +00:00
|
|
|
if (type >= MENU_SETTINGS_CHEAT_BEGIN
|
|
|
|
&& type <= MENU_SETTINGS_CHEAT_END)
|
2015-10-11 18:26:44 +00:00
|
|
|
{
|
|
|
|
BIND_ACTION_SELECT(cbs, action_select_cheat);
|
|
|
|
}
|
2015-09-07 20:33:11 +00:00
|
|
|
#ifdef HAVE_SHADER_MANAGER
|
|
|
|
else if (type >= MENU_SETTINGS_SHADER_PARAMETER_0
|
2015-09-01 23:39:52 +00:00
|
|
|
&& type <= MENU_SETTINGS_SHADER_PARAMETER_LAST)
|
2015-10-11 18:26:44 +00:00
|
|
|
{
|
|
|
|
BIND_ACTION_SELECT(cbs, shader_action_parameter_select);
|
|
|
|
}
|
2015-09-01 23:39:52 +00:00
|
|
|
else if (type >= MENU_SETTINGS_SHADER_PRESET_PARAMETER_0
|
|
|
|
&& type <= MENU_SETTINGS_SHADER_PRESET_PARAMETER_LAST)
|
2015-10-11 18:26:44 +00:00
|
|
|
{
|
|
|
|
BIND_ACTION_SELECT(cbs, shader_action_parameter_preset_select);
|
|
|
|
}
|
2015-09-07 20:33:11 +00:00
|
|
|
#endif
|
2015-06-06 18:40:17 +00:00
|
|
|
else if (type >= MENU_SETTINGS_INPUT_DESC_BEGIN
|
|
|
|
&& type <= MENU_SETTINGS_INPUT_DESC_END)
|
2015-10-11 18:26:44 +00:00
|
|
|
{
|
|
|
|
BIND_ACTION_SELECT(cbs, action_select_input_desc);
|
|
|
|
}
|
2015-06-06 18:35:39 +00:00
|
|
|
else
|
2015-06-01 15:00:26 +00:00
|
|
|
{
|
2015-06-06 18:35:39 +00:00
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case MENU_FILE_DIRECTORY:
|
2015-10-11 18:26:44 +00:00
|
|
|
BIND_ACTION_SELECT(cbs, action_select_directory);
|
2015-06-06 18:35:39 +00:00
|
|
|
break;
|
2015-08-05 03:55:04 +00:00
|
|
|
case MENU_FILE_USE_DIRECTORY:
|
2015-10-11 18:26:44 +00:00
|
|
|
BIND_ACTION_SELECT(cbs, action_select_path_use_directory);
|
2015-08-05 07:41:02 +00:00
|
|
|
break;
|
2015-06-07 15:52:01 +00:00
|
|
|
default:
|
|
|
|
return -1;
|
2015-06-06 18:35:39 +00:00
|
|
|
}
|
2015-06-01 15:00:26 +00:00
|
|
|
}
|
2015-06-07 15:52:01 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-05 08:16:46 +00:00
|
|
|
static int menu_cbs_init_bind_select_compare_label(menu_file_list_cbs_t *cbs,
|
|
|
|
const char *label, uint32_t hash, const char *elem0)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_select(menu_file_list_cbs_t *cbs,
|
2015-06-07 15:52:01 +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)
|
|
|
|
{
|
|
|
|
if (!cbs)
|
2015-06-07 16:36:10 +00:00
|
|
|
return -1;
|
2015-06-07 15:52:01 +00:00
|
|
|
|
2015-10-11 18:26:44 +00:00
|
|
|
BIND_ACTION_SELECT(cbs, action_select_default);
|
2015-06-07 15:52:01 +00:00
|
|
|
|
2015-10-28 14:56:45 +00:00
|
|
|
if (cbs->setting)
|
|
|
|
{
|
|
|
|
uint64_t flags = menu_setting_get_flags(cbs->setting);
|
|
|
|
|
|
|
|
if (flags & SD_FLAG_IS_DRIVER)
|
|
|
|
{
|
|
|
|
BIND_ACTION_SELECT(cbs, action_select_driver_setting);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-15 21:22:01 +00:00
|
|
|
if ((type >= MENU_SETTINGS_CORE_OPTION_START))
|
|
|
|
{
|
2015-10-11 18:26:44 +00:00
|
|
|
BIND_ACTION_SELECT(cbs, action_select_core_setting);
|
2015-08-15 21:22:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-05 08:16:46 +00:00
|
|
|
if (menu_cbs_init_bind_select_compare_label(cbs, label, label_hash, elem0) == 0)
|
|
|
|
return 0;
|
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
if (menu_cbs_init_bind_select_compare_type(cbs, type) == 0)
|
2015-06-07 16:36:10 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return -1;
|
2015-06-01 05:16:31 +00:00
|
|
|
}
|