/* RetroArch - A frontend for libretro. * Copyright (C) 2013-2014 - Jason Fetters * * 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 . */ #ifndef __RARCH_SETTINGS_DATA_H__ #define __RARCH_SETTINGS_DATA_H__ #include "general.h" #define SETTINGS_DATA_LIST_SIZE 512 #define BINDFOR(s) (*(&s)->value.keybind) enum setting_type { ST_NONE = 0, ST_BOOL, ST_INT, ST_UINT, ST_FLOAT, ST_PATH, ST_STRING, ST_HEX, ST_BIND, ST_GROUP, ST_SUB_GROUP, ST_END_GROUP, ST_END_SUB_GROUP }; enum setting_flags { SD_FLAG_PATH_DIR = 1, SD_FLAG_PATH_FILE = 2, SD_FLAG_ALLOW_EMPTY = 4, SD_FLAG_VALUE_DESC = 8, SD_FLAG_HAS_RANGE = 16 }; typedef void (*change_handler_t)(const void *data); typedef struct rarch_setting_t { enum setting_type type; const char* name; uint32_t size; const char* short_description; const char* group; const char* subgroup; uint32_t index; double min; double max; const char* values; uint64_t flags; change_handler_t change_handler; change_handler_t read_handler; union { bool boolean; int integer; unsigned int unsigned_integer; float fraction; const char* string; const struct retro_keybind* keybind; } default_value; union { bool* boolean; int* integer; unsigned int* unsigned_integer; float* fraction; char* string; struct retro_keybind* keybind; } value; } rarch_setting_t; void setting_data_reset_setting(const rarch_setting_t* setting); void setting_data_reset(const rarch_setting_t* settings); bool setting_data_load_config_path(const rarch_setting_t* settings, const char* path); rarch_setting_t* setting_data_find_setting(rarch_setting_t* settings, const char* name); void setting_data_set_with_string_representation(const rarch_setting_t* setting, const char* value); const char* setting_data_get_string_representation(const rarch_setting_t* setting, char* buffer, size_t length); // These functions operate only on RetroArch's main settings list rarch_setting_t* setting_data_get_list(void); #ifdef APPLE #include "input/apple_keycode.h" #endif #endif