RetroArch/core_options.c

364 lines
8.2 KiB
C
Raw Normal View History

2013-04-04 11:58:30 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2015-01-07 16:46:50 +00:00
* Copyright (C) 2011-2015 - Daniel De Matteis
2013-04-04 11:58:30 +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 "core_options.h"
#include <string.h>
2014-10-22 01:35:04 +00:00
#include <file/config_file.h>
2014-10-21 23:13:05 +00:00
#include <file/dir_list.h>
2014-10-21 05:58:58 +00:00
#include <compat/posix_string.h>
#include <compat/strl.h>
#include <retro_miscellaneous.h>
2013-04-04 11:58:30 +00:00
struct core_option
{
char *desc;
char *key;
struct string_list *vals;
size_t index;
};
struct core_option_manager
{
config_file_t *conf;
char conf_path[PATH_MAX_LENGTH];
2013-04-04 11:58:30 +00:00
struct core_option *opts;
size_t size;
bool updated;
};
/**
* core_option_free:
* @opt : options manager handle
*
* Frees core option manager handle.
**/
2013-04-04 11:58:30 +00:00
void core_option_free(core_option_manager_t *opt)
{
size_t i;
2015-01-15 21:05:07 +00:00
2013-04-04 11:58:30 +00:00
if (!opt)
return;
for (i = 0; i < opt->size; i++)
2013-04-04 11:58:30 +00:00
{
free(opt->opts[i].desc);
free(opt->opts[i].key);
string_list_free(opt->opts[i].vals);
}
if (opt->conf)
config_file_free(opt->conf);
free(opt->opts);
free(opt);
}
void core_option_get(core_option_manager_t *opt, struct retro_variable *var)
{
size_t i;
2015-01-15 21:05:07 +00:00
opt->updated = false;
2015-01-15 21:05:07 +00:00
for (i = 0; i < opt->size; i++)
2013-04-04 11:58:30 +00:00
{
2015-01-15 21:05:07 +00:00
if (!strcmp(opt->opts[i].key, var->key))
2013-04-04 11:58:30 +00:00
{
var->value = core_option_get_val(opt, i);
return;
}
}
var->value = NULL;
}
static bool parse_variable(core_option_manager_t *opt, size_t idx,
2014-09-02 03:10:54 +00:00
const struct retro_variable *var)
2013-04-04 11:58:30 +00:00
{
size_t i;
2015-01-15 21:05:07 +00:00
const char *val_start;
char *value, *desc_end, *config_val = NULL;
struct core_option *option = (struct core_option*)&opt->opts[idx];
2015-01-08 02:58:14 +00:00
if (!option)
return false;
2013-04-04 11:58:30 +00:00
option->key = strdup(var->key);
2015-01-15 21:05:07 +00:00
value = strdup(var->value);
desc_end = strstr(value, "; ");
2013-04-04 11:58:30 +00:00
if (!desc_end)
{
free(value);
return false;
}
2015-01-15 21:05:07 +00:00
*desc_end = '\0';
2013-04-04 11:58:30 +00:00
option->desc = strdup(value);
2015-01-15 21:05:07 +00:00
val_start = desc_end + 2;
2013-04-04 11:58:30 +00:00
option->vals = string_split(val_start, "|");
if (!option->vals)
{
free(value);
return false;
}
if (config_get_string(opt->conf, option->key, &config_val))
{
for (i = 0; i < option->vals->size; i++)
2013-04-04 11:58:30 +00:00
{
if (!strcmp(option->vals->elems[i].data, config_val))
2013-04-04 11:58:30 +00:00
{
option->index = i;
break;
}
}
free(config_val);
}
free(value);
2013-04-04 12:13:42 +00:00
2013-04-04 11:58:30 +00:00
return true;
}
/**
* core_option_new:
* @conf_path : Filesystem path to write core option config file to.
* @vars : Pointer to variable array handle.
*
* Creates and initializes a core manager handle.
*
* Returns: handle to new core manager handle, otherwise NULL.
**/
2014-09-02 03:10:54 +00:00
core_option_manager_t *core_option_new(const char *conf_path,
const struct retro_variable *vars)
2013-04-04 11:58:30 +00:00
{
const struct retro_variable *var;
2015-01-08 02:58:14 +00:00
size_t size = 0;
2014-09-02 03:10:54 +00:00
core_option_manager_t *opt = (core_option_manager_t*)
calloc(1, sizeof(*opt));
2013-04-04 11:58:30 +00:00
if (!opt)
return NULL;
if (*conf_path)
opt->conf = config_file_new(conf_path);
if (!opt->conf)
opt->conf = config_file_new(NULL);
strlcpy(opt->conf_path, conf_path, sizeof(opt->conf_path));
if (!opt->conf)
goto error;
for (var = vars; var->key && var->value; var++)
2013-04-04 11:58:30 +00:00
size++;
opt->opts = (struct core_option*)calloc(size, sizeof(*opt->opts));
if (!opt->opts)
goto error;
opt->size = size;
size = 0;
for (var = vars; var->key && var->value; size++, var++)
2013-04-04 11:58:30 +00:00
{
if (!parse_variable(opt, size, var))
goto error;
}
return opt;
error:
core_option_free(opt);
return NULL;
}
/**
* core_option_updated:
* @opt : options manager handle
*
* Has a core option been updated?
*
* Returns: true (1) if a core option has been updated,
* otherwise false (0).
**/
2013-04-04 11:58:30 +00:00
bool core_option_updated(core_option_manager_t *opt)
{
2015-01-09 01:06:41 +00:00
if (!opt)
return false;
return opt->updated;
2013-04-04 11:58:30 +00:00
}
/**
* core_option_flush:
* @opt : options manager handle
*
* Writes core option key-pair values to file.
*
* Returns: true (1) if core option values could be
* successfully saved to disk, otherwise false (0).
**/
bool core_option_flush(core_option_manager_t *opt)
2013-04-04 11:58:30 +00:00
{
size_t i;
for (i = 0; i < opt->size; i++)
2013-04-04 11:58:30 +00:00
{
2014-08-02 14:15:40 +00:00
struct core_option *option = (struct core_option*)&opt->opts[i];
2015-01-08 02:58:14 +00:00
if (option)
config_set_string(opt->conf, option->key, core_option_get_val(opt, i));
2013-04-04 11:58:30 +00:00
}
return config_file_write(opt->conf, opt->conf_path);
2013-04-04 11:58:30 +00:00
}
2015-01-09 21:01:19 +00:00
/**
* core_option_size:
* @opt : options manager handle
*
* Gets total number of options.
*
* Returns: Total number of options.
**/
2013-04-04 11:58:30 +00:00
size_t core_option_size(core_option_manager_t *opt)
{
2015-01-08 02:58:14 +00:00
if (!opt)
return 0;
return opt->size;
2013-04-04 11:58:30 +00:00
}
2015-01-09 21:01:19 +00:00
/**
* core_option_get_desc:
* @opt : options manager handle
* @index : index identifier of the option
*
* Gets description for an option.
*
* Returns: Description for an option.
**/
const char *core_option_get_desc(core_option_manager_t *opt, size_t idx)
2013-04-04 11:58:30 +00:00
{
2015-01-08 02:58:14 +00:00
if (!opt)
return NULL;
return opt->opts[idx].desc;
2013-04-04 11:58:30 +00:00
}
2015-01-09 21:01:19 +00:00
/**
* core_option_get_val:
* @opt : options manager handle
* @index : index identifier of the option
*
* Gets value for an option.
*
* Returns: Value for an option.
**/
const char *core_option_get_val(core_option_manager_t *opt, size_t idx)
2013-04-04 11:58:30 +00:00
{
struct core_option *option = (struct core_option*)&opt->opts[idx];
2015-01-08 02:58:14 +00:00
if (!option)
return NULL;
return option->vals->elems[option->index].data;
2013-04-04 11:58:30 +00:00
}
2015-01-15 21:05:07 +00:00
/**
* core_option_get_vals:
* @opt : pointer to core option manager object.
* @idx : idx of core option.
*
* Gets list of core option values from core option at index @idx.
*
* Returns: string list of core option values if successful, otherwise
* NULL.
**/
2014-09-02 03:10:54 +00:00
struct string_list *core_option_get_vals(
core_option_manager_t *opt, size_t idx)
{
2015-01-08 02:58:14 +00:00
if (!opt)
return NULL;
return opt->opts[idx].vals;
}
2014-09-02 03:10:54 +00:00
void core_option_set_val(core_option_manager_t *opt,
size_t idx, size_t val_idx)
{
struct core_option *option= (struct core_option*)&opt->opts[idx];
if (!option)
return;
option->index = val_idx % option->vals->size;
2015-01-15 21:05:07 +00:00
opt->updated = true;
}
2015-01-08 02:58:14 +00:00
/**
2015-01-09 21:01:19 +00:00
* core_option_next:
2015-01-08 02:58:14 +00:00
* @opt : pointer to core option manager object.
* @idx : index of core option to be reset to defaults.
*
* Get next value for core option specified by @idx.
2015-01-09 21:01:19 +00:00
* Options wrap around.
2015-01-08 02:58:14 +00:00
**/
void core_option_next(core_option_manager_t *opt, size_t idx)
2013-04-04 11:58:30 +00:00
{
struct core_option *option = (struct core_option*)&opt->opts[idx];
if (!option)
return;
2013-04-04 11:58:30 +00:00
option->index = (option->index + 1) % option->vals->size;
2015-01-15 21:05:07 +00:00
opt->updated = true;
2013-04-04 11:58:30 +00:00
}
2015-01-08 02:58:14 +00:00
/**
* core_option_prev:
* @opt : pointer to core option manager object.
* @idx : index of core option to be reset to defaults.
2015-01-09 21:01:19 +00:00
* Options wrap around.
2015-01-08 02:58:14 +00:00
*
* Get previous value for core option specified by @idx.
2015-01-09 21:01:19 +00:00
* Options wrap around.
2015-01-08 02:58:14 +00:00
**/
void core_option_prev(core_option_manager_t *opt, size_t idx)
2013-04-04 11:58:30 +00:00
{
struct core_option *option = (struct core_option*)&opt->opts[idx];
if (!option)
return;
2014-09-02 03:10:54 +00:00
option->index = (option->index + option->vals->size - 1) %
option->vals->size;
2015-01-15 21:05:07 +00:00
opt->updated = true;
2013-04-04 11:58:30 +00:00
}
2015-01-08 02:58:14 +00:00
/**
* core_option_set_default:
* @opt : pointer to core option manager object.
* @idx : index of core option to be reset to defaults.
*
2015-01-09 21:01:19 +00:00
* Reset core option specified by @idx and sets default value for option.
2015-01-08 02:58:14 +00:00
**/
void core_option_set_default(core_option_manager_t *opt, size_t idx)
2013-04-04 11:58:30 +00:00
{
if (!opt)
return;
opt->opts[idx].index = 0;
2015-01-15 21:05:07 +00:00
opt->updated = true;
2013-04-04 11:58:30 +00:00
}