mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 15:32:59 +00:00
832 lines
35 KiB
C
832 lines
35 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
|
*
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "menu_entries.h"
|
|
#include "backend/menu_common_backend.h"
|
|
#include "../../settings_data.h"
|
|
#include "../../file_ext.h"
|
|
|
|
static void entries_refresh(void)
|
|
{
|
|
/* Before a refresh, we could have deleted a file on disk, causing
|
|
* selection_ptr to suddendly be out of range.
|
|
* Ensure it doesn't overflow. */
|
|
if (driver.menu->selection_ptr >= file_list_get_size(
|
|
driver.menu->selection_buf) &&
|
|
file_list_get_size(driver.menu->selection_buf))
|
|
menu_set_navigation(driver.menu, file_list_get_size(driver.menu->selection_buf) - 1);
|
|
else if (!file_list_get_size(driver.menu->selection_buf))
|
|
menu_clear_navigation(driver.menu);
|
|
}
|
|
|
|
static inline struct gfx_shader *shader_manager_get_current_shader(
|
|
menu_handle_t *menu, unsigned type)
|
|
{
|
|
if (type == MENU_SETTINGS_SHADER_PRESET_PARAMETERS)
|
|
return menu->shader;
|
|
else if (driver.video_poke && driver.video_data &&
|
|
driver.video_poke->get_current_shader)
|
|
return driver.video_poke->get_current_shader(driver.video_data);
|
|
return NULL;
|
|
}
|
|
|
|
static void add_setting_entry(menu_handle_t *menu,
|
|
const char *label, unsigned id,
|
|
rarch_setting_t *settings)
|
|
{
|
|
rarch_setting_t *setting = (rarch_setting_t*)
|
|
setting_data_find_setting(settings, label);
|
|
|
|
if (setting)
|
|
file_list_push(menu->selection_buf, setting->short_description,
|
|
setting->name, id, 0);
|
|
}
|
|
|
|
void menu_entries_push_perfcounter(menu_handle_t *menu,
|
|
const struct retro_perf_counter **counters,
|
|
unsigned num, unsigned id)
|
|
{
|
|
int i;
|
|
if (!counters || num == 0)
|
|
return;
|
|
|
|
for (i = 0; i < num; i++)
|
|
if (counters[i] && counters[i]->ident)
|
|
file_list_push(menu->selection_buf, counters[i]->ident, "",
|
|
id + i, 0);
|
|
}
|
|
|
|
void menu_entries_pop(void)
|
|
{
|
|
if (file_list_get_size(driver.menu->menu_stack) > 1)
|
|
{
|
|
file_list_pop(driver.menu->menu_stack, &driver.menu->selection_ptr);
|
|
driver.menu->need_refresh = true;
|
|
}
|
|
}
|
|
|
|
int menu_entries_push(menu_handle_t *menu,
|
|
const char *path, const char *label,
|
|
unsigned menu_type)
|
|
{
|
|
unsigned i;
|
|
char tmp[256];
|
|
size_t list_size = 0;
|
|
rarch_setting_t *setting_data = (rarch_setting_t *)
|
|
setting_data_get_list();
|
|
bool do_action = false;
|
|
|
|
#if 0
|
|
RARCH_LOG("Label is: %s\n", label);
|
|
RARCH_LOG("Path is: %s\n", path);
|
|
RARCH_LOG("Menu type is: %d\n", menu_type);
|
|
#endif
|
|
|
|
if (!strcmp(label, "mainmenu"))
|
|
{
|
|
setting_data = (rarch_setting_t *)setting_data_get_mainmenu(true);
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"core_list", MENU_SETTINGS_CORE, setting_data);
|
|
add_setting_entry(menu,"history_list", MENU_SETTINGS_OPEN_HISTORY, setting_data);
|
|
add_setting_entry(menu,"detect_core_list", 0, setting_data);
|
|
add_setting_entry(menu,"load_content", 0, setting_data);
|
|
add_setting_entry(menu,"core_options", MENU_SETTINGS_CORE_OPTIONS, setting_data);
|
|
add_setting_entry(menu,"core_information", MENU_SETTINGS_CORE_INFO, setting_data);
|
|
add_setting_entry(menu,"settings", MENU_SETTINGS_OPTIONS, setting_data);
|
|
add_setting_entry(menu,"performance_counters", MENU_SETTINGS_PERFORMANCE_COUNTERS, setting_data);
|
|
add_setting_entry(menu,"savestate", 0, setting_data);
|
|
add_setting_entry(menu,"loadstate", 0, setting_data);
|
|
add_setting_entry(menu,"take_screenshot", 0, setting_data);
|
|
add_setting_entry(menu,"resume_content", 0, setting_data);
|
|
add_setting_entry(menu,"restart_content", 0, setting_data);
|
|
add_setting_entry(menu,"restart_retroarch", 0, setting_data);
|
|
add_setting_entry(menu,"configurations", MENU_SETTINGS_CONFIG, setting_data);
|
|
add_setting_entry(menu,"save_new_config", 0, setting_data);
|
|
add_setting_entry(menu,"help", 0, setting_data);
|
|
add_setting_entry(menu,"quit_retroarch", 0, setting_data);
|
|
}
|
|
else if (!strcmp(path, "General Options"))
|
|
{
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"libretro_log_level", 0, setting_data);
|
|
add_setting_entry(menu,"log_verbosity", 0, setting_data);
|
|
add_setting_entry(menu,"perfcnt_enable", 0, setting_data);
|
|
add_setting_entry(menu,"game_history_size", 0, setting_data);
|
|
add_setting_entry(menu,"config_save_on_exit", 0, setting_data);
|
|
add_setting_entry(menu,"core_specific_config", 0, setting_data);
|
|
add_setting_entry(menu,"video_gpu_screenshot", 0, setting_data);
|
|
add_setting_entry(menu,"dummy_on_core_shutdown", 0, setting_data);
|
|
add_setting_entry(menu,"fps_show", 0, setting_data);
|
|
add_setting_entry(menu,"fastforward_ratio", 0, setting_data);
|
|
add_setting_entry(menu,"slowmotion_ratio", 0, setting_data);
|
|
add_setting_entry(menu,"rewind_enable", 0, setting_data);
|
|
add_setting_entry(menu,"rewind_granularity", 0, setting_data);
|
|
add_setting_entry(menu,"block_sram_overwrite", 0, setting_data);
|
|
add_setting_entry(menu,"autosave_interval", 0, setting_data);
|
|
add_setting_entry(menu,"video_disable_composition", 0, setting_data);
|
|
add_setting_entry(menu,"pause_nonactive", 0, setting_data);
|
|
add_setting_entry(menu,"savestate_auto_save", 0, setting_data);
|
|
add_setting_entry(menu,"savestate_auto_load", 0, setting_data);
|
|
}
|
|
else
|
|
{
|
|
switch (menu_type)
|
|
{
|
|
case MENU_SETTINGS_OPEN_HISTORY:
|
|
file_list_clear(driver.menu->selection_buf);
|
|
list_size = content_playlist_size(g_extern.history);
|
|
|
|
for (i = 0; i < list_size; i++)
|
|
{
|
|
char fill_buf[PATH_MAX];
|
|
const char *path = NULL;
|
|
const char *core_name = NULL;
|
|
|
|
content_playlist_get_index(g_extern.history, i,
|
|
&path, NULL, &core_name);
|
|
strlcpy(fill_buf, core_name, sizeof(fill_buf));
|
|
|
|
if (path)
|
|
{
|
|
char path_short[PATH_MAX];
|
|
fill_pathname(path_short, path_basename(path), "",
|
|
sizeof(path_short));
|
|
|
|
snprintf(fill_buf, sizeof(fill_buf), "%s (%s)",
|
|
path_short, core_name);
|
|
}
|
|
|
|
file_list_push(driver.menu->selection_buf, fill_buf, "",
|
|
MENU_FILE_PLAIN, 0);
|
|
|
|
do_action = true;
|
|
}
|
|
break;
|
|
case MENU_SETTINGS_DEFERRED_CORE:
|
|
{
|
|
const core_info_t *info = NULL;
|
|
file_list_clear(driver.menu->selection_buf);
|
|
core_info_list_get_supported_cores(driver.menu->core_info,
|
|
driver.menu->deferred_path, &info, &list_size);
|
|
for (i = 0; i < list_size; i++)
|
|
{
|
|
file_list_push(driver.menu->selection_buf, info[i].path, "",
|
|
MENU_FILE_PLAIN, 0);
|
|
file_list_set_alt_at_offset(driver.menu->selection_buf, i,
|
|
info[i].display_name);
|
|
}
|
|
file_list_sort_on_alt(driver.menu->selection_buf);
|
|
|
|
do_action = true;
|
|
}
|
|
break;
|
|
case MENU_SETTINGS_SHADER_PARAMETERS:
|
|
case MENU_SETTINGS_SHADER_PRESET_PARAMETERS:
|
|
{
|
|
file_list_clear(menu->selection_buf);
|
|
|
|
struct gfx_shader *shader = (struct gfx_shader*)
|
|
shader_manager_get_current_shader(menu, menu_type);
|
|
|
|
if (shader)
|
|
for (i = 0; i < shader->num_parameters; i++)
|
|
file_list_push(menu->selection_buf,
|
|
shader->parameters[i].desc, "",
|
|
MENU_SETTINGS_SHADER_PARAMETER_0 + i, 0);
|
|
menu->parameter_shader = shader;
|
|
break;
|
|
}
|
|
case MENU_SETTINGS_SHADER_OPTIONS:
|
|
{
|
|
struct gfx_shader *shader = (struct gfx_shader*)menu->shader;
|
|
|
|
if (!shader)
|
|
return -1;
|
|
|
|
file_list_clear(menu->selection_buf);
|
|
file_list_push(menu->selection_buf, "Apply Shader Changes", "",
|
|
MENU_SETTINGS_SHADER_APPLY, 0);
|
|
file_list_push(menu->selection_buf, "Default Filter", "",
|
|
MENU_SETTINGS_SHADER_FILTER, 0);
|
|
file_list_push(menu->selection_buf, "Load Shader Preset", "",
|
|
MENU_SETTINGS_SHADER_PRESET, 0);
|
|
file_list_push(menu->selection_buf, "Save As Shader Preset", "",
|
|
MENU_SETTINGS_SHADER_PRESET_SAVE, 0);
|
|
file_list_push(menu->selection_buf, "Parameters (Current)", "",
|
|
MENU_SETTINGS_SHADER_PARAMETERS, 0);
|
|
file_list_push(menu->selection_buf, "Parameters (Menu)", "",
|
|
MENU_SETTINGS_SHADER_PRESET_PARAMETERS, 0);
|
|
file_list_push(menu->selection_buf, "Shader Passes", "",
|
|
MENU_SETTINGS_SHADER_PASSES, 0);
|
|
|
|
for (i = 0; i < shader->passes; i++)
|
|
{
|
|
char buf[64];
|
|
|
|
snprintf(buf, sizeof(buf), "Shader #%u", i);
|
|
file_list_push(menu->selection_buf, buf, "",
|
|
MENU_SETTINGS_SHADER_0 + 3 * i, 0);
|
|
|
|
snprintf(buf, sizeof(buf), "Shader #%u Filter", i);
|
|
file_list_push(menu->selection_buf, buf, "",
|
|
MENU_SETTINGS_SHADER_0_FILTER + 3 * i, 0);
|
|
|
|
snprintf(buf, sizeof(buf), "Shader #%u Scale", i);
|
|
file_list_push(menu->selection_buf, buf, "",
|
|
MENU_SETTINGS_SHADER_0_SCALE + 3 * i, 0);
|
|
}
|
|
}
|
|
break;
|
|
case MENU_SETTINGS_VIDEO_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"video_shared_context", 0, setting_data);
|
|
#if defined(GEKKO) || defined(__CELLOS_LV2__)
|
|
file_list_push(menu->selection_buf, "Screen Resolution", "",
|
|
MENU_SETTINGS_VIDEO_RESOLUTION, 0);
|
|
#endif
|
|
add_setting_entry(menu,"video_viwidth", 0, setting_data);
|
|
add_setting_entry(menu,"video_filter", MENU_SETTINGS_VIDEO_SOFTFILTER, setting_data);
|
|
add_setting_entry(menu, "pal60_enable", 0, setting_data);
|
|
add_setting_entry(menu,"video_smooth", 0, setting_data);
|
|
add_setting_entry(menu, "soft_filter", 0, setting_data);
|
|
add_setting_entry(menu,"video_gamma", 0, setting_data);
|
|
add_setting_entry(menu,"video_filter_flicker", 0,
|
|
setting_data);
|
|
add_setting_entry(menu,"video_scale_integer", 0, setting_data);
|
|
add_setting_entry(menu,"aspect_ratio_index", 0, setting_data);
|
|
file_list_push(menu->selection_buf, "Custom Ratio", "",
|
|
MENU_SETTINGS_CUSTOM_VIEWPORT, 0);
|
|
add_setting_entry(menu,"video_fullscreen", 0, setting_data);
|
|
add_setting_entry(menu,"video_windowed_fullscreen", 0, setting_data);
|
|
add_setting_entry(menu,"video_rotation", 0, setting_data);
|
|
add_setting_entry(menu,"video_vsync", 0, setting_data);
|
|
add_setting_entry(menu,"video_hard_sync", 0, setting_data);
|
|
add_setting_entry(menu,"video_hard_sync_frames", 0, setting_data);
|
|
add_setting_entry(menu,"video_frame_delay", 0, setting_data);
|
|
add_setting_entry(menu,"video_black_frame_insertion", 0, setting_data);
|
|
add_setting_entry(menu,"video_swap_interval", 0, setting_data);
|
|
add_setting_entry(menu,"video_threaded", 0, setting_data);
|
|
add_setting_entry(menu,"video_scale", 0, setting_data);
|
|
add_setting_entry(menu,"video_crop_overscan", 0, setting_data);
|
|
add_setting_entry(menu,"video_monitor_index", 0, setting_data);
|
|
add_setting_entry(menu,"video_refresh_rate", 0, setting_data);
|
|
add_setting_entry(menu,"video_refresh_rate_auto", 0, setting_data);
|
|
break;
|
|
case MENU_SETTINGS_FONT_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"video_font_enable", 0, setting_data);
|
|
add_setting_entry(menu,"video_font_size", 0, setting_data);
|
|
break;
|
|
case MENU_SETTINGS_CORE_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
|
|
if (g_extern.system.core_options)
|
|
{
|
|
size_t i, opts;
|
|
|
|
opts = core_option_size(g_extern.system.core_options);
|
|
for (i = 0; i < opts; i++)
|
|
file_list_push(menu->selection_buf,
|
|
core_option_get_desc(g_extern.system.core_options, i), "",
|
|
MENU_SETTINGS_CORE_OPTION_START + i, 0);
|
|
}
|
|
else
|
|
file_list_push(menu->selection_buf, "No options available.", "",
|
|
MENU_SETTINGS_CORE_OPTION_NONE, 0);
|
|
break;
|
|
case MENU_SETTINGS_CORE_INFO:
|
|
{
|
|
core_info_t *info = (core_info_t*)menu->core_info_current;
|
|
file_list_clear(menu->selection_buf);
|
|
|
|
if (info->data)
|
|
{
|
|
snprintf(tmp, sizeof(tmp), "Core name: %s",
|
|
info->display_name ? info->display_name : "");
|
|
file_list_push(menu->selection_buf, tmp, "",
|
|
MENU_SETTINGS_CORE_INFO_NONE, 0);
|
|
|
|
if (info->authors_list)
|
|
{
|
|
strlcpy(tmp, "Authors: ", sizeof(tmp));
|
|
string_list_join_concat(tmp, sizeof(tmp),
|
|
info->authors_list, ", ");
|
|
file_list_push(menu->selection_buf, tmp, "",
|
|
MENU_SETTINGS_CORE_INFO_NONE, 0);
|
|
}
|
|
|
|
if (info->permissions_list)
|
|
{
|
|
strlcpy(tmp, "Permissions: ", sizeof(tmp));
|
|
string_list_join_concat(tmp, sizeof(tmp),
|
|
info->permissions_list, ", ");
|
|
file_list_push(menu->selection_buf, tmp, "",
|
|
MENU_SETTINGS_CORE_INFO_NONE, 0);
|
|
}
|
|
|
|
if (info->supported_extensions_list)
|
|
{
|
|
strlcpy(tmp, "Supported extensions: ", sizeof(tmp));
|
|
string_list_join_concat(tmp, sizeof(tmp),
|
|
info->supported_extensions_list, ", ");
|
|
file_list_push(menu->selection_buf, tmp, "",
|
|
MENU_SETTINGS_CORE_INFO_NONE, 0);
|
|
}
|
|
|
|
if (info->firmware_count > 0)
|
|
{
|
|
core_info_list_update_missing_firmware(menu->core_info, info->path,
|
|
g_settings.system_directory);
|
|
|
|
file_list_push(menu->selection_buf, "Firmware: ", "",
|
|
MENU_SETTINGS_CORE_INFO_NONE, 0);
|
|
for (i = 0; i < info->firmware_count; i++)
|
|
{
|
|
if (info->firmware[i].desc)
|
|
{
|
|
snprintf(tmp, sizeof(tmp), " name: %s",
|
|
info->firmware[i].desc ? info->firmware[i].desc : "");
|
|
file_list_push(menu->selection_buf, tmp, "",
|
|
MENU_SETTINGS_CORE_INFO_NONE, 0);
|
|
|
|
snprintf(tmp, sizeof(tmp), " status: %s, %s",
|
|
info->firmware[i].missing ?
|
|
"missing" : "present",
|
|
info->firmware[i].optional ?
|
|
"optional" : "required");
|
|
file_list_push(menu->selection_buf, tmp, "",
|
|
MENU_SETTINGS_CORE_INFO_NONE, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (info->notes)
|
|
{
|
|
snprintf(tmp, sizeof(tmp), "Core notes: ");
|
|
file_list_push(menu->selection_buf, tmp, "",
|
|
MENU_SETTINGS_CORE_INFO_NONE, 0);
|
|
|
|
for (i = 0; i < info->note_list->size; i++)
|
|
{
|
|
snprintf(tmp, sizeof(tmp), " %s",
|
|
info->note_list->elems[i].data);
|
|
file_list_push(menu->selection_buf, tmp, "",
|
|
MENU_SETTINGS_CORE_INFO_NONE, 0);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
file_list_push(menu->selection_buf,
|
|
"No information available.", "",
|
|
MENU_SETTINGS_CORE_OPTION_NONE, 0);
|
|
}
|
|
break;
|
|
case MENU_SETTINGS_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"Driver Options", MENU_SETTINGS_DRIVERS, setting_data);
|
|
add_setting_entry(menu,"General Options", MENU_SETTINGS_GENERAL_OPTIONS, setting_data);
|
|
add_setting_entry(menu,"Video Options", MENU_SETTINGS_VIDEO_OPTIONS, setting_data);
|
|
add_setting_entry(menu,"Shader Options", MENU_SETTINGS_SHADER_OPTIONS, setting_data);
|
|
add_setting_entry(menu,"Font Options", MENU_SETTINGS_FONT_OPTIONS, setting_data);
|
|
add_setting_entry(menu,"Audio Options", MENU_SETTINGS_AUDIO_OPTIONS, setting_data);
|
|
add_setting_entry(menu,"Input Options", MENU_SETTINGS_INPUT_OPTIONS, setting_data);
|
|
add_setting_entry(menu,"Overlay Options", MENU_SETTINGS_OVERLAY_OPTIONS,
|
|
setting_data);
|
|
add_setting_entry(menu,"User Options", MENU_SETTINGS_USER_OPTIONS, setting_data);
|
|
add_setting_entry(menu,"Netplay Options", MENU_SETTINGS_NETPLAY_OPTIONS,
|
|
setting_data);
|
|
add_setting_entry(menu,"Path Options", MENU_SETTINGS_PATH_OPTIONS, setting_data);
|
|
if (g_extern.main_is_init && !g_extern.libretro_dummy)
|
|
{
|
|
if (g_extern.system.disk_control.get_num_images)
|
|
file_list_push(menu->selection_buf, "Disk Options", "",
|
|
MENU_SETTINGS_DISK_OPTIONS, 0);
|
|
}
|
|
add_setting_entry(menu,"Privacy Options", MENU_SETTINGS_PRIVACY_OPTIONS,
|
|
setting_data);
|
|
break;
|
|
case MENU_SETTINGS_PRIVACY_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"camera_allow", 0, setting_data);
|
|
add_setting_entry(menu,"location_allow", 0, setting_data);
|
|
break;
|
|
case MENU_SETTINGS_DISK_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
file_list_push(menu->selection_buf, "Disk Index", "",
|
|
MENU_SETTINGS_DISK_INDEX, 0);
|
|
file_list_push(menu->selection_buf, "Disk Image Append", "",
|
|
MENU_SETTINGS_DISK_APPEND, 0);
|
|
break;
|
|
case MENU_SETTINGS_OVERLAY_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"input_overlay", MENU_SETTINGS_OVERLAY_PRESET,
|
|
setting_data);
|
|
add_setting_entry(menu,"input_overlay_opacity", 0, setting_data);
|
|
add_setting_entry(menu,"input_overlay_scale", 0, setting_data);
|
|
break;
|
|
case MENU_SETTINGS_USER_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"netplay_nickname", 0, setting_data);
|
|
add_setting_entry(menu,"user_language", 0, setting_data);
|
|
break;
|
|
case MENU_SETTINGS_NETPLAY_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"netplay_enable", 0, setting_data);
|
|
add_setting_entry(menu,"netplay_mode", 0, setting_data);
|
|
add_setting_entry(menu,"netplay_spectator_mode_enable", 0, setting_data);
|
|
add_setting_entry(menu,"netplay_ip_address", 0, setting_data);
|
|
add_setting_entry(menu,"netplay_tcp_udp_port", 0, setting_data);
|
|
add_setting_entry(menu,"netplay_delay_frames", 0, setting_data);
|
|
break;
|
|
case MENU_SETTINGS_PATH_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"rgui_browser_directory",
|
|
MENU_BROWSER_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"content_directory",
|
|
MENU_CONTENT_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"assets_directory",
|
|
MENU_ASSETS_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"rgui_config_directory",
|
|
MENU_CONFIG_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"libretro_dir_path",
|
|
MENU_LIBRETRO_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"libretro_info_path",
|
|
MENU_LIBRETRO_INFO_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"game_history_path",
|
|
MENU_CONTENT_HISTORY_PATH, setting_data);
|
|
add_setting_entry(menu,"video_filter_dir",
|
|
MENU_FILTER_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"audio_filter_dir",
|
|
MENU_DSP_FILTER_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"video_shader_dir", MENU_SHADER_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"savestate_directory", MENU_SAVESTATE_DIR_PATH,
|
|
setting_data);
|
|
add_setting_entry(menu,"savefile_directory", MENU_SAVEFILE_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"overlay_directory", MENU_OVERLAY_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"system_directory", MENU_SYSTEM_DIR_PATH, setting_data);
|
|
add_setting_entry(menu,"screenshot_directory", MENU_SCREENSHOT_DIR_PATH,
|
|
setting_data);
|
|
add_setting_entry(menu,"joypad_autoconfig_dir", MENU_AUTOCONFIG_DIR_PATH,
|
|
setting_data);
|
|
add_setting_entry(menu,"extraction_directory", MENU_EXTRACTION_DIR_PATH,
|
|
setting_data);
|
|
break;
|
|
case MENU_SETTINGS_INPUT_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
file_list_push(menu->selection_buf, "Player", "",
|
|
MENU_SETTINGS_BIND_PLAYER, 0);
|
|
file_list_push(menu->selection_buf, "Device", "",
|
|
MENU_SETTINGS_BIND_DEVICE, 0);
|
|
file_list_push(menu->selection_buf, "Device Type", "",
|
|
MENU_SETTINGS_BIND_DEVICE_TYPE, 0);
|
|
file_list_push(menu->selection_buf, "Analog D-pad Mode", "",
|
|
MENU_SETTINGS_BIND_ANALOG_MODE, 0);
|
|
add_setting_entry(menu,"input_axis_threshold", 0, setting_data);
|
|
add_setting_entry(menu,"input_autodetect_enable", 0, setting_data);
|
|
file_list_push(menu->selection_buf, "Bind Mode", "",
|
|
MENU_SETTINGS_CUSTOM_BIND_MODE, 0);
|
|
file_list_push(menu->selection_buf, "Configure All (RetroPad)", "",
|
|
MENU_SETTINGS_CUSTOM_BIND_ALL, 0);
|
|
file_list_push(menu->selection_buf, "Default All (RetroPad)", "",
|
|
MENU_SETTINGS_CUSTOM_BIND_DEFAULT_ALL, 0);
|
|
add_setting_entry(menu,"osk_enable", MENU_SETTINGS_ONSCREEN_KEYBOARD_ENABLE,
|
|
setting_data);
|
|
for (i = MENU_SETTINGS_BIND_BEGIN; i <= MENU_SETTINGS_BIND_ALL_LAST; i++)
|
|
file_list_push(menu->selection_buf,
|
|
input_config_bind_map[i - MENU_SETTINGS_BIND_BEGIN].desc,
|
|
"", i, 0);
|
|
break;
|
|
case MENU_SETTINGS_AUDIO_OPTIONS:
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"audio_dsp_plugin", MENU_SETTINGS_AUDIO_DSP_FILTER, setting_data);
|
|
add_setting_entry(menu,"audio_enable", 0, setting_data);
|
|
add_setting_entry(menu,"audio_mute", 0, setting_data);
|
|
add_setting_entry(menu,"audio_latency", 0, setting_data);
|
|
add_setting_entry(menu,"audio_sync", 0, setting_data);
|
|
add_setting_entry(menu,"audio_rate_control_delta", 0, setting_data);
|
|
add_setting_entry(menu,"system_bgm_enable", 0, setting_data);
|
|
add_setting_entry(menu,"audio_volume", 0, setting_data);
|
|
add_setting_entry(menu,"audio_device", 0, setting_data);
|
|
break;
|
|
case MENU_SETTINGS_DRIVERS:
|
|
file_list_clear(menu->selection_buf);
|
|
add_setting_entry(menu,"video_driver", 0, setting_data);
|
|
add_setting_entry(menu,"audio_driver", 0, setting_data);
|
|
add_setting_entry(menu,"audio_resampler_driver", 0, setting_data);
|
|
add_setting_entry(menu,"input_driver", 0, setting_data);
|
|
add_setting_entry(menu,"camera_driver", 0, setting_data);
|
|
add_setting_entry(menu,"location_driver", 0, setting_data);
|
|
add_setting_entry(menu,"menu_driver", 0, setting_data);
|
|
break;
|
|
case MENU_SETTINGS_PERFORMANCE_COUNTERS:
|
|
file_list_clear(menu->selection_buf);
|
|
file_list_push(menu->selection_buf, "Frontend Counters", "",
|
|
MENU_SETTINGS_PERFORMANCE_COUNTERS_FRONTEND, 0);
|
|
file_list_push(menu->selection_buf, "Core Counters", "",
|
|
MENU_SETTINGS_PERFORMANCE_COUNTERS_LIBRETRO, 0);
|
|
break;
|
|
case MENU_SETTINGS_PERFORMANCE_COUNTERS_LIBRETRO:
|
|
file_list_clear(menu->selection_buf);
|
|
menu_entries_push_perfcounter(menu, perf_counters_libretro,
|
|
perf_ptr_libretro, MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN);
|
|
break;
|
|
case MENU_SETTINGS_PERFORMANCE_COUNTERS_FRONTEND:
|
|
file_list_clear(menu->selection_buf);
|
|
menu_entries_push_perfcounter(menu, perf_counters_rarch,
|
|
perf_ptr_rarch, MENU_SETTINGS_PERF_COUNTERS_BEGIN);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (do_action)
|
|
{
|
|
driver.menu->scroll_indices_size = 0;
|
|
if (menu_type != MENU_SETTINGS_OPEN_HISTORY)
|
|
menu_build_scroll_indices(driver.menu->selection_buf);
|
|
|
|
entries_refresh();
|
|
}
|
|
|
|
if (driver.menu_ctx && driver.menu_ctx->populate_entries)
|
|
driver.menu_ctx->populate_entries(menu, path, label, menu_type);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int menu_parse_check(unsigned menu_type)
|
|
{
|
|
if (!((menu_type == MENU_FILE_DIRECTORY ||
|
|
menu_common_type_is(menu_type) == MENU_SETTINGS_SHADER_OPTIONS ||
|
|
menu_common_type_is(menu_type) == MENU_FILE_DIRECTORY ||
|
|
menu_type == MENU_SETTINGS_OVERLAY_PRESET ||
|
|
menu_type == MENU_CONTENT_HISTORY_PATH ||
|
|
menu_type == MENU_SETTINGS_VIDEO_SOFTFILTER ||
|
|
menu_type == MENU_SETTINGS_AUDIO_DSP_FILTER ||
|
|
menu_type == MENU_SETTINGS_CORE ||
|
|
menu_type == MENU_SETTINGS_CONFIG ||
|
|
menu_type == MENU_SETTINGS_DISK_APPEND)))
|
|
return -1;
|
|
return 0;
|
|
}
|
|
|
|
int menu_parse_and_resolve(void)
|
|
{
|
|
size_t i, list_size;
|
|
unsigned menu_type = 0;
|
|
|
|
const char *dir = NULL;
|
|
const char *label = NULL;
|
|
/* Directory parse */
|
|
file_list_get_last(driver.menu->menu_stack, &dir, &label, &menu_type);
|
|
|
|
if (
|
|
menu_type == MENU_SETTINGS_DEFERRED_CORE ||
|
|
menu_type == MENU_SETTINGS_OPEN_HISTORY
|
|
)
|
|
return menu_entries_push(driver.menu, dir, label, menu_type);
|
|
|
|
if (menu_parse_check(menu_type) == -1)
|
|
return - 1;
|
|
|
|
file_list_clear(driver.menu->selection_buf);
|
|
|
|
if (!*dir)
|
|
{
|
|
#if defined(GEKKO)
|
|
#ifdef HW_RVL
|
|
file_list_push(driver.menu->selection_buf,
|
|
"sd:/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"usb:/", "", menu_type, 0);
|
|
#endif
|
|
file_list_push(driver.menu->selection_buf,
|
|
"carda:/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"cardb:/", "", menu_type, 0);
|
|
#elif defined(_XBOX1)
|
|
file_list_push(driver.menu->selection_buf,
|
|
"C:", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"D:", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"E:", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"F:", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"G:", "", menu_type, 0);
|
|
#elif defined(_XBOX360)
|
|
file_list_push(driver.menu->selection_buf,
|
|
"game:", "", menu_type, 0);
|
|
#elif defined(_WIN32)
|
|
unsigned drives = GetLogicalDrives();
|
|
char drive[] = " :\\";
|
|
for (i = 0; i < 32; i++)
|
|
{
|
|
drive[0] = 'A' + i;
|
|
if (drives & (1 << i))
|
|
file_list_push(driver.menu->selection_buf,
|
|
drive, "", menu_type, 0);
|
|
}
|
|
#elif defined(__CELLOS_LV2__)
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/app_home/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/dev_hdd0/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/dev_hdd1/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/host_root/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/dev_usb000/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/dev_usb001/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/dev_usb002/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/dev_usb003/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/dev_usb004/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/dev_usb005/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/dev_usb006/", "", menu_type, 0);
|
|
#elif defined(PSP)
|
|
file_list_push(driver.menu->selection_buf,
|
|
"ms0:/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"ef0:/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
"host0:/", "", menu_type, 0);
|
|
#elif defined(IOS)
|
|
file_list_push(driver.menu->selection_buf,
|
|
"/var/mobile/", "", menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf,
|
|
g_defaults.core_dir, "",menu_type, 0);
|
|
file_list_push(driver.menu->selection_buf, "/", "",
|
|
menu_type, 0);
|
|
#else
|
|
file_list_push(driver.menu->selection_buf, "/", "",
|
|
menu_type, 0);
|
|
#endif
|
|
return 0;
|
|
}
|
|
#if defined(GEKKO) && defined(HW_RVL)
|
|
LWP_MutexLock(gx_device_mutex);
|
|
int dev = gx_get_device_from_path(dir);
|
|
|
|
if (dev != -1 && !gx_devices[dev].mounted &&
|
|
gx_devices[dev].interface->isInserted())
|
|
fatMountSimple(gx_devices[dev].name, gx_devices[dev].interface);
|
|
|
|
LWP_MutexUnlock(gx_device_mutex);
|
|
#endif
|
|
|
|
const char *exts;
|
|
char ext_buf[1024];
|
|
if (menu_type == MENU_SETTINGS_CORE)
|
|
exts = EXT_EXECUTABLES;
|
|
else if (menu_type == MENU_SETTINGS_CONFIG)
|
|
exts = "cfg";
|
|
else if (menu_type == MENU_SETTINGS_SHADER_PRESET)
|
|
exts = "cgp|glslp";
|
|
else if (menu_common_type_is(menu_type) == MENU_SETTINGS_SHADER_OPTIONS)
|
|
exts = "cg|glsl";
|
|
else if (menu_type == MENU_SETTINGS_VIDEO_SOFTFILTER)
|
|
exts = "filt";
|
|
else if (menu_type == MENU_SETTINGS_AUDIO_DSP_FILTER)
|
|
exts = "dsp";
|
|
else if (menu_type == MENU_SETTINGS_OVERLAY_PRESET)
|
|
exts = "cfg";
|
|
else if (menu_type == MENU_CONTENT_HISTORY_PATH)
|
|
exts = "cfg";
|
|
else if (menu_common_type_is(menu_type) == MENU_FILE_DIRECTORY)
|
|
exts = ""; // we ignore files anyway
|
|
else if (driver.menu->defer_core)
|
|
exts = driver.menu->core_info ? core_info_list_get_all_extensions(
|
|
driver.menu->core_info) : "";
|
|
else if (driver.menu->info.valid_extensions)
|
|
{
|
|
exts = ext_buf;
|
|
if (*driver.menu->info.valid_extensions)
|
|
snprintf(ext_buf, sizeof(ext_buf), "%s|zip",
|
|
driver.menu->info.valid_extensions);
|
|
else
|
|
*ext_buf = '\0';
|
|
}
|
|
else
|
|
exts = g_extern.system.valid_extensions;
|
|
|
|
struct string_list *str_list = dir_list_new(dir, exts, true);
|
|
if (!str_list)
|
|
return -1;
|
|
|
|
dir_list_sort(str_list, true);
|
|
|
|
if (menu_common_type_is(menu_type) == MENU_FILE_DIRECTORY)
|
|
file_list_push(driver.menu->selection_buf, "<Use this directory>", "",
|
|
MENU_FILE_USE_DIRECTORY, 0);
|
|
|
|
list_size = str_list->size;
|
|
for (i = 0; i < str_list->size; i++)
|
|
{
|
|
bool is_dir = str_list->elems[i].attr.b;
|
|
|
|
if ((menu_common_type_is(menu_type) == MENU_FILE_DIRECTORY) && !is_dir)
|
|
continue;
|
|
|
|
// Need to preserve slash first time.
|
|
const char *path = str_list->elems[i].data;
|
|
if (*dir)
|
|
path = path_basename(path);
|
|
|
|
#ifdef HAVE_LIBRETRO_MANAGEMENT
|
|
if (menu_type == MENU_SETTINGS_CORE && (is_dir ||
|
|
strcasecmp(path, SALAMANDER_FILE) == 0))
|
|
continue;
|
|
#endif
|
|
|
|
// Push menu_type further down in the chain.
|
|
// Needed for shader manager currently.
|
|
file_list_push(driver.menu->selection_buf, path, "",
|
|
is_dir ? menu_type : MENU_FILE_PLAIN, 0);
|
|
}
|
|
|
|
menu_entries_push(driver.menu, dir, label, menu_type);
|
|
string_list_free(str_list);
|
|
|
|
switch (menu_type)
|
|
{
|
|
case MENU_SETTINGS_CORE:
|
|
{
|
|
file_list_t *list = (file_list_t*)driver.menu->selection_buf;
|
|
file_list_get_last(driver.menu->menu_stack, &dir, NULL,
|
|
&menu_type);
|
|
list_size = file_list_get_size(list);
|
|
|
|
for (i = 0; i < list_size; i++)
|
|
{
|
|
char core_path[PATH_MAX], display_name[256];
|
|
const char *path = NULL;
|
|
unsigned type = 0;
|
|
|
|
file_list_get_at_offset(list, i, &path, NULL, &type);
|
|
if (type != MENU_FILE_PLAIN)
|
|
continue;
|
|
|
|
fill_pathname_join(core_path, dir, path, sizeof(core_path));
|
|
|
|
if (driver.menu->core_info &&
|
|
core_info_list_get_display_name(driver.menu->core_info,
|
|
core_path, display_name, sizeof(display_name)))
|
|
file_list_set_alt_at_offset(list, i, display_name);
|
|
}
|
|
file_list_sort_on_alt(driver.menu->selection_buf);
|
|
}
|
|
break;
|
|
}
|
|
|
|
driver.menu->scroll_indices_size = 0;
|
|
if (menu_type != MENU_SETTINGS_OPEN_HISTORY)
|
|
menu_build_scroll_indices(driver.menu->selection_buf);
|
|
|
|
entries_refresh();
|
|
|
|
return 0;
|
|
}
|
|
|
|
void menu_entries_push_info(void)
|
|
{
|
|
file_list_push(driver.menu->menu_stack, "", "help", 0, 0);
|
|
}
|
|
|
|
void menu_flush_stack_type(unsigned final_type)
|
|
{
|
|
const char *path = NULL;
|
|
const char *label = NULL;
|
|
unsigned type = 0;
|
|
|
|
if (!driver.menu)
|
|
return;
|
|
|
|
driver.menu->need_refresh = true;
|
|
file_list_get_last(driver.menu->menu_stack, &path, &label, &type);
|
|
while (type != final_type)
|
|
{
|
|
file_list_pop(driver.menu->menu_stack, &driver.menu->selection_ptr);
|
|
file_list_get_last(driver.menu->menu_stack, &path, &label, &type);
|
|
}
|
|
}
|