2015-02-27 01:50:19 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2017-01-22 12:40:32 +00:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2015-02-27 01:50:19 +00:00
|
|
|
*
|
|
|
|
* 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>
|
2016-09-01 16:01:41 +00:00
|
|
|
#include <compat/strl.h>
|
2015-12-26 07:01:56 +00:00
|
|
|
#include <string/stdstring.h>
|
2016-03-20 13:53:54 +00:00
|
|
|
#include <lists/string_list.h>
|
2015-06-04 20:21:21 +00:00
|
|
|
|
2016-09-08 03:39:08 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../../config.h"
|
|
|
|
#endif
|
|
|
|
|
2015-12-06 16:55:27 +00:00
|
|
|
#include "../menu_driver.h"
|
2020-02-16 14:26:58 +00:00
|
|
|
#include "../../gfx/gfx_animation.h"
|
2015-06-12 14:01:46 +00:00
|
|
|
#include "../menu_cbs.h"
|
2019-07-20 22:33:39 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2015-06-08 12:35:58 +00:00
|
|
|
#include "../menu_shader.h"
|
2019-07-20 22:33:39 +00:00
|
|
|
#endif
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2016-12-01 19:38:20 +00:00
|
|
|
#include "../../tasks/tasks_internal.h"
|
2016-02-16 03:54:26 +00:00
|
|
|
|
2016-09-06 04:11:44 +00:00
|
|
|
#include "../../core.h"
|
2015-12-11 12:56:00 +00:00
|
|
|
#include "../../core_info.h"
|
2016-09-01 16:01:41 +00:00
|
|
|
#include "../../configuration.h"
|
2016-06-26 08:12:28 +00:00
|
|
|
#include "../../file_path_special.h"
|
2020-10-15 03:29:20 +00:00
|
|
|
#include "../../core_option_manager.h"
|
2020-06-30 17:35:41 +00:00
|
|
|
#ifdef HAVE_CHEATS
|
2020-10-15 03:29:20 +00:00
|
|
|
#include "../../cheat_manager.h"
|
2020-06-30 17:35:41 +00:00
|
|
|
#endif
|
2016-05-10 06:53:14 +00:00
|
|
|
#include "../../performance_counters.h"
|
2016-09-17 11:14:14 +00:00
|
|
|
#include "../../paths.h"
|
2017-09-10 05:04:18 +00:00
|
|
|
#include "../../verbosity.h"
|
2020-06-17 11:56:44 +00:00
|
|
|
#include "../../bluetooth/bluetooth_driver.h"
|
2016-09-22 13:47:14 +00:00
|
|
|
#include "../../wifi/wifi_driver.h"
|
2019-06-26 16:40:00 +00:00
|
|
|
#include "../../playlist.h"
|
2019-11-29 17:13:35 +00:00
|
|
|
#include "../../manual_content_scan.h"
|
2021-05-01 16:33:44 +00:00
|
|
|
#include "../misc/cpufreq/cpufreq.h"
|
2015-05-21 02:11:20 +00:00
|
|
|
|
2017-09-11 02:49:25 +00:00
|
|
|
#ifdef HAVE_NETWORKING
|
2019-07-24 00:02:57 +00:00
|
|
|
#include "../../network/netplay/netplay.h"
|
2017-09-11 02:49:25 +00:00
|
|
|
#endif
|
|
|
|
|
2020-02-24 14:15:37 +00:00
|
|
|
#ifdef HAVE_CHEEVOS
|
2021-06-01 17:59:27 +00:00
|
|
|
#include "../../cheevos/cheevos_menu.h"
|
2020-02-24 14:15:37 +00:00
|
|
|
#endif
|
|
|
|
|
2015-10-11 19:19:18 +00:00
|
|
|
#ifndef BIND_ACTION_GET_VALUE
|
2020-03-28 00:59:15 +00:00
|
|
|
#define BIND_ACTION_GET_VALUE(cbs, name) (cbs)->action_get_value = (name)
|
2015-10-11 19:19:18 +00:00
|
|
|
#endif
|
|
|
|
|
2018-03-31 16:45:36 +00:00
|
|
|
extern struct key_desc key_descriptors[RARCH_MAX_KEYS];
|
2017-09-10 05:04:18 +00:00
|
|
|
|
2019-07-11 09:51:06 +00:00
|
|
|
#ifdef HAVE_AUDIOMIXER
|
2018-05-02 18:13:13 +00:00
|
|
|
static void menu_action_setting_audio_mixer_stream_name(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 01:22:38 +00:00
|
|
|
unsigned offset = (type - MENU_SETTINGS_AUDIO_MIXER_STREAM_BEGIN);
|
|
|
|
*w = 19;
|
2018-05-02 18:13:13 +00:00
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
2019-01-17 02:03:14 +00:00
|
|
|
if (offset >= AUDIO_MIXER_MAX_SYSTEM_STREAMS)
|
2018-05-02 18:13:13 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
strlcpy(s, audio_driver_mixer_get_stream_name(offset), len);
|
|
|
|
}
|
|
|
|
|
2018-04-30 15:51:01 +00:00
|
|
|
static void menu_action_setting_audio_mixer_stream_volume(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
unsigned offset = (type - MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_VOLUME_BEGIN);
|
|
|
|
|
|
|
|
*w = 19;
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
2019-01-17 02:03:14 +00:00
|
|
|
if (offset >= AUDIO_MIXER_MAX_SYSTEM_STREAMS)
|
2018-04-30 15:51:01 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
snprintf(s, len, "%.2f dB", audio_driver_mixer_get_stream_volume(offset));
|
|
|
|
}
|
2019-07-11 09:51:06 +00:00
|
|
|
#endif
|
2018-04-30 15:51:01 +00:00
|
|
|
|
2020-06-30 17:35:41 +00:00
|
|
|
#ifdef HAVE_CHEATS
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_cheat_num_passes(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-12-01 01:43:34 +00:00
|
|
|
snprintf(s, len, "%u", cheat_manager_get_buf_size());
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
2020-06-30 17:35:41 +00:00
|
|
|
#endif
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2020-02-29 11:28:04 +00:00
|
|
|
#ifdef HAVE_CHEEVOS
|
2020-02-24 14:15:37 +00:00
|
|
|
static void menu_action_setting_disp_set_label_cheevos_entry(
|
2019-11-11 02:42:00 +00:00
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
*w = 19;
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
2021-06-01 17:59:27 +00:00
|
|
|
rcheevos_menu_get_state(type - MENU_SETTINGS_CHEEVOS_START, s, len);
|
2017-11-24 01:35:54 +00:00
|
|
|
}
|
2020-02-29 11:28:04 +00:00
|
|
|
#endif
|
2017-11-24 01:35:54 +00:00
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_remap_file_load(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2016-10-01 06:18:23 +00:00
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2017-10-04 04:53:47 +00:00
|
|
|
if (global && !string_is_empty(global->name.remapfile))
|
2016-10-01 06:18:23 +00:00
|
|
|
fill_pathname_base(s, global->name.remapfile,
|
|
|
|
len);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_configurations(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2016-09-17 11:14:14 +00:00
|
|
|
|
2016-09-30 02:43:16 +00:00
|
|
|
if (!path_is_empty(RARCH_PATH_CONFIG))
|
2016-09-29 06:31:41 +00:00
|
|
|
fill_pathname_base(s, path_get(RARCH_PATH_CONFIG),
|
2015-06-02 16:31:44 +00:00
|
|
|
len);
|
2015-02-27 01:50:19 +00:00
|
|
|
else
|
2016-06-19 22:31:13 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT), len);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2019-07-20 22:33:39 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_shader_filter_pass(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2018-02-27 04:07:17 +00:00
|
|
|
struct video_shader *shader = menu_shader_get();
|
|
|
|
struct video_shader_pass *shader_pass = shader ? &shader->pass[type - MENU_SETTINGS_SHADER_PASS_FILTER_0] : NULL;
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2015-06-02 16:31:44 +00:00
|
|
|
*s = '\0';
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2017-01-09 02:14:53 +00:00
|
|
|
if (!shader_pass)
|
2015-02-27 01:50:19 +00:00
|
|
|
return;
|
|
|
|
|
2017-01-09 02:14:53 +00:00
|
|
|
switch (shader_pass->filter)
|
2015-06-21 21:54:57 +00:00
|
|
|
{
|
|
|
|
case 0:
|
2016-06-19 22:31:13 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DONT_CARE),
|
2015-06-21 21:54:57 +00:00
|
|
|
len);
|
|
|
|
break;
|
|
|
|
case 1:
|
2016-06-19 22:31:13 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LINEAR),
|
2015-06-21 21:54:57 +00:00
|
|
|
len);
|
|
|
|
break;
|
|
|
|
case 2:
|
2016-06-19 22:31:13 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NEAREST),
|
2015-06-21 21:54:57 +00:00
|
|
|
len);
|
|
|
|
break;
|
|
|
|
}
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
2018-02-02 20:37:02 +00:00
|
|
|
|
2018-01-25 20:50:57 +00:00
|
|
|
static void menu_action_setting_disp_set_label_shader_watch_for_changes(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 20:15:49 +00:00
|
|
|
menu_file_list_cbs_t *cbs = (menu_file_list_cbs_t*)
|
|
|
|
list->list[i].actiondata;
|
2020-06-30 00:36:55 +00:00
|
|
|
bool val = *cbs->setting->value.target.boolean;
|
2018-01-25 20:50:57 +00:00
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
2020-06-30 00:36:55 +00:00
|
|
|
if (val)
|
2020-02-22 06:21:35 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_TRUE), len);
|
|
|
|
else
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_FALSE), len);
|
2018-01-25 20:50:57 +00:00
|
|
|
}
|
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_shader_num_passes(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2018-02-27 04:07:17 +00:00
|
|
|
struct video_shader *shader = menu_shader_get();
|
|
|
|
unsigned pass_count = shader ? shader->passes : 0;
|
|
|
|
|
2015-06-02 16:31:44 +00:00
|
|
|
*s = '\0';
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2018-02-27 04:07:17 +00:00
|
|
|
snprintf(s, len, "%u", pass_count);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_shader_pass(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2018-02-27 04:07:17 +00:00
|
|
|
struct video_shader *shader = menu_shader_get();
|
|
|
|
struct video_shader_pass *shader_pass = shader ? &shader->pass[type - MENU_SETTINGS_SHADER_PASS_0] : NULL;
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2015-06-02 16:31:44 +00:00
|
|
|
*s = '\0';
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2016-06-19 22:31:13 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), len);
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2017-01-09 02:14:53 +00:00
|
|
|
if (!shader_pass)
|
2015-06-24 04:58:01 +00:00
|
|
|
return;
|
2015-12-10 18:56:08 +00:00
|
|
|
|
2017-01-09 02:14:53 +00:00
|
|
|
if (!string_is_empty(shader_pass->source.path))
|
|
|
|
fill_pathname_base(s, shader_pass->source.path, len);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_shader_default_filter(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 20:15:49 +00:00
|
|
|
menu_file_list_cbs_t *cbs = (menu_file_list_cbs_t*)
|
|
|
|
list->list[i].actiondata;
|
2020-06-30 00:36:55 +00:00
|
|
|
bool val = *cbs->setting->value.target.boolean;
|
2015-03-20 20:22:38 +00:00
|
|
|
|
2015-06-02 16:31:44 +00:00
|
|
|
*s = '\0';
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-21 21:58:50 +00:00
|
|
|
|
2020-06-30 00:36:55 +00:00
|
|
|
if (val)
|
2016-10-30 22:14:13 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LINEAR), len);
|
2015-06-21 21:58:50 +00:00
|
|
|
else
|
2016-06-19 22:31:13 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NEAREST), len);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2019-12-22 21:45:08 +00:00
|
|
|
static void menu_action_setting_disp_set_label_shader_parameter_internal(
|
2015-02-27 01:50:19 +00:00
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2019-12-22 21:45:08 +00:00
|
|
|
char *s2, size_t len2,
|
|
|
|
unsigned offset)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2016-02-14 21:13:21 +00:00
|
|
|
video_shader_ctx_t shader_info;
|
2015-02-27 01:50:19 +00:00
|
|
|
const struct video_shader_parameter *param = NULL;
|
2017-08-11 00:30:23 +00:00
|
|
|
|
2015-06-02 16:31:44 +00:00
|
|
|
*s = '\0';
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2016-05-08 19:11:27 +00:00
|
|
|
video_shader_driver_get_current_shader(&shader_info);
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2016-02-14 21:13:21 +00:00
|
|
|
if (!shader_info.data)
|
2015-02-27 01:50:19 +00:00
|
|
|
return;
|
|
|
|
|
2019-12-22 21:45:08 +00:00
|
|
|
param = &shader_info.data->parameters[type - offset];
|
2015-02-27 01:50:19 +00:00
|
|
|
|
|
|
|
if (!param)
|
|
|
|
return;
|
|
|
|
|
2015-06-02 16:31:44 +00:00
|
|
|
snprintf(s, len, "%.2f [%.2f %.2f]",
|
2015-02-27 01:50:19 +00:00
|
|
|
param->current, param->minimum, param->maximum);
|
|
|
|
}
|
|
|
|
|
2019-12-22 21:45:08 +00:00
|
|
|
static void menu_action_setting_disp_set_label_shader_parameter(
|
2015-02-27 01:50:19 +00:00
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 01:22:38 +00:00
|
|
|
menu_action_setting_disp_set_label_shader_parameter_internal(
|
|
|
|
list, w, type, i,
|
|
|
|
label, s, len, path, s2, len2,
|
|
|
|
MENU_SETTINGS_SHADER_PARAMETER_0);
|
2019-12-22 21:45:08 +00:00
|
|
|
}
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2019-12-22 21:45:08 +00:00
|
|
|
static void menu_action_setting_disp_set_label_shader_preset_parameter(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 01:22:38 +00:00
|
|
|
menu_action_setting_disp_set_label_shader_parameter_internal(
|
|
|
|
list, w, type, i,
|
|
|
|
label, s, len, path, s2, len2,
|
|
|
|
MENU_SETTINGS_SHADER_PRESET_PARAMETER_0);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_shader_scale_pass(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2018-02-27 04:07:17 +00:00
|
|
|
unsigned scale_value = 0;
|
|
|
|
struct video_shader *shader = menu_shader_get();
|
|
|
|
struct video_shader_pass *shader_pass = shader ? &shader->pass[type - MENU_SETTINGS_SHADER_PASS_SCALE_0] : NULL;
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2015-06-02 16:31:44 +00:00
|
|
|
*s = '\0';
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2017-01-09 02:14:53 +00:00
|
|
|
if (!shader_pass)
|
2015-02-27 01:50:19 +00:00
|
|
|
return;
|
|
|
|
|
2017-01-09 02:14:53 +00:00
|
|
|
scale_value = shader_pass->fbo.scale_x;
|
2015-02-27 01:50:19 +00:00
|
|
|
|
|
|
|
if (!scale_value)
|
2016-06-19 22:31:13 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DONT_CARE), len);
|
2015-02-27 01:50:19 +00:00
|
|
|
else
|
2015-06-02 16:31:44 +00:00
|
|
|
snprintf(s, len, "%ux", scale_value);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
2019-07-20 22:33:39 +00:00
|
|
|
#endif
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2020-07-19 20:44:46 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_NETWORKING
|
|
|
|
static void menu_action_setting_disp_set_label_netplay_mitm_server(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
unsigned j;
|
|
|
|
menu_file_list_cbs_t *cbs = (menu_file_list_cbs_t*)
|
|
|
|
list->list[i].actiondata;
|
|
|
|
const char *netplay_mitm_server = cbs->setting->value.target.string;
|
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
|
|
|
if (string_is_empty(netplay_mitm_server))
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (j = 0; j < ARRAY_SIZE(netplay_mitm_server_list); j++)
|
|
|
|
{
|
|
|
|
if (string_is_equal(netplay_mitm_server,
|
|
|
|
netplay_mitm_server_list[j].name))
|
|
|
|
strlcpy(s, netplay_mitm_server_list[j].description, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_menu_file_core(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2021-03-10 07:36:59 +00:00
|
|
|
const char *alt = list->list[i].alt
|
2021-03-10 04:23:50 +00:00
|
|
|
? list->list[i].alt
|
|
|
|
: list->list[i].path;
|
2021-04-05 19:17:54 +00:00
|
|
|
s[0] = '(';
|
|
|
|
s[1] = 'C';
|
|
|
|
s[2] = 'O';
|
|
|
|
s[3] = 'R';
|
|
|
|
s[4] = 'E';
|
|
|
|
s[5] = ')';
|
|
|
|
s[6] = '\0';
|
|
|
|
*w = (unsigned)STRLEN_CONST("(CORE)");
|
2015-02-27 01:50:19 +00:00
|
|
|
if (alt)
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, alt, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2020-05-28 16:48:18 +00:00
|
|
|
#ifdef HAVE_NETWORKING
|
|
|
|
static void menu_action_setting_disp_set_label_core_updater_entry(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
core_updater_list_t *core_list = core_updater_list_get_cached();
|
|
|
|
const core_updater_list_entry_t *entry = NULL;
|
2021-03-10 07:36:59 +00:00
|
|
|
const char *alt = list->list[i].alt
|
2021-03-10 04:23:50 +00:00
|
|
|
? list->list[i].alt
|
|
|
|
: list->list[i].path;
|
2021-03-10 07:36:59 +00:00
|
|
|
*s = '\0';
|
|
|
|
*w = 0;
|
2020-05-28 16:48:18 +00:00
|
|
|
|
|
|
|
if (alt)
|
|
|
|
strlcpy(s2, alt, len2);
|
|
|
|
|
|
|
|
/* Search for specified core */
|
|
|
|
if (core_list &&
|
|
|
|
core_updater_list_get_filename(core_list, path, &entry) &&
|
|
|
|
!string_is_empty(entry->local_core_path))
|
|
|
|
{
|
2021-04-26 13:24:24 +00:00
|
|
|
core_info_t *core_info = NULL;
|
2020-05-28 16:48:18 +00:00
|
|
|
|
|
|
|
/* Check whether core is installed
|
|
|
|
* > Note: We search core_info here instead
|
|
|
|
* of calling path_is_valid() since we don't
|
|
|
|
* want to perform disk access every frame */
|
2021-04-26 13:24:24 +00:00
|
|
|
if (core_info_find(entry->local_core_path, &core_info))
|
2020-05-28 16:48:18 +00:00
|
|
|
{
|
2020-06-18 16:08:57 +00:00
|
|
|
/* Highlight locked cores */
|
2021-04-26 13:24:24 +00:00
|
|
|
if (core_info->is_locked)
|
2020-06-18 16:08:57 +00:00
|
|
|
{
|
2021-04-05 19:17:54 +00:00
|
|
|
s[0] = '[';
|
|
|
|
s[1] = '#';
|
|
|
|
s[2] = '!';
|
|
|
|
s[3] = ']';
|
|
|
|
s[4] = '\0';
|
|
|
|
*w = (unsigned)STRLEN_CONST("[#!]");
|
2020-06-18 16:08:57 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-04-05 19:17:54 +00:00
|
|
|
s[0] = '[';
|
|
|
|
s[1] = '#';
|
|
|
|
s[2] = ']';
|
|
|
|
s[3] = '\0';
|
|
|
|
*w = (unsigned)STRLEN_CONST("[#]");
|
2020-06-18 16:08:57 +00:00
|
|
|
}
|
2020-05-28 16:48:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-06-11 13:12:20 +00:00
|
|
|
static void menu_action_setting_disp_set_label_core_manager_entry(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2021-04-26 13:24:24 +00:00
|
|
|
core_info_t *core_info = NULL;
|
|
|
|
const char *alt = list->list[i].alt
|
|
|
|
? list->list[i].alt
|
|
|
|
: list->list[i].path;
|
|
|
|
*s = '\0';
|
|
|
|
*w = 0;
|
2020-06-11 13:12:20 +00:00
|
|
|
|
|
|
|
if (alt)
|
|
|
|
strlcpy(s2, alt, len2);
|
|
|
|
|
2020-06-18 16:08:57 +00:00
|
|
|
/* Check whether core is locked
|
|
|
|
* > Note: We search core_info here instead of
|
|
|
|
* calling core_info_get_core_lock() since we
|
|
|
|
* don't want to perform disk access every frame */
|
2021-04-26 13:24:24 +00:00
|
|
|
if (core_info_find(path, &core_info) &&
|
|
|
|
core_info->is_locked)
|
2020-06-18 16:08:57 +00:00
|
|
|
{
|
2021-04-05 19:17:54 +00:00
|
|
|
s[0] = '[';
|
|
|
|
s[1] = '!';
|
|
|
|
s[2] = ']';
|
|
|
|
s[3] = '\0';
|
|
|
|
*w = (unsigned)STRLEN_CONST("[!]");
|
2020-06-18 16:08:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-07 18:58:30 +00:00
|
|
|
#ifndef HAVE_LAKKA_SWITCH
|
2021-05-01 16:33:44 +00:00
|
|
|
#ifdef HAVE_LAKKA
|
2021-05-12 00:16:25 +00:00
|
|
|
static void menu_action_setting_disp_cpu_gov_mode(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
const char *alt = list->list[i].alt
|
|
|
|
? list->list[i].alt
|
|
|
|
: list->list[i].path;
|
|
|
|
enum cpu_scaling_mode mode = get_cpu_scaling_mode(NULL);
|
|
|
|
|
|
|
|
if (alt)
|
|
|
|
strlcpy(s2, alt, len2);
|
|
|
|
|
|
|
|
strlcpy(s, msg_hash_to_str(
|
|
|
|
MENU_ENUM_LABEL_VALUE_CPU_PERF_MODE_MANAGED_PERF + (int)mode), len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_cpu_gov_choose(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
const char *alt = list->list[i].alt
|
|
|
|
? list->list[i].alt
|
|
|
|
: list->list[i].path;
|
|
|
|
int fnum = atoi(list->list[i].label);
|
|
|
|
cpu_scaling_opts_t opts;
|
|
|
|
enum cpu_scaling_mode mode = get_cpu_scaling_mode(&opts);
|
|
|
|
|
|
|
|
if (alt)
|
|
|
|
strlcpy(s2, alt, len2);
|
|
|
|
|
|
|
|
if (!fnum)
|
|
|
|
strlcpy(s, opts.main_policy, len);
|
|
|
|
else
|
|
|
|
strlcpy(s, opts.menu_policy, len);
|
|
|
|
}
|
|
|
|
|
2021-05-01 16:33:44 +00:00
|
|
|
static void menu_action_setting_disp_set_label_cpu_policy(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
unsigned policyid = atoi(path);
|
|
|
|
cpu_scaling_driver_t **drivers = get_cpu_scaling_drivers(false);
|
|
|
|
cpu_scaling_driver_t *d = drivers[policyid];
|
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
*w = 0;
|
|
|
|
|
|
|
|
if (d->affected_cpus)
|
|
|
|
snprintf(s2, len2, "%s %d [CPU(s) %s]", msg_hash_to_str(
|
|
|
|
MENU_ENUM_LABEL_VALUE_CPU_POLICY_ENTRY), policyid,
|
|
|
|
d->affected_cpus);
|
|
|
|
else
|
|
|
|
snprintf(s2, len2, "%s %d", msg_hash_to_str(
|
|
|
|
MENU_ENUM_LABEL_VALUE_CPU_POLICY_ENTRY), policyid);
|
|
|
|
}
|
|
|
|
|
2021-05-12 00:16:25 +00:00
|
|
|
static void menu_action_cpu_managed_freq_label(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
uint32_t freq = 0;
|
|
|
|
cpu_scaling_opts_t opts;
|
|
|
|
enum cpu_scaling_mode mode = get_cpu_scaling_mode(&opts);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case MENU_SETTINGS_CPU_MANAGED_SET_MINFREQ:
|
|
|
|
strlcpy(s2, msg_hash_to_str(
|
|
|
|
MENU_ENUM_LABEL_VALUE_CPU_MANAGED_MIN_FREQ), len2);
|
|
|
|
freq = opts.min_freq;
|
|
|
|
break;
|
|
|
|
case MENU_SETTINGS_CPU_MANAGED_SET_MAXFREQ:
|
|
|
|
strlcpy(s2, msg_hash_to_str(
|
|
|
|
MENU_ENUM_LABEL_VALUE_CPU_MANAGED_MAX_FREQ), len2);
|
|
|
|
freq = opts.max_freq;
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (freq == 1)
|
|
|
|
strlcpy(s, "Min.", len);
|
|
|
|
else if (freq == ~0U)
|
|
|
|
strlcpy(s, "Max.", len);
|
|
|
|
else
|
|
|
|
snprintf(s, len, "%u MHz", freq / 1000);
|
|
|
|
}
|
|
|
|
|
2021-05-01 16:33:44 +00:00
|
|
|
static void menu_action_cpu_freq_label(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
unsigned policyid = atoi(path);
|
|
|
|
cpu_scaling_driver_t **drivers = get_cpu_scaling_drivers(false);
|
|
|
|
cpu_scaling_driver_t *d = drivers[policyid];
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case MENU_SETTINGS_CPU_POLICY_SET_MINFREQ:
|
|
|
|
strlcpy(s2, msg_hash_to_str(
|
|
|
|
MENU_ENUM_LABEL_VALUE_CPU_POLICY_MIN_FREQ), len2);
|
|
|
|
snprintf(s, len, "%u MHz", d->min_policy_freq / 1000);
|
|
|
|
break;
|
|
|
|
case MENU_SETTINGS_CPU_POLICY_SET_MAXFREQ:
|
|
|
|
strlcpy(s2, msg_hash_to_str(
|
|
|
|
MENU_ENUM_LABEL_VALUE_CPU_POLICY_MAX_FREQ), len2);
|
|
|
|
snprintf(s, len, "%u MHz", d->max_policy_freq / 1000);
|
|
|
|
break;
|
|
|
|
case MENU_SETTINGS_CPU_POLICY_SET_GOVERNOR:
|
|
|
|
strlcpy(s2, msg_hash_to_str(
|
|
|
|
MENU_ENUM_LABEL_VALUE_CPU_POLICY_GOVERNOR), len2);
|
|
|
|
strlcpy(s, d->scaling_governor, len);
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_cpu_governor_label(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
unsigned policyid = atoi(path);
|
|
|
|
cpu_scaling_driver_t **drivers = get_cpu_scaling_drivers(false);
|
|
|
|
cpu_scaling_driver_t *d = drivers[policyid];
|
|
|
|
|
|
|
|
strlcpy(s2, msg_hash_to_str(
|
|
|
|
MENU_ENUM_LABEL_VALUE_CPU_POLICY_GOVERNOR), len2);
|
|
|
|
strlcpy(s, d->scaling_governor, len);
|
|
|
|
}
|
|
|
|
#endif
|
2021-05-07 18:58:30 +00:00
|
|
|
#endif
|
2021-05-01 16:33:44 +00:00
|
|
|
|
2020-06-18 16:08:57 +00:00
|
|
|
static void menu_action_setting_disp_set_label_core_lock(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2021-04-26 13:24:24 +00:00
|
|
|
core_info_t *core_info = NULL;
|
|
|
|
const char *alt = list->list[i].alt
|
|
|
|
? list->list[i].alt
|
|
|
|
: list->list[i].path;
|
|
|
|
*s = '\0';
|
|
|
|
*w = 0;
|
2020-06-18 16:08:57 +00:00
|
|
|
|
|
|
|
if (alt)
|
|
|
|
strlcpy(s2, alt, len2);
|
|
|
|
|
|
|
|
/* Check whether core is locked
|
|
|
|
* > Note: We search core_info here instead of
|
|
|
|
* calling core_info_get_core_lock() since we
|
|
|
|
* don't want to perform disk access every frame */
|
2021-04-26 13:24:24 +00:00
|
|
|
if (core_info_find(path, &core_info) &&
|
|
|
|
core_info->is_locked)
|
2020-06-18 16:08:57 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ON), len);
|
|
|
|
else
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF), len);
|
|
|
|
|
|
|
|
*w = (unsigned)strlen(s);
|
2020-06-11 13:12:20 +00:00
|
|
|
}
|
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_input_desc(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 01:22:38 +00:00
|
|
|
unsigned remap_idx;
|
2021-06-17 16:45:24 +00:00
|
|
|
unsigned mapped_port;
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char* descriptor = NULL;
|
|
|
|
unsigned user_idx = (type - MENU_SETTINGS_INPUT_DESC_BEGIN) / (RARCH_FIRST_CUSTOM_BIND + 8);
|
|
|
|
unsigned btn_idx = (type - MENU_SETTINGS_INPUT_DESC_BEGIN) - (RARCH_FIRST_CUSTOM_BIND + 8) * user_idx;
|
2018-04-02 01:57:33 +00:00
|
|
|
|
|
|
|
if (!settings)
|
2018-04-02 05:08:40 +00:00
|
|
|
return;
|
2018-04-02 01:57:33 +00:00
|
|
|
|
2021-06-17 16:45:24 +00:00
|
|
|
mapped_port = settings->uints.input_remap_ports[user_idx];
|
|
|
|
remap_idx = settings->uints.input_remap_ids[user_idx][btn_idx];
|
2018-09-15 05:21:03 +00:00
|
|
|
|
|
|
|
if (remap_idx != RARCH_UNMAPPED)
|
2021-09-21 17:08:26 +00:00
|
|
|
descriptor = runloop_state_get_ptr()->system.input_desc_btn[mapped_port][remap_idx];
|
2016-10-26 01:19:46 +00:00
|
|
|
|
2021-04-05 19:17:54 +00:00
|
|
|
s[0] = '-';
|
|
|
|
s[1] = '-';
|
|
|
|
s[2] = '-';
|
|
|
|
s[3] = '\0';
|
2020-06-30 01:22:38 +00:00
|
|
|
|
|
|
|
if (!string_is_empty(descriptor))
|
2018-04-08 04:43:41 +00:00
|
|
|
{
|
2020-06-30 01:22:38 +00:00
|
|
|
if (remap_idx < RARCH_FIRST_CUSTOM_BIND)
|
|
|
|
strlcpy(s, descriptor, len);
|
2021-03-23 23:25:24 +00:00
|
|
|
else if (!string_is_empty(descriptor) && remap_idx % 2 == 0)
|
2020-06-30 01:22:38 +00:00
|
|
|
snprintf(s, len, "%s %c", descriptor, '+');
|
2021-03-23 23:25:24 +00:00
|
|
|
else if (remap_idx % 2 != 0)
|
2020-06-30 01:22:38 +00:00
|
|
|
snprintf(s, len, "%s %c", descriptor, '-');
|
2018-04-08 04:43:41 +00:00
|
|
|
}
|
2018-04-03 02:12:05 +00:00
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2017-09-10 05:04:18 +00:00
|
|
|
static void menu_action_setting_disp_set_label_input_desc_kbd(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2017-09-10 16:30:10 +00:00
|
|
|
char desc[PATH_MAX_LENGTH];
|
2018-05-13 11:31:55 +00:00
|
|
|
unsigned key_id, btn_idx;
|
2017-09-18 14:39:28 +00:00
|
|
|
unsigned remap_id;
|
2021-06-17 16:45:24 +00:00
|
|
|
unsigned user_idx;
|
2018-03-28 22:45:05 +00:00
|
|
|
|
2017-09-18 14:39:28 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2017-09-10 05:04:18 +00:00
|
|
|
|
|
|
|
if (!settings)
|
|
|
|
return;
|
|
|
|
|
2021-06-10 15:00:33 +00:00
|
|
|
user_idx = (type - MENU_SETTINGS_INPUT_DESC_KBD_BEGIN) / RARCH_ANALOG_BIND_LIST_END;
|
|
|
|
btn_idx = (type - MENU_SETTINGS_INPUT_DESC_KBD_BEGIN) - RARCH_ANALOG_BIND_LIST_END * user_idx;
|
2021-06-17 16:45:24 +00:00
|
|
|
remap_id = settings->uints.input_keymapper_ids[user_idx][btn_idx];
|
2018-03-28 22:45:05 +00:00
|
|
|
|
2018-04-12 19:20:38 +00:00
|
|
|
for (key_id = 0; key_id < RARCH_MAX_KEYS - 1; key_id++)
|
2017-09-10 05:04:18 +00:00
|
|
|
{
|
2018-09-23 10:10:33 +00:00
|
|
|
if (remap_id == key_descriptors[key_id].key)
|
2017-09-10 16:30:10 +00:00
|
|
|
break;
|
2017-09-10 05:04:18 +00:00
|
|
|
}
|
2018-03-31 16:13:00 +00:00
|
|
|
|
|
|
|
if (key_descriptors[key_id].key != RETROK_FIRST)
|
|
|
|
{
|
|
|
|
snprintf(desc, sizeof(desc), "Keyboard %s", key_descriptors[key_id].desc);
|
|
|
|
strlcpy(s, desc, len);
|
|
|
|
}
|
|
|
|
else
|
2021-04-05 19:17:54 +00:00
|
|
|
{
|
|
|
|
s[0] = '-';
|
|
|
|
s[1] = '-';
|
|
|
|
s[2] = '-';
|
|
|
|
s[3] = '\0';
|
|
|
|
}
|
2017-09-10 05:04:18 +00:00
|
|
|
|
|
|
|
*w = 19;
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
}
|
|
|
|
|
2020-06-30 17:35:41 +00:00
|
|
|
#ifdef HAVE_CHEATS
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_cheat(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
|
|
|
unsigned cheat_index = type - MENU_SETTINGS_CHEAT_BEGIN;
|
|
|
|
|
2015-12-01 01:43:34 +00:00
|
|
|
if (cheat_index < cheat_manager_get_buf_size())
|
2018-07-25 23:19:14 +00:00
|
|
|
{
|
2018-09-23 10:10:33 +00:00
|
|
|
if (cheat_manager_state.cheats[cheat_index].handler == CHEAT_HANDLER_TYPE_EMU)
|
2018-08-09 12:52:35 +00:00
|
|
|
snprintf(s, len, "(%s) : %s",
|
2018-07-25 23:19:14 +00:00
|
|
|
cheat_manager_get_code_state(cheat_index) ?
|
|
|
|
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ON) :
|
2018-08-09 12:52:35 +00:00
|
|
|
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF),
|
2018-09-25 13:43:40 +00:00
|
|
|
cheat_manager_get_code(cheat_index)
|
2018-08-14 17:29:58 +00:00
|
|
|
? cheat_manager_get_code(cheat_index) :
|
2018-08-09 12:52:35 +00:00
|
|
|
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE)
|
2018-07-25 23:19:14 +00:00
|
|
|
);
|
|
|
|
else
|
2018-08-09 12:52:35 +00:00
|
|
|
snprintf(s, len, "(%s) : %08X",
|
2018-07-25 23:19:14 +00:00
|
|
|
cheat_manager_get_code_state(cheat_index) ?
|
|
|
|
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ON) :
|
2018-08-09 12:52:35 +00:00
|
|
|
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF),
|
|
|
|
cheat_manager_state.cheats[cheat_index].address
|
2018-07-25 23:19:14 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
*w = 19;
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_cheat_match(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 01:22:38 +00:00
|
|
|
unsigned int address = 0;
|
2018-07-25 23:19:14 +00:00
|
|
|
unsigned int address_mask = 0;
|
2020-06-30 01:22:38 +00:00
|
|
|
unsigned int prev_val = 0;
|
|
|
|
unsigned int curr_val = 0;
|
2018-09-23 10:49:48 +00:00
|
|
|
cheat_manager_match_action(CHEAT_MATCH_ACTION_TYPE_VIEW, cheat_manager_state.match_idx, &address, &address_mask, &prev_val, &curr_val);
|
2018-07-25 23:19:14 +00:00
|
|
|
|
2018-09-23 10:49:48 +00:00
|
|
|
snprintf(s, len, "Prev: %u Curr: %u", prev_val, curr_val);
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
2020-06-30 17:35:41 +00:00
|
|
|
#endif
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2015-05-17 17:21:15 +00:00
|
|
|
static void menu_action_setting_disp_set_label_perf_counters_common(
|
2015-10-11 16:21:07 +00:00
|
|
|
struct retro_perf_counter **counters,
|
2015-06-02 16:31:44 +00:00
|
|
|
unsigned offset, char *s, size_t len
|
2015-05-17 17:21:15 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
if (!counters[offset])
|
|
|
|
return;
|
|
|
|
if (!counters[offset]->call_cnt)
|
|
|
|
return;
|
|
|
|
|
2015-06-02 16:31:44 +00:00
|
|
|
snprintf(s, len,
|
2017-11-27 16:16:38 +00:00
|
|
|
"%" PRIu64 " ticks, %" PRIu64 " runs.",
|
2017-09-05 20:39:12 +00:00
|
|
|
((uint64_t)counters[offset]->total /
|
|
|
|
(uint64_t)counters[offset]->call_cnt),
|
|
|
|
(uint64_t)counters[offset]->call_cnt);
|
2015-05-17 17:21:15 +00:00
|
|
|
}
|
|
|
|
|
2015-09-03 18:21:12 +00:00
|
|
|
static void general_disp_set_label_perf_counters(
|
2015-10-11 16:21:07 +00:00
|
|
|
struct retro_perf_counter **counters,
|
2015-09-03 18:21:12 +00:00
|
|
|
unsigned offset,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-09-03 18:21:12 +00:00
|
|
|
char *s2, size_t len2,
|
|
|
|
const char *path, unsigned *w
|
|
|
|
)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-10-14 02:40:20 +00:00
|
|
|
gfx_animation_t *p_anim = anim_get_ptr();
|
2015-06-02 16:31:44 +00:00
|
|
|
*s = '\0';
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2015-05-17 17:21:15 +00:00
|
|
|
menu_action_setting_disp_set_label_perf_counters_common(
|
2015-06-02 16:31:44 +00:00
|
|
|
counters, offset, s, len);
|
2020-10-14 02:40:20 +00:00
|
|
|
GFX_ANIMATION_CLEAR_ACTIVE(p_anim);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2015-09-03 18:21:12 +00:00
|
|
|
static void menu_action_setting_disp_set_label_perf_counters(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2015-10-11 16:21:07 +00:00
|
|
|
struct retro_perf_counter **counters = retro_get_perf_counter_rarch();
|
2015-09-03 18:21:12 +00:00
|
|
|
unsigned offset = type - MENU_SETTINGS_PERF_COUNTERS_BEGIN;
|
|
|
|
general_disp_set_label_perf_counters(counters, offset, s, len,
|
|
|
|
s2, len, path, w);
|
|
|
|
}
|
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_libretro_perf_counters(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2015-10-11 16:21:07 +00:00
|
|
|
struct retro_perf_counter **counters = retro_get_perf_counter_libretro();
|
2015-02-27 01:50:19 +00:00
|
|
|
unsigned offset = type - MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN;
|
2015-09-03 18:21:12 +00:00
|
|
|
general_disp_set_label_perf_counters(counters, offset, s, len,
|
|
|
|
s2, len, path, w);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_more(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2016-07-16 22:52:56 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_MORE), len);
|
2015-07-09 20:24:48 +00:00
|
|
|
*w = 19;
|
2017-10-04 04:53:47 +00:00
|
|
|
if (!string_is_empty(path))
|
2017-09-29 19:19:07 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2016-10-23 01:44:09 +00:00
|
|
|
static void menu_action_setting_disp_set_label_db_entry(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_MORE), len);
|
|
|
|
*w = 10;
|
2017-10-04 04:53:47 +00:00
|
|
|
if (!string_is_empty(path))
|
2017-09-29 19:19:07 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2016-10-23 01:44:09 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 21:31:38 +00:00
|
|
|
static void menu_action_setting_disp_set_label_entry_url(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2019-05-13 02:27:03 +00:00
|
|
|
const char *representation_label = list->list[i].alt
|
|
|
|
? list->list[i].alt
|
|
|
|
: list->list[i].path;
|
2017-12-16 21:31:38 +00:00
|
|
|
*s = '\0';
|
|
|
|
*w = 8;
|
|
|
|
|
|
|
|
if (!string_is_empty(representation_label))
|
|
|
|
strlcpy(s2, representation_label, len2);
|
|
|
|
else
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
}
|
|
|
|
|
2016-10-23 02:21:17 +00:00
|
|
|
static void menu_action_setting_disp_set_label_entry(
|
2016-10-23 02:18:18 +00:00
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
*s = '\0';
|
|
|
|
*w = 8;
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
}
|
|
|
|
|
2020-06-17 11:56:44 +00:00
|
|
|
static void menu_action_setting_disp_set_label_bluetooth_is_connected(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
if (driver_bluetooth_device_is_connected(i))
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_BT_CONNECTED), len);
|
|
|
|
}
|
|
|
|
|
2016-09-22 13:47:14 +00:00
|
|
|
static void menu_action_setting_disp_set_label_wifi_is_online(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
if (driver_wifi_ssid_is_online(i))
|
2016-11-08 00:21:21 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ONLINE), len);
|
2016-09-22 13:47:14 +00:00
|
|
|
}
|
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_menu_disk_index(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-01-22 17:07:50 +00:00
|
|
|
unsigned images = 0;
|
|
|
|
unsigned current = 0;
|
2021-09-21 17:08:26 +00:00
|
|
|
rarch_system_info_t *system = &runloop_state_get_ptr()->system;
|
2015-06-25 13:25:08 +00:00
|
|
|
|
|
|
|
if (!system)
|
|
|
|
return;
|
|
|
|
|
2020-01-22 17:07:50 +00:00
|
|
|
if (!disk_control_enabled(&system->disk_control))
|
2015-06-25 07:22:01 +00:00
|
|
|
return;
|
2015-02-27 01:50:19 +00:00
|
|
|
|
|
|
|
*w = 19;
|
2015-06-02 16:31:44 +00:00
|
|
|
*s = '\0';
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2020-01-22 17:07:50 +00:00
|
|
|
images = disk_control_get_num_images(&system->disk_control);
|
|
|
|
current = disk_control_get_image_index(&system->disk_control);
|
2015-02-27 01:50:19 +00:00
|
|
|
|
|
|
|
if (current >= images)
|
2016-06-19 22:31:13 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_DISK), len);
|
2015-02-27 01:50:19 +00:00
|
|
|
else
|
2015-06-02 16:31:44 +00:00
|
|
|
snprintf(s, len, "%u", current + 1);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_video_resolution(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
|
|
|
unsigned width = 0, height = 0;
|
2021-09-07 18:25:22 +00:00
|
|
|
char desc[64] = {0};
|
2015-02-27 01:50:19 +00:00
|
|
|
*w = 19;
|
2015-06-02 16:31:44 +00:00
|
|
|
*s = '\0';
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-03-08 04:48:29 +00:00
|
|
|
|
2021-09-07 18:25:22 +00:00
|
|
|
if (video_driver_get_video_output_size(&width, &height, desc, sizeof(desc)))
|
2016-02-12 21:58:59 +00:00
|
|
|
{
|
|
|
|
#ifdef GEKKO
|
|
|
|
if (width == 0 || height == 0)
|
2020-09-19 21:59:06 +00:00
|
|
|
strcpy_literal(s, "DEFAULT");
|
2016-02-12 21:58:59 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
snprintf(s, len, "%ux%u", width, height);
|
2021-09-07 18:25:22 +00:00
|
|
|
/* Add video output description if exists */
|
|
|
|
if (!string_is_empty(desc))
|
|
|
|
snprintf(s, len, "%s - %s", s, desc);
|
2016-02-12 21:58:59 +00:00
|
|
|
}
|
2015-02-27 01:50:19 +00:00
|
|
|
else
|
2016-06-19 22:31:13 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), len);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2020-06-30 18:55:05 +00:00
|
|
|
#define MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len, path, label, label_size, s2, len2) \
|
2020-06-30 01:22:38 +00:00
|
|
|
*s = '\0'; \
|
2020-06-30 18:55:05 +00:00
|
|
|
strlcpy(s, label, len); \
|
|
|
|
*w = label_size; \
|
2020-06-30 01:22:38 +00:00
|
|
|
strlcpy(s2, path, len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_plain(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(FILE)", STRLEN_CONST("(FILE)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2015-06-28 15:21:32 +00:00
|
|
|
static void menu_action_setting_disp_set_label_menu_file_imageviewer(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(IMAGE)", STRLEN_CONST("(IMAGE)"), s2, len2);
|
2015-06-28 15:21:32 +00:00
|
|
|
}
|
|
|
|
|
2015-06-23 04:13:57 +00:00
|
|
|
static void menu_action_setting_disp_set_label_movie(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(MOVIE)", STRLEN_CONST("(MOVIE)"), s2, len2);
|
2015-06-23 04:13:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_music(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(MUSIC)", STRLEN_CONST("(MUSIC)"), s2, len2);
|
2015-06-23 04:13:57 +00:00
|
|
|
}
|
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_menu_file_directory(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(DIR)", STRLEN_CONST("(DIR)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2020-06-30 01:22:38 +00:00
|
|
|
static void menu_action_setting_disp_set_label_generic(
|
2015-10-25 07:31:55 +00:00
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
*s = '\0';
|
2021-04-05 19:17:54 +00:00
|
|
|
*w = 0;
|
2020-06-30 18:55:05 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-10-25 07:31:55 +00:00
|
|
|
}
|
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_menu_file_carchive(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(COMP)", STRLEN_CONST("(COMP)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_shader(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(SHADER)", STRLEN_CONST("(SHADER)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_shader_preset(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(PRESET)", STRLEN_CONST("(PRESET)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_in_carchive(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(CFILE)", STRLEN_CONST("(CFILE)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_overlay(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(OVERLAY)", STRLEN_CONST("(OVERLAY)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2019-03-31 00:17:08 +00:00
|
|
|
#ifdef HAVE_VIDEO_LAYOUT
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_video_layout(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(LAYOUT)", STRLEN_CONST("(LAYOUT)"), s2, len2);
|
2019-03-31 00:17:08 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-02-27 01:50:19 +00:00
|
|
|
static void menu_action_setting_disp_set_label_menu_file_config(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(CONFIG)", STRLEN_CONST("(CONFIG)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_font(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(FONT)", STRLEN_CONST("(FONT)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_filter(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(FILTER)", STRLEN_CONST("(FILTER)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_rdb(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(RDB)", STRLEN_CONST("(RDB)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_cursor(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(CURSOR)", STRLEN_CONST("(CURSOR)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_menu_file_cheat(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
2015-06-02 16:31:44 +00:00
|
|
|
char *s, size_t len,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path,
|
2015-06-03 15:16:47 +00:00
|
|
|
char *s2, size_t len2)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2020-06-30 18:55:05 +00:00
|
|
|
MENU_ACTION_SETTING_GENERIC_DISP_SET_LABEL_2(w, s, len,
|
|
|
|
path, "(CHEAT)", STRLEN_CONST("(CHEAT)"), s2, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2021-02-24 17:41:40 +00:00
|
|
|
static void menu_action_setting_disp_set_label_core_option_override_info(
|
2015-11-19 05:55:12 +00:00
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2021-02-24 17:41:40 +00:00
|
|
|
const char *override_path = path_get(RARCH_PATH_CORE_OPTIONS);
|
|
|
|
core_option_manager_t *coreopts = NULL;
|
|
|
|
const char *options_file = NULL;
|
|
|
|
|
2015-11-19 05:55:12 +00:00
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
|
2021-02-24 17:41:40 +00:00
|
|
|
if (!string_is_empty(override_path))
|
2021-04-11 16:46:50 +00:00
|
|
|
options_file = path_basename_nocompression(override_path);
|
2021-09-28 10:56:10 +00:00
|
|
|
else if (retroarch_ctl(RARCH_CTL_CORE_OPTIONS_LIST_GET, &coreopts))
|
2021-02-24 17:41:40 +00:00
|
|
|
{
|
|
|
|
const char *options_path = coreopts->conf_path;
|
|
|
|
if (!string_is_empty(options_path))
|
2021-04-11 16:46:50 +00:00
|
|
|
options_file = path_basename_nocompression(options_path);
|
2021-02-24 17:41:40 +00:00
|
|
|
}
|
2015-11-19 05:55:12 +00:00
|
|
|
|
2021-02-24 17:41:40 +00:00
|
|
|
if (!string_is_empty(options_file))
|
|
|
|
strlcpy(s, options_file, len);
|
|
|
|
else
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), len);
|
2015-11-19 05:55:12 +00:00
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
}
|
|
|
|
|
2016-05-18 19:21:58 +00:00
|
|
|
static void menu_action_setting_disp_set_label_playlist_associations(file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2019-06-26 16:40:00 +00:00
|
|
|
playlist_t *playlist = playlist_get_cached();
|
|
|
|
const char *core_name = NULL;
|
2016-05-26 04:50:57 +00:00
|
|
|
|
2016-05-18 19:21:58 +00:00
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
|
2019-06-26 16:40:00 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2016-05-18 19:21:58 +00:00
|
|
|
|
2019-06-26 16:40:00 +00:00
|
|
|
if (!playlist)
|
|
|
|
return;
|
2016-05-18 19:21:58 +00:00
|
|
|
|
2019-06-26 16:40:00 +00:00
|
|
|
core_name = playlist_get_default_core_name(playlist);
|
2016-05-18 19:21:58 +00:00
|
|
|
|
2019-06-26 16:40:00 +00:00
|
|
|
if (!string_is_empty(core_name) &&
|
2019-09-18 16:12:57 +00:00
|
|
|
!string_is_equal(core_name, "DETECT"))
|
2019-06-26 16:40:00 +00:00
|
|
|
strlcpy(s, core_name, len);
|
2016-05-18 19:21:58 +00:00
|
|
|
else
|
2019-06-26 16:40:00 +00:00
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), len);
|
2016-05-18 19:22:58 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 19:13:14 +00:00
|
|
|
static void menu_action_setting_disp_set_label_playlist_label_display_mode(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2019-07-28 13:52:48 +00:00
|
|
|
enum playlist_label_display_mode label_display_mode;
|
2019-07-18 19:13:14 +00:00
|
|
|
playlist_t *playlist = playlist_get_cached();
|
2019-07-28 13:52:48 +00:00
|
|
|
|
|
|
|
if (!playlist)
|
|
|
|
return;
|
|
|
|
|
|
|
|
label_display_mode = playlist_get_label_display_mode(playlist);
|
2019-07-18 19:13:14 +00:00
|
|
|
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
2019-07-29 11:56:20 +00:00
|
|
|
switch (label_display_mode)
|
|
|
|
{
|
|
|
|
case LABEL_DISPLAY_MODE_REMOVE_PARENTHESES :
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_LABEL_DISPLAY_MODE_REMOVE_PARENS), len);
|
|
|
|
break;
|
|
|
|
case LABEL_DISPLAY_MODE_REMOVE_BRACKETS :
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_LABEL_DISPLAY_MODE_REMOVE_BRACKETS), len);
|
|
|
|
break;
|
|
|
|
case LABEL_DISPLAY_MODE_REMOVE_PARENTHESES_AND_BRACKETS :
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_LABEL_DISPLAY_MODE_REMOVE_PARENS_AND_BRACKETS), len);
|
|
|
|
break;
|
|
|
|
case LABEL_DISPLAY_MODE_KEEP_DISC_INDEX :
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_LABEL_DISPLAY_MODE_KEEP_DISC_INDEX), len);
|
|
|
|
break;
|
|
|
|
case LABEL_DISPLAY_MODE_KEEP_REGION :
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_LABEL_DISPLAY_MODE_KEEP_REGION), len);
|
|
|
|
break;
|
|
|
|
case LABEL_DISPLAY_MODE_KEEP_REGION_AND_DISC_INDEX :
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_LABEL_DISPLAY_MODE_KEEP_REGION_AND_DISC_INDEX), len);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_LABEL_DISPLAY_MODE_DEFAULT), len);
|
|
|
|
}
|
2019-07-18 19:13:14 +00:00
|
|
|
}
|
|
|
|
|
2019-08-15 17:04:24 +00:00
|
|
|
static const char *get_playlist_thumbnail_mode_value(playlist_t *playlist, enum playlist_thumbnail_id thumbnail_id)
|
|
|
|
{
|
|
|
|
enum playlist_thumbnail_mode thumbnail_mode =
|
|
|
|
playlist_get_thumbnail_mode(playlist, thumbnail_id);
|
|
|
|
|
|
|
|
switch (thumbnail_mode)
|
|
|
|
{
|
|
|
|
case PLAYLIST_THUMBNAIL_MODE_OFF:
|
|
|
|
return msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF);
|
|
|
|
case PLAYLIST_THUMBNAIL_MODE_SCREENSHOTS:
|
|
|
|
return msg_hash_to_str(MENU_ENUM_LABEL_VALUE_THUMBNAIL_MODE_SCREENSHOTS);
|
|
|
|
case PLAYLIST_THUMBNAIL_MODE_TITLE_SCREENS:
|
|
|
|
return msg_hash_to_str(MENU_ENUM_LABEL_VALUE_THUMBNAIL_MODE_TITLE_SCREENS);
|
|
|
|
case PLAYLIST_THUMBNAIL_MODE_BOXARTS:
|
|
|
|
return msg_hash_to_str(MENU_ENUM_LABEL_VALUE_THUMBNAIL_MODE_BOXARTS);
|
|
|
|
default:
|
|
|
|
/* PLAYLIST_THUMBNAIL_MODE_DEFAULT */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_THUMBNAIL_MODE_DEFAULT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_playlist_right_thumbnail_mode(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
playlist_t *playlist = playlist_get_cached();
|
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
|
|
|
if (!playlist)
|
|
|
|
return;
|
|
|
|
|
|
|
|
strlcpy(
|
|
|
|
s,
|
|
|
|
get_playlist_thumbnail_mode_value(playlist, PLAYLIST_THUMBNAIL_RIGHT),
|
|
|
|
len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_playlist_left_thumbnail_mode(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
playlist_t *playlist = playlist_get_cached();
|
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
|
|
|
if (!playlist)
|
|
|
|
return;
|
|
|
|
|
|
|
|
strlcpy(
|
|
|
|
s,
|
|
|
|
get_playlist_thumbnail_mode_value(playlist, PLAYLIST_THUMBNAIL_LEFT),
|
|
|
|
len);
|
|
|
|
}
|
|
|
|
|
2020-04-10 16:05:23 +00:00
|
|
|
static void menu_action_setting_disp_set_label_playlist_sort_mode(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
enum playlist_sort_mode sort_mode;
|
|
|
|
playlist_t *playlist = playlist_get_cached();
|
|
|
|
|
|
|
|
if (!playlist)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sort_mode = playlist_get_sort_mode(playlist);
|
|
|
|
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
|
|
|
switch (sort_mode)
|
|
|
|
{
|
|
|
|
case PLAYLIST_SORT_MODE_ALPHABETICAL:
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_SORT_MODE_ALPHABETICAL), len);
|
|
|
|
break;
|
|
|
|
case PLAYLIST_SORT_MODE_OFF:
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_SORT_MODE_OFF), len);
|
|
|
|
break;
|
|
|
|
case PLAYLIST_SORT_MODE_DEFAULT:
|
|
|
|
default:
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_MANAGER_SORT_MODE_DEFAULT), len);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-30 01:22:38 +00:00
|
|
|
static void menu_action_setting_disp_set_label_core_options(
|
|
|
|
file_list_t* list,
|
2016-05-18 19:22:58 +00:00
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
2021-08-06 14:32:51 +00:00
|
|
|
{
|
|
|
|
const char *category = path;
|
|
|
|
const char *desc = NULL;
|
|
|
|
|
|
|
|
/* Add 'more' value text */
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_MORE), len);
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
/* If this is an options subcategory, fetch
|
|
|
|
* the category description */
|
|
|
|
if (!string_is_empty(category))
|
|
|
|
{
|
|
|
|
core_option_manager_t *coreopts = NULL;
|
|
|
|
|
2021-09-28 10:56:10 +00:00
|
|
|
if (retroarch_ctl(RARCH_CTL_CORE_OPTIONS_LIST_GET, &coreopts))
|
2021-08-06 14:32:51 +00:00
|
|
|
desc = core_option_manager_get_category_desc(
|
|
|
|
coreopts, category);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If this isn't a subcategory (or something
|
|
|
|
* went wrong...), use top level core options
|
|
|
|
* menu label */
|
|
|
|
if (string_is_empty(desc))
|
|
|
|
desc = msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_OPTIONS);
|
|
|
|
|
|
|
|
strlcpy(s2, desc, len2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_core_option(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
2016-05-18 19:22:58 +00:00
|
|
|
{
|
|
|
|
core_option_manager_t *coreopts = NULL;
|
2020-07-24 14:31:50 +00:00
|
|
|
const char *coreopt_label = NULL;
|
2016-05-18 19:22:58 +00:00
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
|
2021-09-28 10:56:10 +00:00
|
|
|
if (retroarch_ctl(RARCH_CTL_CORE_OPTIONS_LIST_GET, &coreopts))
|
2016-05-18 19:22:58 +00:00
|
|
|
{
|
2020-07-24 14:31:50 +00:00
|
|
|
coreopt_label = core_option_manager_get_val_label(coreopts,
|
2016-05-18 19:22:58 +00:00
|
|
|
type - MENU_SETTINGS_CORE_OPTION_START);
|
|
|
|
|
2020-07-24 14:31:50 +00:00
|
|
|
if (!string_is_empty(coreopt_label))
|
|
|
|
strlcpy(s, coreopt_label, len);
|
2016-05-18 19:22:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
2016-05-18 19:21:58 +00:00
|
|
|
}
|
|
|
|
|
2016-05-18 19:45:06 +00:00
|
|
|
static void menu_action_setting_disp_set_label_achievement_information(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 20:15:49 +00:00
|
|
|
menu_file_list_cbs_t *cbs = (menu_file_list_cbs_t*)
|
|
|
|
list->list[i].actiondata;
|
2020-06-30 01:30:41 +00:00
|
|
|
rarch_setting_t *setting = cbs->setting;
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2020-06-30 01:30:41 +00:00
|
|
|
*s = '\0';
|
|
|
|
*w = 2;
|
|
|
|
|
|
|
|
if (setting && setting->get_string_representation)
|
|
|
|
setting->get_string_representation(setting, s, len);
|
2016-05-18 19:45:06 +00:00
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
}
|
|
|
|
|
2020-06-30 01:22:38 +00:00
|
|
|
static void menu_action_setting_disp_set_label_manual_content_scan_dir(
|
|
|
|
file_list_t* list,
|
2019-11-29 17:13:35 +00:00
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
const char *content_dir = NULL;
|
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
|
|
|
if (!manual_content_scan_get_menu_content_dir(&content_dir))
|
|
|
|
return;
|
|
|
|
|
|
|
|
strlcpy(s, content_dir, len);
|
|
|
|
}
|
|
|
|
|
2020-06-30 01:22:38 +00:00
|
|
|
static void menu_action_setting_disp_set_label_manual_content_scan_system_name(
|
|
|
|
file_list_t* list,
|
2019-11-29 17:13:35 +00:00
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
const char *system_name = NULL;
|
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
|
|
|
if (!manual_content_scan_get_menu_system_name(&system_name))
|
|
|
|
return;
|
|
|
|
|
|
|
|
strlcpy(s, system_name, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_manual_content_scan_core_name(file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
const char *core_name = NULL;
|
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
|
|
|
|
if (!manual_content_scan_get_menu_core_name(&core_name))
|
|
|
|
return;
|
|
|
|
|
|
|
|
strlcpy(s, core_name, len);
|
|
|
|
}
|
|
|
|
|
2016-10-23 17:42:04 +00:00
|
|
|
static void menu_action_setting_disp_set_label_no_items(
|
|
|
|
file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
}
|
|
|
|
|
2016-05-18 19:45:06 +00:00
|
|
|
static void menu_action_setting_disp_set_label(file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 20:15:49 +00:00
|
|
|
menu_file_list_cbs_t *cbs = (menu_file_list_cbs_t*)
|
|
|
|
list->list[i].actiondata;
|
2020-06-30 01:30:41 +00:00
|
|
|
rarch_setting_t *setting = cbs->setting;
|
|
|
|
|
|
|
|
*s = '\0';
|
|
|
|
*w = 19;
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2020-06-30 01:30:41 +00:00
|
|
|
if (setting && setting->get_string_representation)
|
|
|
|
setting->get_string_representation(setting, s, len);
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2015-06-03 15:16:47 +00:00
|
|
|
strlcpy(s2, path, len2);
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
|
|
|
|
2016-10-24 03:08:57 +00:00
|
|
|
static void menu_action_setting_disp_set_label_setting_bool(file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 20:15:49 +00:00
|
|
|
menu_file_list_cbs_t *cbs = (menu_file_list_cbs_t*)
|
|
|
|
list->list[i].actiondata;
|
2020-06-30 01:22:38 +00:00
|
|
|
rarch_setting_t *setting = cbs->setting;
|
2016-10-24 03:08:57 +00:00
|
|
|
|
2016-10-27 18:14:56 +00:00
|
|
|
*s = '\0';
|
2016-10-24 03:08:57 +00:00
|
|
|
*w = 19;
|
|
|
|
|
2016-10-27 18:14:56 +00:00
|
|
|
if (setting)
|
|
|
|
{
|
|
|
|
if (*setting->value.target.boolean)
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ON), len);
|
|
|
|
else
|
|
|
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF), len);
|
|
|
|
}
|
2016-10-24 03:08:57 +00:00
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
}
|
|
|
|
|
2016-10-24 03:20:29 +00:00
|
|
|
static void menu_action_setting_disp_set_label_setting_string(file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 20:15:49 +00:00
|
|
|
menu_file_list_cbs_t *cbs = (menu_file_list_cbs_t*)
|
|
|
|
list->list[i].actiondata;
|
2020-06-30 01:22:38 +00:00
|
|
|
rarch_setting_t *setting = cbs->setting;
|
2016-10-24 03:20:29 +00:00
|
|
|
|
|
|
|
*w = 19;
|
|
|
|
|
2018-09-25 13:43:40 +00:00
|
|
|
if (setting->value.target.string)
|
2018-08-04 17:05:05 +00:00
|
|
|
strlcpy(s, setting->value.target.string, len);
|
2016-10-24 03:20:29 +00:00
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_action_setting_disp_set_label_setting_path(file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *s2, size_t len2)
|
|
|
|
{
|
2020-06-30 20:15:49 +00:00
|
|
|
menu_file_list_cbs_t *cbs = (menu_file_list_cbs_t*)
|
|
|
|
list->list[i].actiondata;
|
2020-06-30 01:22:38 +00:00
|
|
|
rarch_setting_t *setting = cbs->setting;
|
2016-12-17 11:55:23 +00:00
|
|
|
const char *basename = setting ? path_basename(setting->value.target.string) : NULL;
|
2016-10-24 03:20:29 +00:00
|
|
|
|
|
|
|
*w = 19;
|
|
|
|
|
2016-10-27 18:14:56 +00:00
|
|
|
if (!string_is_empty(basename))
|
|
|
|
strlcpy(s, basename, len);
|
2016-10-24 03:20:29 +00:00
|
|
|
|
|
|
|
strlcpy(s2, path, len2);
|
|
|
|
}
|
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
static int menu_cbs_init_bind_get_string_representation_compare_label(
|
2016-07-10 11:47:19 +00:00
|
|
|
menu_file_list_cbs_t *cbs)
|
2015-06-05 10:34:15 +00:00
|
|
|
{
|
2016-06-19 22:31:13 +00:00
|
|
|
if (cbs->enum_idx != MSG_UNKNOWN)
|
2015-06-05 10:34:15 +00:00
|
|
|
{
|
2016-06-16 18:14:15 +00:00
|
|
|
switch (cbs->enum_idx)
|
|
|
|
{
|
2016-12-13 15:13:38 +00:00
|
|
|
case MENU_ENUM_LABEL_VIDEO_DRIVER:
|
|
|
|
case MENU_ENUM_LABEL_AUDIO_DRIVER:
|
|
|
|
case MENU_ENUM_LABEL_INPUT_DRIVER:
|
|
|
|
case MENU_ENUM_LABEL_JOYPAD_DRIVER:
|
|
|
|
case MENU_ENUM_LABEL_AUDIO_RESAMPLER_DRIVER:
|
|
|
|
case MENU_ENUM_LABEL_RECORD_DRIVER:
|
2018-06-04 05:48:08 +00:00
|
|
|
case MENU_ENUM_LABEL_MIDI_DRIVER:
|
2016-12-13 15:13:38 +00:00
|
|
|
case MENU_ENUM_LABEL_LOCATION_DRIVER:
|
|
|
|
case MENU_ENUM_LABEL_CAMERA_DRIVER:
|
2020-06-17 11:56:44 +00:00
|
|
|
case MENU_ENUM_LABEL_BLUETOOTH_DRIVER:
|
2016-12-13 15:13:38 +00:00
|
|
|
case MENU_ENUM_LABEL_WIFI_DRIVER:
|
|
|
|
case MENU_ENUM_LABEL_MENU_DRIVER:
|
2021-04-17 21:54:45 +00:00
|
|
|
#ifdef HAVE_LAKKA
|
|
|
|
case MENU_ENUM_LABEL_TIMEZONE:
|
|
|
|
#endif
|
2016-12-13 15:13:38 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs, menu_action_setting_disp_set_label);
|
|
|
|
break;
|
2020-06-17 11:56:44 +00:00
|
|
|
case MENU_ENUM_LABEL_CONNECT_BLUETOOTH:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_bluetooth_is_connected);
|
|
|
|
break;
|
2016-09-22 13:47:14 +00:00
|
|
|
case MENU_ENUM_LABEL_CONNECT_WIFI:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_wifi_is_online);
|
|
|
|
break;
|
2016-06-16 18:14:15 +00:00
|
|
|
case MENU_ENUM_LABEL_CHEAT_NUM_PASSES:
|
2020-06-30 17:35:41 +00:00
|
|
|
#ifdef HAVE_CHEATS
|
2016-06-16 18:14:15 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_cheat_num_passes);
|
2020-06-30 17:35:41 +00:00
|
|
|
#endif
|
2016-06-16 18:14:15 +00:00
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_REMAP_FILE_LOAD:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_remap_file_load);
|
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_VIDEO_SHADER_FILTER_PASS:
|
2019-07-20 22:33:39 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2016-06-16 18:14:15 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_shader_filter_pass);
|
2019-07-20 22:33:39 +00:00
|
|
|
#endif
|
2016-06-16 18:14:15 +00:00
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_VIDEO_SHADER_SCALE_PASS:
|
2019-07-20 22:33:39 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2016-06-16 18:14:15 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_shader_scale_pass);
|
2019-07-20 22:33:39 +00:00
|
|
|
#endif
|
2016-06-16 18:14:15 +00:00
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_VIDEO_SHADER_NUM_PASSES:
|
2019-07-20 22:33:39 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2016-06-16 18:14:15 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_shader_num_passes);
|
2019-07-20 22:33:39 +00:00
|
|
|
#endif
|
2016-06-16 18:14:15 +00:00
|
|
|
break;
|
2018-01-25 20:50:57 +00:00
|
|
|
case MENU_ENUM_LABEL_SHADER_WATCH_FOR_CHANGES:
|
2019-07-20 22:33:39 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2018-01-25 20:50:57 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_shader_watch_for_changes);
|
2019-07-20 22:33:39 +00:00
|
|
|
#endif
|
2018-01-25 20:50:57 +00:00
|
|
|
break;
|
2016-06-16 18:14:15 +00:00
|
|
|
case MENU_ENUM_LABEL_VIDEO_SHADER_PASS:
|
2019-07-20 22:33:39 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2016-06-16 18:14:15 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_shader_pass);
|
2019-07-20 22:33:39 +00:00
|
|
|
#endif
|
2016-06-16 18:14:15 +00:00
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_VIDEO_SHADER_DEFAULT_FILTER:
|
2019-07-20 22:33:39 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2016-06-16 18:14:15 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_shader_default_filter);
|
2019-07-20 22:33:39 +00:00
|
|
|
#endif
|
2016-06-16 18:14:15 +00:00
|
|
|
break;
|
2016-11-21 06:26:58 +00:00
|
|
|
case MENU_ENUM_LABEL_CONFIGURATIONS:
|
2016-06-16 18:14:15 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_configurations);
|
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_SCREEN_RESOLUTION:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_menu_video_resolution);
|
|
|
|
break;
|
2021-08-06 14:32:51 +00:00
|
|
|
case MENU_ENUM_LABEL_CORE_OPTIONS:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_core_options);
|
|
|
|
break;
|
2019-03-17 16:35:30 +00:00
|
|
|
case MENU_ENUM_LABEL_PLAYLISTS_TAB:
|
2016-06-16 18:14:15 +00:00
|
|
|
case MENU_ENUM_LABEL_LOAD_CONTENT_HISTORY:
|
|
|
|
case MENU_ENUM_LABEL_DOWNLOADED_FILE_DETECT_CORE_LIST:
|
2016-12-13 00:06:28 +00:00
|
|
|
case MENU_ENUM_LABEL_FAVORITES:
|
2021-02-24 17:41:40 +00:00
|
|
|
case MENU_ENUM_LABEL_CORE_OPTION_OVERRIDE_LIST:
|
2016-06-16 18:14:15 +00:00
|
|
|
case MENU_ENUM_LABEL_CORE_CHEAT_OPTIONS:
|
|
|
|
case MENU_ENUM_LABEL_SHADER_OPTIONS:
|
|
|
|
case MENU_ENUM_LABEL_VIDEO_SHADER_PARAMETERS:
|
|
|
|
case MENU_ENUM_LABEL_VIDEO_SHADER_PRESET_PARAMETERS:
|
2019-08-23 23:44:50 +00:00
|
|
|
case MENU_ENUM_LABEL_VIDEO_SHADER_PRESET_SAVE:
|
2016-06-16 18:14:15 +00:00
|
|
|
case MENU_ENUM_LABEL_VIDEO_SHADER_PRESET_SAVE_AS:
|
|
|
|
case MENU_ENUM_LABEL_CHEAT_FILE_SAVE_AS:
|
|
|
|
case MENU_ENUM_LABEL_FRONTEND_COUNTERS:
|
|
|
|
case MENU_ENUM_LABEL_CORE_COUNTERS:
|
|
|
|
case MENU_ENUM_LABEL_DATABASE_MANAGER_LIST:
|
|
|
|
case MENU_ENUM_LABEL_CURSOR_MANAGER_LIST:
|
|
|
|
case MENU_ENUM_LABEL_RESTART_CONTENT:
|
|
|
|
case MENU_ENUM_LABEL_CLOSE_CONTENT:
|
|
|
|
case MENU_ENUM_LABEL_RESUME_CONTENT:
|
|
|
|
case MENU_ENUM_LABEL_TAKE_SCREENSHOT:
|
|
|
|
case MENU_ENUM_LABEL_CORE_INPUT_REMAPPING_OPTIONS:
|
|
|
|
case MENU_ENUM_LABEL_CORE_INFORMATION:
|
|
|
|
case MENU_ENUM_LABEL_SYSTEM_INFORMATION:
|
|
|
|
case MENU_ENUM_LABEL_ACHIEVEMENT_LIST:
|
2016-11-05 21:55:57 +00:00
|
|
|
case MENU_ENUM_LABEL_ACHIEVEMENT_LIST_HARDCORE:
|
2016-06-16 18:14:15 +00:00
|
|
|
case MENU_ENUM_LABEL_SAVE_STATE:
|
|
|
|
case MENU_ENUM_LABEL_LOAD_STATE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_menu_more);
|
|
|
|
break;
|
2019-06-26 16:40:00 +00:00
|
|
|
case MENU_ENUM_LABEL_PLAYLIST_MANAGER_DEFAULT_CORE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_playlist_associations);
|
|
|
|
break;
|
2019-07-18 19:13:14 +00:00
|
|
|
case MENU_ENUM_LABEL_PLAYLIST_MANAGER_LABEL_DISPLAY_MODE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_playlist_label_display_mode);
|
|
|
|
break;
|
2019-08-15 17:04:24 +00:00
|
|
|
case MENU_ENUM_LABEL_PLAYLIST_MANAGER_RIGHT_THUMBNAIL_MODE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_playlist_right_thumbnail_mode);
|
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_PLAYLIST_MANAGER_LEFT_THUMBNAIL_MODE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_playlist_left_thumbnail_mode);
|
|
|
|
break;
|
2020-04-10 16:05:23 +00:00
|
|
|
case MENU_ENUM_LABEL_PLAYLIST_MANAGER_SORT_MODE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_playlist_sort_mode);
|
|
|
|
break;
|
2019-11-29 17:13:35 +00:00
|
|
|
case MENU_ENUM_LABEL_MANUAL_CONTENT_SCAN_DIR:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_manual_content_scan_dir);
|
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_MANUAL_CONTENT_SCAN_SYSTEM_NAME:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_manual_content_scan_system_name);
|
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_MANUAL_CONTENT_SCAN_CORE_NAME:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_manual_content_scan_core_name);
|
|
|
|
break;
|
2020-06-11 13:12:20 +00:00
|
|
|
#ifdef HAVE_NETWORKING
|
|
|
|
case MENU_ENUM_LABEL_CORE_UPDATER_ENTRY:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_core_updater_entry);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case MENU_ENUM_LABEL_CORE_MANAGER_ENTRY:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_core_manager_entry);
|
|
|
|
break;
|
2021-02-24 17:41:40 +00:00
|
|
|
case MENU_ENUM_LABEL_CORE_OPTION_OVERRIDE_INFO:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_core_option_override_info);
|
|
|
|
break;
|
2021-05-07 18:58:30 +00:00
|
|
|
#ifndef HAVE_LAKKA_SWITCH
|
2021-05-01 16:33:44 +00:00
|
|
|
#ifdef HAVE_LAKKA
|
2021-05-12 00:16:25 +00:00
|
|
|
case MENU_ENUM_LABEL_CPU_PERF_MODE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_cpu_gov_mode);
|
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_CPU_POLICY_CORE_GOVERNOR:
|
|
|
|
case MENU_ENUM_LABEL_CPU_POLICY_MENU_GOVERNOR:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_cpu_gov_choose);
|
|
|
|
break;
|
2021-05-01 16:33:44 +00:00
|
|
|
case MENU_ENUM_LABEL_CPU_POLICY_ENTRY:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_cpu_policy);
|
|
|
|
break;
|
|
|
|
case MENU_ENUM_LABEL_CPU_POLICY_MIN_FREQ:
|
|
|
|
case MENU_ENUM_LABEL_CPU_POLICY_MAX_FREQ:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs, menu_action_cpu_freq_label);
|
|
|
|
break;
|
2021-05-12 00:16:25 +00:00
|
|
|
case MENU_ENUM_LABEL_CPU_MANAGED_MIN_FREQ:
|
|
|
|
case MENU_ENUM_LABEL_CPU_MANAGED_MAX_FREQ:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs, menu_action_cpu_managed_freq_label);
|
|
|
|
break;
|
2021-05-01 16:33:44 +00:00
|
|
|
case MENU_ENUM_LABEL_CPU_POLICY_GOVERNOR:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs, menu_action_cpu_governor_label);
|
|
|
|
break;
|
|
|
|
#endif
|
2021-05-07 18:58:30 +00:00
|
|
|
#endif
|
2016-06-16 18:14:15 +00:00
|
|
|
default:
|
2020-06-18 16:08:57 +00:00
|
|
|
return -1;
|
2016-06-16 18:14:15 +00:00
|
|
|
}
|
|
|
|
}
|
2016-07-10 02:08:11 +00:00
|
|
|
else
|
2016-07-10 11:47:19 +00:00
|
|
|
return -1;
|
2015-06-05 10:34:15 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
static int menu_cbs_init_bind_get_string_representation_compare_type(
|
2015-06-07 15:52:01 +00:00
|
|
|
menu_file_list_cbs_t *cbs, unsigned type)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2019-12-02 05:47:51 +00:00
|
|
|
unsigned i;
|
|
|
|
typedef struct info_range_list
|
2018-04-30 15:51:01 +00:00
|
|
|
{
|
2019-12-02 05:47:51 +00:00
|
|
|
unsigned min;
|
|
|
|
unsigned max;
|
|
|
|
void (*cb)(file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label, char *s, size_t len,
|
|
|
|
const char *path,
|
|
|
|
char *path_buf, size_t path_buf_size);
|
|
|
|
} info_range_list_t;
|
|
|
|
|
|
|
|
info_range_list_t info_list[] = {
|
|
|
|
#ifdef HAVE_AUDIOMIXER
|
|
|
|
{
|
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_BEGIN,
|
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_END,
|
|
|
|
menu_action_setting_audio_mixer_stream_name
|
|
|
|
},
|
|
|
|
{
|
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_VOLUME_BEGIN,
|
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_VOLUME_END,
|
|
|
|
menu_action_setting_audio_mixer_stream_volume
|
|
|
|
},
|
2019-07-11 09:51:06 +00:00
|
|
|
#endif
|
2019-12-02 05:47:51 +00:00
|
|
|
{
|
|
|
|
MENU_SETTINGS_INPUT_DESC_BEGIN,
|
|
|
|
MENU_SETTINGS_INPUT_DESC_END,
|
|
|
|
menu_action_setting_disp_set_label_input_desc
|
|
|
|
},
|
2020-06-30 17:35:41 +00:00
|
|
|
#ifdef HAVE_CHEATS
|
2019-12-02 05:47:51 +00:00
|
|
|
{
|
|
|
|
MENU_SETTINGS_CHEAT_BEGIN,
|
|
|
|
MENU_SETTINGS_CHEAT_END,
|
|
|
|
menu_action_setting_disp_set_label_cheat
|
|
|
|
},
|
2020-06-30 17:35:41 +00:00
|
|
|
#endif
|
2019-12-02 05:47:51 +00:00
|
|
|
{
|
|
|
|
MENU_SETTINGS_PERF_COUNTERS_BEGIN,
|
|
|
|
MENU_SETTINGS_PERF_COUNTERS_END,
|
|
|
|
menu_action_setting_disp_set_label_perf_counters
|
|
|
|
},
|
|
|
|
{
|
|
|
|
MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN,
|
|
|
|
MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_END,
|
|
|
|
menu_action_setting_disp_set_label_libretro_perf_counters
|
|
|
|
},
|
|
|
|
{
|
|
|
|
MENU_SETTINGS_INPUT_DESC_KBD_BEGIN,
|
|
|
|
MENU_SETTINGS_INPUT_DESC_KBD_END,
|
|
|
|
menu_action_setting_disp_set_label_input_desc_kbd
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(info_list); i++)
|
2017-09-10 05:04:18 +00:00
|
|
|
{
|
2019-12-02 05:47:51 +00:00
|
|
|
if (type >= info_list[i].min && type <= info_list[i].max)
|
|
|
|
{
|
|
|
|
BIND_ACTION_GET_VALUE(cbs, info_list[i].cb);
|
|
|
|
return 0;
|
|
|
|
}
|
2017-09-10 05:04:18 +00:00
|
|
|
}
|
2019-12-02 05:47:51 +00:00
|
|
|
|
|
|
|
switch (type)
|
2015-02-27 01:50:19 +00:00
|
|
|
{
|
2019-12-02 05:47:51 +00:00
|
|
|
case FILE_TYPE_CORE:
|
|
|
|
case FILE_TYPE_DIRECT_LOAD:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_core);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_PLAIN:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_plain);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_MOVIE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_movie);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_MUSIC:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_music);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_IMAGE:
|
|
|
|
case FILE_TYPE_IMAGEVIEWER:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_imageviewer);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_DIRECTORY:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_directory);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_PARENT_DIRECTORY:
|
2020-06-30 01:22:38 +00:00
|
|
|
case FILE_TYPE_USE_DIRECTORY:
|
2019-12-02 05:47:51 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2020-06-30 01:22:38 +00:00
|
|
|
menu_action_setting_disp_set_label_generic);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_CARCHIVE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_carchive);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_OVERLAY:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_overlay);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
2019-03-31 00:17:08 +00:00
|
|
|
#ifdef HAVE_VIDEO_LAYOUT
|
2019-12-02 05:47:51 +00:00
|
|
|
case FILE_TYPE_VIDEO_LAYOUT:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2019-03-31 00:17:08 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_video_layout);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
2019-03-31 00:17:08 +00:00
|
|
|
#endif
|
2019-12-02 05:47:51 +00:00
|
|
|
case FILE_TYPE_FONT:
|
2021-02-05 16:55:09 +00:00
|
|
|
case FILE_TYPE_VIDEO_FONT:
|
2019-12-02 05:47:51 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_font);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_SHADER:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_shader);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_SHADER_PRESET:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_shader_preset);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_CONFIG:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_config);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_IN_CARCHIVE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_in_carchive);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_VIDEOFILTER:
|
|
|
|
case FILE_TYPE_AUDIOFILTER:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_filter);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_RDB:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_rdb);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_CURSOR:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_cursor);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case FILE_TYPE_CHEAT:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_file_cheat);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case MENU_SETTINGS_CHEAT_MATCH:
|
2020-06-30 17:35:41 +00:00
|
|
|
#ifdef HAVE_CHEATS
|
2019-12-02 05:47:51 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_cheat_match);
|
2020-06-30 17:35:41 +00:00
|
|
|
#endif
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case MENU_SETTING_SUBGROUP:
|
|
|
|
case MENU_SETTINGS_CUSTOM_BIND_ALL:
|
|
|
|
case MENU_SETTINGS_CUSTOM_BIND_DEFAULT_ALL:
|
|
|
|
case MENU_SETTING_ACTION:
|
|
|
|
case MENU_SETTING_ACTION_LOADSTATE:
|
|
|
|
case 7: /* Run */
|
|
|
|
case MENU_SETTING_ACTION_DELETE_ENTRY:
|
|
|
|
case MENU_SETTING_ACTION_CORE_DISK_OPTIONS:
|
2020-07-29 11:59:55 +00:00
|
|
|
case MENU_EXPLORE_TAB:
|
2019-12-02 05:47:51 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_more);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_INDEX:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2015-10-11 19:19:18 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_disk_index);
|
2019-12-02 05:47:51 +00:00
|
|
|
break;
|
|
|
|
case 31: /* Database entry */
|
|
|
|
BIND_ACTION_GET_VALUE(cbs, menu_action_setting_disp_set_label_db_entry);
|
|
|
|
break;
|
|
|
|
case 25: /* URL directory entries */
|
|
|
|
case 26: /* URL entries */
|
|
|
|
BIND_ACTION_GET_VALUE(cbs, menu_action_setting_disp_set_label_entry_url);
|
|
|
|
break;
|
|
|
|
case MENU_SETTING_DROPDOWN_SETTING_INT_ITEM:
|
|
|
|
case MENU_SETTING_DROPDOWN_SETTING_UINT_ITEM:
|
|
|
|
case MENU_SETTING_DROPDOWN_SETTING_FLOAT_ITEM:
|
|
|
|
case MENU_SETTING_DROPDOWN_ITEM:
|
|
|
|
case MENU_SETTING_NO_ITEM:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs, menu_action_setting_disp_set_label_no_items);
|
|
|
|
break;
|
2020-06-18 16:08:57 +00:00
|
|
|
case MENU_SETTING_ACTION_CORE_LOCK:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_core_lock);
|
|
|
|
break;
|
2019-12-02 05:47:51 +00:00
|
|
|
case 32: /* Recent history entry */
|
|
|
|
case 65535: /* System info entry */
|
|
|
|
BIND_ACTION_GET_VALUE(cbs, menu_action_setting_disp_set_label_entry);
|
|
|
|
break;
|
|
|
|
default:
|
2016-10-23 01:37:51 +00:00
|
|
|
#if 0
|
2019-12-02 05:47:51 +00:00
|
|
|
RARCH_LOG("type: %d\n", type);
|
2016-10-23 01:37:51 +00:00
|
|
|
#endif
|
2019-12-02 05:47:51 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs, menu_action_setting_disp_set_label);
|
|
|
|
break;
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|
2015-06-07 15:52:01 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_get_string_representation(menu_file_list_cbs_t *cbs,
|
2016-07-10 11:47:19 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx)
|
2015-06-07 15:52:01 +00:00
|
|
|
{
|
|
|
|
if (!cbs)
|
2015-06-07 16:36:10 +00:00
|
|
|
return -1;
|
2015-06-07 15:52:01 +00:00
|
|
|
|
2020-06-25 12:38:06 +00:00
|
|
|
if ( string_starts_with_size(
|
|
|
|
label, "input_player", STRLEN_CONST("input_player")) &&
|
|
|
|
string_ends_with_size(label, "joypad_index", strlen(label),
|
|
|
|
STRLEN_CONST("joypad_index"))
|
2020-05-23 00:29:13 +00:00
|
|
|
)
|
2016-11-03 19:06:39 +00:00
|
|
|
{
|
|
|
|
BIND_ACTION_GET_VALUE(cbs, menu_action_setting_disp_set_label);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-19 22:31:13 +00:00
|
|
|
if (cbs->enum_idx != MSG_UNKNOWN)
|
2016-05-18 19:41:37 +00:00
|
|
|
{
|
2016-06-16 15:52:32 +00:00
|
|
|
switch (cbs->enum_idx)
|
|
|
|
{
|
2016-07-08 16:38:09 +00:00
|
|
|
case MENU_ENUM_LABEL_CHEEVOS_LOCKED_ENTRY:
|
2020-02-29 11:28:04 +00:00
|
|
|
#ifdef HAVE_CHEEVOS
|
2016-07-08 16:19:10 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2020-02-24 14:15:37 +00:00
|
|
|
menu_action_setting_disp_set_label_cheevos_entry);
|
2020-02-29 11:28:04 +00:00
|
|
|
#endif
|
2019-11-11 02:42:00 +00:00
|
|
|
return 0;
|
2016-06-16 15:52:32 +00:00
|
|
|
case MENU_ENUM_LABEL_LOAD_CONTENT_HISTORY:
|
|
|
|
case MENU_ENUM_LABEL_SYSTEM_INFORMATION:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2016-10-23 02:09:44 +00:00
|
|
|
menu_action_setting_disp_set_label_menu_more);
|
2016-06-16 15:52:32 +00:00
|
|
|
return 0;
|
|
|
|
case MENU_ENUM_LABEL_ACHIEVEMENT_LIST:
|
2016-11-05 21:55:57 +00:00
|
|
|
case MENU_ENUM_LABEL_ACHIEVEMENT_LIST_HARDCORE:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_achievement_information);
|
|
|
|
return 0;
|
2018-02-02 20:37:02 +00:00
|
|
|
case MENU_ENUM_LABEL_NETPLAY_MITM_SERVER:
|
2018-02-04 18:57:31 +00:00
|
|
|
#ifdef HAVE_NETWORKING
|
2018-02-02 20:37:02 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_netplay_mitm_server);
|
2018-02-04 18:57:31 +00:00
|
|
|
#endif
|
2018-02-02 20:37:02 +00:00
|
|
|
return 0;
|
2016-06-16 15:52:32 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-05-18 19:41:37 +00:00
|
|
|
|
2020-02-23 03:58:11 +00:00
|
|
|
if (cbs->setting && !cbs->setting->get_string_representation)
|
2018-02-02 20:28:43 +00:00
|
|
|
{
|
2020-06-30 03:21:47 +00:00
|
|
|
switch (cbs->setting->type)
|
2018-02-02 20:28:43 +00:00
|
|
|
{
|
|
|
|
case ST_BOOL:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_setting_bool);
|
|
|
|
return 0;
|
|
|
|
case ST_STRING:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_setting_string);
|
|
|
|
return 0;
|
|
|
|
case ST_PATH:
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_setting_path);
|
|
|
|
return 0;
|
2016-06-16 15:52:32 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-05-18 19:41:37 +00:00
|
|
|
|
2019-07-25 10:49:49 +00:00
|
|
|
if ((type >= MENU_SETTINGS_CORE_OPTION_START) &&
|
|
|
|
(type < MENU_SETTINGS_CHEEVOS_START))
|
2016-05-18 19:22:58 +00:00
|
|
|
{
|
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
2021-08-06 14:32:51 +00:00
|
|
|
menu_action_setting_disp_set_label_core_option);
|
2016-05-18 19:22:58 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2016-05-18 19:21:58 +00:00
|
|
|
|
2019-07-20 22:33:39 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2015-06-26 05:45:54 +00:00
|
|
|
if (type >= MENU_SETTINGS_SHADER_PARAMETER_0
|
|
|
|
&& type <= MENU_SETTINGS_SHADER_PARAMETER_LAST)
|
|
|
|
{
|
2015-10-11 19:19:18 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_shader_parameter);
|
2015-06-26 05:45:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2015-06-27 17:24:46 +00:00
|
|
|
else if (type >= MENU_SETTINGS_SHADER_PRESET_PARAMETER_0
|
|
|
|
&& type <= MENU_SETTINGS_SHADER_PRESET_PARAMETER_LAST)
|
|
|
|
{
|
2015-10-11 19:19:18 +00:00
|
|
|
BIND_ACTION_GET_VALUE(cbs,
|
|
|
|
menu_action_setting_disp_set_label_shader_preset_parameter);
|
2015-06-27 17:24:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2019-07-20 22:33:39 +00:00
|
|
|
#endif
|
2015-06-26 05:45:54 +00:00
|
|
|
|
2016-07-10 11:47:19 +00:00
|
|
|
if (menu_cbs_init_bind_get_string_representation_compare_label(cbs) == 0)
|
2015-06-07 16:36:10 +00:00
|
|
|
return 0;
|
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
if (menu_cbs_init_bind_get_string_representation_compare_type(cbs, type) == 0)
|
2015-06-07 16:36:10 +00:00
|
|
|
return 0;
|
2015-06-07 15:52:01 +00:00
|
|
|
|
2015-06-07 16:36:10 +00:00
|
|
|
return -1;
|
2015-02-27 01:50:19 +00:00
|
|
|
}
|