mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
137 lines
3.5 KiB
C
137 lines
3.5 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2013-2014 - Jason Fetters
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
*
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "settings_list.h"
|
|
|
|
void settings_info_list_free(rarch_setting_info_t *list_info)
|
|
{
|
|
if (list_info)
|
|
free(list_info);
|
|
list_info = NULL;
|
|
}
|
|
|
|
rarch_setting_info_t *settings_info_list_new(void)
|
|
{
|
|
rarch_setting_info_t *list_info = (rarch_setting_info_t*)
|
|
calloc(1, sizeof(*list_info));
|
|
|
|
if (!list_info)
|
|
return NULL;
|
|
|
|
list_info->index = 0;
|
|
list_info->size = 32;
|
|
|
|
return list_info;
|
|
}
|
|
|
|
bool settings_list_append(rarch_setting_t **list,
|
|
rarch_setting_info_t *list_info, rarch_setting_t value)
|
|
{
|
|
if (!list || !*list || !list_info)
|
|
return false;
|
|
|
|
if (list_info->index == list_info->size)
|
|
{
|
|
list_info->size *= 2;
|
|
*list = (rarch_setting_t*)
|
|
realloc(*list, sizeof(rarch_setting_t) * list_info->size);
|
|
if (!*list)
|
|
return false;
|
|
}
|
|
|
|
(*list)[list_info->index++] = value;
|
|
return true;
|
|
}
|
|
|
|
static void null_write_handler(void *data)
|
|
{
|
|
(void)data;
|
|
}
|
|
|
|
void settings_list_current_add_bind_type(
|
|
rarch_setting_t **list,
|
|
rarch_setting_info_t *list_info,
|
|
unsigned type)
|
|
{
|
|
unsigned idx = list_info->index - 1;
|
|
(*list)[idx].bind_type = type;
|
|
}
|
|
|
|
void settings_list_current_add_flags(
|
|
rarch_setting_t **list,
|
|
rarch_setting_info_t *list_info,
|
|
unsigned values)
|
|
{
|
|
unsigned idx = list_info->index - 1;
|
|
(*list)[idx].flags |= values;
|
|
|
|
if (values & SD_FLAG_IS_DEFERRED)
|
|
{
|
|
(*list)[idx].deferred_handler = (*list)[idx].change_handler;
|
|
(*list)[idx].change_handler = null_write_handler;
|
|
}
|
|
}
|
|
|
|
void settings_list_current_add_range(
|
|
rarch_setting_t **list,
|
|
rarch_setting_info_t *list_info,
|
|
float min, float max, float step,
|
|
bool enforce_minrange_enable, bool enforce_maxrange_enable)
|
|
{
|
|
unsigned idx = list_info->index - 1;
|
|
|
|
(*list)[idx].min = min;
|
|
(*list)[idx].step = step;
|
|
(*list)[idx].max = max;
|
|
(*list)[idx].enforce_minrange = enforce_minrange_enable;
|
|
(*list)[idx].enforce_maxrange = enforce_maxrange_enable;
|
|
|
|
settings_list_current_add_flags(list, list_info, SD_FLAG_HAS_RANGE);
|
|
}
|
|
|
|
void settings_list_current_add_values(
|
|
rarch_setting_t **list,
|
|
rarch_setting_info_t *list_info,
|
|
const char *values)
|
|
{
|
|
unsigned idx = list_info->index - 1;
|
|
(*list)[idx].values = values;
|
|
}
|
|
|
|
void settings_list_current_add_cmd(
|
|
rarch_setting_t **list,
|
|
rarch_setting_info_t *list_info,
|
|
unsigned values)
|
|
{
|
|
unsigned idx = list_info->index - 1;
|
|
(*list)[idx].cmd_trigger.idx = values;
|
|
}
|
|
|
|
void settings_list_free(rarch_setting_t *list)
|
|
{
|
|
if (list)
|
|
free(list);
|
|
}
|
|
|
|
rarch_setting_t *settings_list_new(unsigned size)
|
|
{
|
|
rarch_setting_t *list = (rarch_setting_t*)calloc(size, sizeof(*list));
|
|
if (!list)
|
|
return NULL;
|
|
|
|
return list;
|
|
}
|