Get rid of hacky per-core config - this and config overrides

was mutually exclusive, so time to cut the fat
This commit is contained in:
twinaphex 2016-07-30 16:49:04 +02:00
parent 06814f44d4
commit e477555991
4 changed files with 0 additions and 123 deletions

View File

@ -558,13 +558,6 @@ static const uint32_t menu_title_color = 0xff64ff64;
static bool default_block_config_read = false;
#endif
/* Turn per-core configs off for PS3 for now until we can get this to work fine again */
#if defined(RARCH_CONSOLE) && !defined(__CELLOS_LV2__)
static bool default_core_specific_config = true;
#else
static bool default_core_specific_config = false;
#endif
static bool default_game_specific_options = false;
static bool default_auto_overrides_enable = true;
static bool default_auto_remaps_enable = true;

View File

@ -779,7 +779,6 @@ static void config_set_defaults(void)
*settings->playlist_cores = '\0';
*settings->directory.content_history = '\0';
*settings->path.audio_dsp_plugin = '\0';
settings->core_specific_config = default_core_specific_config;
settings->game_specific_options = default_game_specific_options;
settings->auto_overrides_enable = default_auto_overrides_enable;
settings->auto_remaps_enable = default_auto_remaps_enable;
@ -1262,7 +1261,6 @@ static bool config_load_file(const char *path, bool set_defaults)
{ "history_list_enable", &settings->history_list_enable },
{ "fps_show", &settings->fps_show},
{ "video_black_frame_insertion", &settings->video.black_frame_insertion},
{ "core_specific_config", &settings->core_specific_config},
{ "game_specific_options", &settings->game_specific_options},
{ "auto_overrides_enable", &settings->auto_overrides_enable},
{ "auto_remaps_enable", &settings->auto_remaps_enable},
@ -1966,77 +1964,6 @@ static bool config_load_file(const char *path, bool set_defaults)
return true;
}
/* Config file associated with per-core configs. */
static char path_core_specific_config[PATH_MAX_LENGTH];
static void config_load_core_specific(void)
{
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
*path_core_specific_config = '\0';
if (string_is_empty(config_get_active_core_path()))
{
RARCH_WARN("Active core path not set, cannot load core-specific config file...\n");
return;
}
#ifdef HAVE_DYNAMIC
if (rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL))
return;
#endif
#ifdef HAVE_MENU
if (!string_is_empty(settings->directory.menu_config))
{
path_resolve_realpath(settings->directory.menu_config,
sizeof(settings->directory.menu_config));
strlcpy(path_core_specific_config,
settings->directory.menu_config,
sizeof(path_core_specific_config));
}
else
#endif
{
/* Use original config file's directory as a fallback. */
fill_pathname_basedir(path_core_specific_config,
global->path.config, sizeof(path_core_specific_config));
}
fill_pathname_dir(path_core_specific_config,
config_get_active_core_path(),
file_path_str(FILE_PATH_CONFIG_EXTENSION),
sizeof(path_core_specific_config));
if (settings->core_specific_config)
{
char tmp[PATH_MAX_LENGTH] = {0};
/* Toggle has_save_path to false so it resets */
global->has_set.save_path = false;
global->has_set.state_path = false;
strlcpy(tmp, config_get_active_core_path(), sizeof(tmp));
RARCH_LOG("Config: loading core-specific config from: %s.\n",
path_core_specific_config);
if (!config_load_file(path_core_specific_config, true))
RARCH_WARN("Config: core-specific config not found, reusing last config.\n");
/* Force some parameters which are implied when using core specific configs.
* Don't have the core config file overwrite the libretro path. */
config_set_active_core_path(tmp);
/* This must be true for core specific configs. */
settings->core_specific_config = true;
/* Reset save paths */
global->has_set.save_path = true;
global->has_set.state_path = true;
}
}
/**
* config_load_override:
*
@ -2101,11 +2028,6 @@ bool config_load_override(void)
{
config_file_free(new_conf);
if (settings->core_specific_config)
{
RARCH_LOG("Overrides: can't use overrides with with per-core configs, disabling overrides.\n");
return false;
}
RARCH_LOG("Overrides: core-specific overrides found at %s.\n", core_path);
strlcpy(global->path.append_config, core_path, sizeof(global->path.append_config));
@ -2140,13 +2062,6 @@ bool config_load_override(void)
return false;
/* Re-load the configuration with any overrides that might have been found */
if (settings->core_specific_config)
{
RARCH_LOG("Overrides: can't use overrides with with per-core configs, disabling overrides.\n");
return false;
}
#ifdef HAVE_NETPLAY
if (global->netplay.enable)
{
@ -2509,11 +2424,6 @@ void config_load(void)
{
settings_t *settings = config_get_ptr();
/* Flush out per-core configs before loading a new config. */
if (!string_is_empty(path_core_specific_config) &&
settings->config_save_on_exit && settings->core_specific_config)
config_save_file(path_core_specific_config);
/* Flush out some states that could have been
* set by core environment variables */
core_unset_input_descriptors();
@ -2523,9 +2433,6 @@ void config_load(void)
config_set_defaults();
parse_config_file();
}
/* Per-core config handling. */
config_load_core_specific();
}
#if 0
@ -2745,7 +2652,6 @@ bool config_save_file(const char *path)
{ "savestate_auto_save", settings->savestate_auto_save},
{ "savestate_auto_load", settings->savestate_auto_load},
{ "history_list_enable", settings->history_list_enable},
{ "core_specific_config", settings->core_specific_config},
{ "game_specific_options", settings->game_specific_options},
{ "auto_overrides_enable", settings->auto_overrides_enable},
{ "auto_remaps_enable", settings->auto_remaps_enable},
@ -3202,10 +3108,6 @@ const char *config_get_active_path(void)
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
if (!string_is_empty(path_core_specific_config)
&& settings->core_specific_config)
return path_core_specific_config;
if (!string_is_empty(global->path.config))
return global->path.config;
@ -3214,5 +3116,4 @@ const char *config_get_active_path(void)
void config_free_state(void)
{
path_core_specific_config[0] = '\0';
}

View File

@ -462,7 +462,6 @@ typedef struct settings
bool fps_show;
bool load_dummy_on_core_shutdown;
bool core_specific_config;
bool game_specific_options;
bool auto_overrides_enable;
bool auto_remaps_enable;

View File

@ -4662,22 +4662,6 @@ static bool setting_append_list(
SD_FLAG_NONE);
menu_settings_list_current_add_enum_idx(list, list_info, MENU_ENUM_LABEL_CONFIG_SAVE_ON_EXIT);
CONFIG_BOOL(
list, list_info,
&settings->core_specific_config,
msg_hash_to_str(MENU_ENUM_LABEL_CORE_SPECIFIC_CONFIG),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG),
default_core_specific_config,
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ON),
&group_info,
&subgroup_info,
parent_group,
general_write_handler,
general_read_handler,
SD_FLAG_NONE);
menu_settings_list_current_add_enum_idx(list, list_info, MENU_ENUM_LABEL_CORE_SPECIFIC_CONFIG);
CONFIG_BOOL(
list, list_info,
&settings->game_specific_options,