2013-11-22 14:30:02 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright ( C ) 2013 - 2014 - Jason Fetters
2013-11-22 14:30:02 +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/>.
*/
2014-05-03 16:38:29 +00:00
# include "settings_data.h"
# include "file_path.h"
# include "input/input_common.h"
# include "config.def.h"
# define ENFORCE_RANGE(setting, type) \
{ \
if ( setting - > flags & SD_FLAG_HAS_RANGE ) \
{ \
if ( * setting - > value . type < setting - > min ) \
* setting - > value . type = setting - > min ; \
if ( * setting - > value . type > setting - > max ) \
* setting - > value . type = setting - > max ; \
} \
}
2013-11-22 14:30:02 +00:00
2013-12-24 19:03:43 +00:00
// HACK
struct settings fake_settings ;
struct global fake_extern ;
2014-04-26 01:14:53 +00:00
void setting_data_load_current ( void )
2013-12-24 19:03:43 +00:00
{
memcpy ( & fake_settings , & g_settings , sizeof ( struct settings ) ) ;
memcpy ( & fake_extern , & g_extern , sizeof ( struct global ) ) ;
}
2013-11-22 14:30:02 +00:00
// Input
static const char * get_input_config_prefix ( const rarch_setting_t * setting )
{
static char buffer [ 32 ] ;
snprintf ( buffer , 32 , " input%cplayer%d " , setting - > index ? ' _ ' : ' \0 ' , setting - > index ) ;
return buffer ;
}
static const char * get_input_config_key ( const rarch_setting_t * setting , const char * type )
{
static char buffer [ 64 ] ;
snprintf ( buffer , 64 , " %s_%s%c%s " , get_input_config_prefix ( setting ) , setting - > name , type ? ' _ ' : ' \0 ' , type ) ;
return buffer ;
}
2014-05-03 16:38:29 +00:00
//FIXME - make portable
# ifdef APPLE
2013-11-22 14:30:02 +00:00
static const char * get_key_name ( const rarch_setting_t * setting )
{
2014-07-08 17:23:53 +00:00
uint32_t hidkey , i ;
2013-11-22 14:30:02 +00:00
if ( BINDFOR ( * setting ) . key = = RETROK_UNKNOWN )
return " nul " ;
2014-07-08 17:23:53 +00:00
hidkey = input_translate_rk_to_keysym ( BINDFOR ( * setting ) . key ) ;
2014-05-03 16:38:29 +00:00
2014-07-08 17:23:53 +00:00
for ( i = 0 ; apple_key_name_map [ i ] . hid_id ; i + + )
2013-11-22 14:30:02 +00:00
if ( apple_key_name_map [ i ] . hid_id = = hidkey )
return apple_key_name_map [ i ] . keyname ;
2014-05-03 16:38:29 +00:00
2013-11-22 14:30:02 +00:00
return " nul " ;
}
2014-05-03 16:38:29 +00:00
# endif
2013-11-22 14:30:02 +00:00
static const char * get_button_name ( const rarch_setting_t * setting )
{
static char buffer [ 32 ] ;
if ( BINDFOR ( * setting ) . joykey = = NO_BTN )
return " nul " ;
2014-05-03 16:38:29 +00:00
snprintf ( buffer , 32 , " %lld " , ( long long int ) ( BINDFOR ( * setting ) . joykey ) ) ;
2013-11-22 14:30:02 +00:00
return buffer ;
}
static const char * get_axis_name ( const rarch_setting_t * setting )
{
static char buffer [ 32 ] ;
uint32_t joyaxis = BINDFOR ( * setting ) . joyaxis ;
2014-05-03 16:38:29 +00:00
2013-11-22 14:30:02 +00:00
if ( AXIS_NEG_GET ( joyaxis ) ! = AXIS_DIR_NONE )
snprintf ( buffer , 8 , " -%d " , AXIS_NEG_GET ( joyaxis ) ) ;
else if ( AXIS_POS_GET ( joyaxis ) ! = AXIS_DIR_NONE )
snprintf ( buffer , 8 , " +%d " , AXIS_POS_GET ( joyaxis ) ) ;
else
return " nul " ;
2014-05-03 16:38:29 +00:00
2013-11-22 14:30:02 +00:00
return buffer ;
}
2013-12-26 21:17:37 +00:00
void setting_data_reset_setting ( const rarch_setting_t * setting )
{
switch ( setting - > type )
{
2014-04-26 01:14:53 +00:00
case ST_BOOL :
* setting - > value . boolean = setting - > default_value . boolean ;
break ;
case ST_INT :
* setting - > value . integer = setting - > default_value . integer ;
break ;
case ST_UINT :
* setting - > value . unsigned_integer = setting - > default_value . unsigned_integer ;
break ;
case ST_FLOAT :
* setting - > value . fraction = setting - > default_value . fraction ;
break ;
case ST_BIND :
* setting - > value . keybind = * setting - > default_value . keybind ;
break ;
2013-12-26 21:17:37 +00:00
case ST_STRING :
case ST_PATH :
2014-05-03 16:38:29 +00:00
if ( setting - > default_value . string )
{
if ( setting - > type = = ST_STRING )
strlcpy ( setting - > value . string , setting - > default_value . string , setting - > size ) ;
else
fill_pathname_expand_special ( setting - > value . string , setting - > default_value . string , setting - > size ) ;
2013-12-26 21:17:37 +00:00
}
2014-05-03 16:38:29 +00:00
break ;
2014-04-26 01:14:53 +00:00
default :
2013-12-26 21:17:37 +00:00
break ;
}
2014-05-03 16:38:29 +00:00
2014-01-06 01:12:04 +00:00
if ( setting - > change_handler )
setting - > change_handler ( setting ) ;
2013-12-26 21:17:37 +00:00
}
2013-11-22 14:30:02 +00:00
void setting_data_reset ( const rarch_setting_t * settings )
{
2014-07-08 17:23:53 +00:00
const rarch_setting_t * setting ;
2013-12-24 19:03:43 +00:00
memset ( & fake_settings , 0 , sizeof ( fake_settings ) ) ;
memset ( & fake_extern , 0 , sizeof ( fake_extern ) ) ;
2014-05-03 16:38:29 +00:00
2014-07-08 17:23:53 +00:00
for ( setting = settings ; setting - > type ! = ST_NONE ; setting + + )
setting_data_reset_setting ( setting ) ;
2013-11-22 14:30:02 +00:00
}
bool setting_data_load_config_path ( const rarch_setting_t * settings , const char * path )
{
2014-07-08 17:23:53 +00:00
config_file_t * config ;
2014-05-03 16:38:29 +00:00
2014-07-08 17:23:53 +00:00
if ( ! ( config = ( config_file_t * ) config_file_new ( path ) ) )
return NULL ;
setting_data_load_config ( settings , config ) ;
config_file_free ( config ) ;
2014-05-03 16:38:29 +00:00
2013-11-22 14:30:02 +00:00
return config ;
}
bool setting_data_load_config ( const rarch_setting_t * settings , config_file_t * config )
{
2014-07-08 17:23:53 +00:00
const rarch_setting_t * setting ;
2013-11-22 14:30:02 +00:00
if ( ! config )
return false ;
2014-07-08 17:23:53 +00:00
for ( setting = settings ; setting - > type ! = ST_NONE ; setting + + )
2013-11-22 14:30:02 +00:00
{
2014-07-08 17:23:53 +00:00
switch ( setting - > type )
2013-11-22 14:30:02 +00:00
{
2014-05-03 16:38:29 +00:00
case ST_BOOL :
2014-07-08 17:23:53 +00:00
config_get_bool ( config , setting - > name , setting - > value . boolean ) ;
2014-05-03 16:38:29 +00:00
break ;
case ST_PATH :
2014-07-08 17:23:53 +00:00
config_get_path ( config , setting - > name , setting - > value . string , setting - > size ) ;
2014-05-03 16:38:29 +00:00
break ;
case ST_STRING :
2014-07-08 17:23:53 +00:00
config_get_array ( config , setting - > name , setting - > value . string , setting - > size ) ;
2014-05-03 16:38:29 +00:00
break ;
2013-12-29 21:00:21 +00:00
case ST_INT :
2014-07-08 17:23:53 +00:00
config_get_int ( config , setting - > name , setting - > value . integer ) ;
ENFORCE_RANGE ( setting , integer ) ;
2013-12-29 21:00:21 +00:00
break ;
case ST_UINT :
2014-07-08 17:23:53 +00:00
config_get_uint ( config , setting - > name , setting - > value . unsigned_integer ) ;
ENFORCE_RANGE ( setting , unsigned_integer ) ;
2013-12-29 21:00:21 +00:00
break ;
case ST_FLOAT :
2014-07-08 17:23:53 +00:00
config_get_float ( config , setting - > name , setting - > value . fraction ) ;
ENFORCE_RANGE ( setting , fraction ) ;
2013-12-29 21:00:21 +00:00
break ;
2013-11-22 14:30:02 +00:00
case ST_BIND :
2014-05-03 16:38:29 +00:00
{
2014-07-08 17:23:53 +00:00
const char * prefix = ( const char * ) get_input_config_prefix ( setting ) ;
input_config_parse_key ( config , prefix , setting - > name , setting - > value . keybind ) ;
input_config_parse_joy_button ( config , prefix , setting - > name , setting - > value . keybind ) ;
input_config_parse_joy_axis ( config , prefix , setting - > name , setting - > value . keybind ) ;
2014-05-03 16:38:29 +00:00
}
break ;
case ST_HEX :
break ;
default :
2013-11-22 14:30:02 +00:00
break ;
}
}
2014-05-03 16:38:29 +00:00
2013-11-22 14:30:02 +00:00
return true ;
}
bool setting_data_save_config_path ( const rarch_setting_t * settings , const char * path )
{
2014-07-08 17:23:53 +00:00
config_file_t * config ;
2014-04-26 01:14:53 +00:00
bool result = false ;
2014-05-03 16:38:29 +00:00
2014-07-08 17:23:53 +00:00
if ( ! ( config = ( config_file_t * ) config_file_new ( path ) ) )
2013-11-22 14:30:02 +00:00
config = config_file_new ( 0 ) ;
2014-05-03 16:38:29 +00:00
2013-11-22 14:30:02 +00:00
setting_data_save_config ( settings , config ) ;
2014-04-26 01:14:53 +00:00
result = config_file_write ( config , path ) ;
2013-11-22 14:30:02 +00:00
config_file_free ( config ) ;
2014-05-03 16:38:29 +00:00
2013-11-22 14:30:02 +00:00
return result ;
}
bool setting_data_save_config ( const rarch_setting_t * settings , config_file_t * config )
{
2014-07-08 17:23:53 +00:00
const rarch_setting_t * setting ;
2013-11-22 14:30:02 +00:00
if ( ! config )
return false ;
2014-07-08 17:23:53 +00:00
for ( setting = settings ; setting - > type ! = ST_NONE ; setting + + )
2013-11-22 14:30:02 +00:00
{
2014-07-08 17:23:53 +00:00
switch ( setting - > type )
2013-11-22 14:30:02 +00:00
{
2014-04-26 01:14:53 +00:00
case ST_BOOL :
2014-07-08 17:23:53 +00:00
config_set_bool ( config , setting - > name , * setting - > value . boolean ) ;
2014-04-26 01:14:53 +00:00
break ;
case ST_PATH :
2014-07-08 17:23:53 +00:00
config_set_path ( config , setting - > name , setting - > value . string ) ;
2014-04-26 01:14:53 +00:00
break ;
case ST_STRING :
2014-07-08 17:23:53 +00:00
config_set_string ( config , setting - > name , setting - > value . string ) ;
2014-04-26 01:14:53 +00:00
break ;
2013-12-29 21:00:21 +00:00
case ST_INT :
2014-07-08 17:23:53 +00:00
ENFORCE_RANGE ( setting , integer ) ;
config_set_int ( config , setting - > name , * setting - > value . integer ) ;
2013-12-29 21:00:21 +00:00
break ;
case ST_UINT :
2014-07-08 17:23:53 +00:00
ENFORCE_RANGE ( setting , unsigned_integer ) ;
config_set_uint64 ( config , setting - > name , * setting - > value . unsigned_integer ) ;
2013-12-29 21:00:21 +00:00
break ;
case ST_FLOAT :
2014-07-08 17:23:53 +00:00
ENFORCE_RANGE ( setting , fraction ) ;
config_set_float ( config , setting - > name , * setting - > value . fraction ) ;
2013-12-29 21:00:21 +00:00
break ;
2013-11-22 14:30:02 +00:00
case ST_BIND :
2014-05-03 16:38:29 +00:00
//FIXME: make portable
# ifdef APPLE
2014-07-08 17:23:53 +00:00
config_set_string ( config , get_input_config_key ( setting , 0 ) , get_key_name ( setting ) ) ;
2014-05-03 16:38:29 +00:00
# endif
2014-07-08 17:23:53 +00:00
config_set_string ( config , get_input_config_key ( setting , " btn " ) , get_button_name ( setting ) ) ;
config_set_string ( config , get_input_config_key ( setting , " axis " ) , get_axis_name ( setting ) ) ;
2013-11-22 14:30:02 +00:00
break ;
2014-04-26 01:14:53 +00:00
case ST_HEX :
break ;
default :
break ;
2013-11-22 14:30:02 +00:00
}
}
2014-05-03 16:38:29 +00:00
2013-11-22 14:30:02 +00:00
return true ;
}
const rarch_setting_t * setting_data_find_setting ( const rarch_setting_t * settings , const char * name )
{
2014-07-08 17:23:53 +00:00
const rarch_setting_t * setting ;
2013-11-22 14:30:02 +00:00
if ( ! name )
2014-07-08 17:23:53 +00:00
return NULL ;
2013-11-22 14:30:02 +00:00
2014-07-08 17:23:53 +00:00
for ( setting = settings ; setting - > type ! = ST_NONE ; setting + + )
if ( setting - > type < = ST_GROUP & & strcmp ( setting - > name , name ) = = 0 )
return setting ;
2013-11-22 14:30:02 +00:00
2014-07-08 17:23:53 +00:00
return NULL ;
2013-11-22 14:30:02 +00:00
}
void setting_data_set_with_string_representation ( const rarch_setting_t * setting , const char * value )
{
if ( ! setting | | ! value )
return ;
2014-05-03 16:38:29 +00:00
2013-11-22 14:30:02 +00:00
switch ( setting - > type )
{
2013-12-29 21:00:21 +00:00
case ST_INT :
sscanf ( value , " %d " , setting - > value . integer ) ;
ENFORCE_RANGE ( setting , integer ) ;
break ;
case ST_UINT :
sscanf ( value , " %u " , setting - > value . unsigned_integer ) ;
ENFORCE_RANGE ( setting , unsigned_integer ) ;
break ;
case ST_FLOAT :
sscanf ( value , " %f " , setting - > value . fraction ) ;
ENFORCE_RANGE ( setting , fraction ) ;
break ;
2014-04-26 01:14:53 +00:00
case ST_PATH :
strlcpy ( setting - > value . string , value , setting - > size ) ;
break ;
case ST_STRING :
strlcpy ( setting - > value . string , value , setting - > size ) ;
break ;
2013-12-29 21:00:21 +00:00
2014-04-26 01:14:53 +00:00
default :
return ;
2013-11-22 14:30:02 +00:00
}
2014-05-03 16:38:29 +00:00
2014-01-06 01:12:04 +00:00
if ( setting - > change_handler )
setting - > change_handler ( setting ) ;
2013-11-22 14:30:02 +00:00
}
const char * setting_data_get_string_representation ( const rarch_setting_t * setting , char * buffer , size_t length )
{
if ( ! setting | | ! buffer | | ! length )
return " " ;
switch ( setting - > type )
{
2014-04-26 01:14:53 +00:00
case ST_BOOL :
snprintf ( buffer , length , " %s " , * setting - > value . boolean ? " True " : " False " ) ;
break ;
case ST_INT :
snprintf ( buffer , length , " %d " , * setting - > value . integer ) ;
break ;
case ST_UINT :
snprintf ( buffer , length , " %u " , * setting - > value . unsigned_integer ) ;
break ;
case ST_FLOAT :
snprintf ( buffer , length , " %f " , * setting - > value . fraction ) ;
break ;
case ST_PATH :
strlcpy ( buffer , setting - > value . string , length ) ;
break ;
case ST_STRING :
strlcpy ( buffer , setting - > value . string , length ) ;
break ;
2013-11-22 14:30:02 +00:00
case ST_BIND :
2014-05-03 16:38:29 +00:00
# ifdef APPLE
2013-11-22 14:30:02 +00:00
snprintf ( buffer , length , " [KB:%s] [JS:%s] [AX:%s] " , get_key_name ( setting ) , get_button_name ( setting ) , get_axis_name ( setting ) ) ;
2014-05-03 16:38:29 +00:00
# endif
2013-11-22 14:30:02 +00:00
break ;
2014-04-26 01:14:53 +00:00
default :
return " " ;
2013-11-22 14:30:02 +00:00
}
return buffer ;
}
rarch_setting_t setting_data_group_setting ( enum setting_type type , const char * name )
{
rarch_setting_t result = { type , name } ;
return result ;
}
2013-12-01 17:42:21 +00:00
# define DEFINE_BASIC_SETTING_TYPE(TAG, TYPE, VALUE, SETTING_TYPE) \
2014-05-03 16:38:29 +00:00
rarch_setting_t setting_data_ # # TAG # # _setting ( const char * name , const char * description , TYPE * target , TYPE default_value ) \
2013-12-01 17:42:21 +00:00
{ \
rarch_setting_t result = { SETTING_TYPE , name , sizeof ( TYPE ) , description } ; \
result . value . VALUE = target ; \
result . default_value . VALUE = default_value ; \
return result ; \
2013-11-22 14:30:02 +00:00
}
2014-05-03 16:38:29 +00:00
DEFINE_BASIC_SETTING_TYPE ( bool , bool , boolean , ST_BOOL )
DEFINE_BASIC_SETTING_TYPE ( int , int , integer , ST_INT )
DEFINE_BASIC_SETTING_TYPE ( uint , unsigned int , unsigned_integer , ST_UINT )
DEFINE_BASIC_SETTING_TYPE ( float , float , fraction , ST_FLOAT )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
rarch_setting_t setting_data_string_setting ( enum setting_type type ,
const char * name , const char * description , char * target ,
unsigned size , const char * default_value )
2013-11-22 14:30:02 +00:00
{
2013-12-01 17:42:21 +00:00
rarch_setting_t result = { type , name , size , description } ;
2014-07-08 17:23:53 +00:00
2013-11-22 14:30:02 +00:00
result . value . string = target ;
result . default_value . string = default_value ;
return result ;
}
2014-04-26 01:14:53 +00:00
rarch_setting_t setting_data_bind_setting ( const char * name ,
const char * description , struct retro_keybind * target ,
uint32_t index , const struct retro_keybind * default_value )
2013-11-22 14:30:02 +00:00
{
rarch_setting_t result = { ST_BIND , name , 0 , description } ;
2014-07-08 17:23:53 +00:00
2013-11-22 14:30:02 +00:00
result . value . keybind = target ;
result . default_value . keybind = default_value ;
result . index = index ;
return result ;
}
# define g_settings fake_settings
# define g_extern fake_extern
# define NEXT (list[index++])
2013-12-01 17:42:21 +00:00
# define START_GROUP(NAME) { NEXT = setting_data_group_setting (ST_GROUP, NAME);
# define END_GROUP() NEXT = setting_data_group_setting (ST_END_GROUP, 0); }
# define START_SUB_GROUP(NAME) { NEXT = setting_data_group_setting (ST_SUB_GROUP, NAME);
# define END_SUB_GROUP() NEXT = setting_data_group_setting (ST_END_SUB_GROUP, 0); }
2013-11-22 14:30:02 +00:00
# define CONFIG_BOOL(TARGET, NAME, SHORT, DEF) NEXT = setting_data_bool_setting (NAME, SHORT, &TARGET, DEF);
# define CONFIG_INT(TARGET, NAME, SHORT, DEF) NEXT = setting_data_int_setting (NAME, SHORT, &TARGET, DEF);
# define CONFIG_UINT(TARGET, NAME, SHORT, DEF) NEXT = setting_data_uint_setting (NAME, SHORT, &TARGET, DEF);
# define CONFIG_FLOAT(TARGET, NAME, SHORT, DEF) NEXT = setting_data_float_setting (NAME, SHORT, &TARGET, DEF);
2013-12-01 17:42:21 +00:00
# define CONFIG_PATH(TARGET, NAME, SHORT, DEF) NEXT = setting_data_string_setting(ST_PATH, NAME, SHORT, TARGET, sizeof(TARGET), DEF);
# define CONFIG_STRING(TARGET, NAME, SHORT, DEF) NEXT = setting_data_string_setting(ST_STRING, NAME, SHORT, TARGET, sizeof(TARGET), DEF);
2013-11-22 14:30:02 +00:00
# define CONFIG_HEX(TARGET, NAME, SHORT)
# define CONFIG_BIND(TARGET, PLAYER, NAME, SHORT, DEF) \
NEXT = setting_data_bind_setting ( NAME , SHORT , & TARGET , PLAYER , DEF ) ;
2013-12-29 21:00:21 +00:00
# define WITH_FLAGS(FLAGS) (list[index - 1]).flags |= FLAGS;
# define WITH_RANGE(MIN, MAX) \
( list [ index - 1 ] ) . min = MIN ; \
2014-05-03 16:38:29 +00:00
( list [ index - 1 ] ) . max = MAX ; \
WITH_FLAGS ( SD_FLAG_HAS_RANGE )
2013-12-29 21:00:21 +00:00
2013-12-03 00:55:58 +00:00
# define WITH_VALUES(VALUES) (list[index -1]).values = VALUES;
2013-12-01 17:42:21 +00:00
2014-04-26 01:14:53 +00:00
const rarch_setting_t * setting_data_get_list ( void )
2013-11-22 14:30:02 +00:00
{
2014-05-03 16:38:29 +00:00
int i , player , index ;
2014-07-08 16:56:12 +00:00
static rarch_setting_t list [ SETTINGS_DATA_LIST_SIZE ] ;
2014-05-03 16:38:29 +00:00
static bool initialized = false ;
if ( ! initialized )
{
2014-07-08 16:56:12 +00:00
for ( i = 0 ; i < SETTINGS_DATA_LIST_SIZE ; i + + )
2014-05-03 16:38:29 +00:00
{
list [ i ] . type = ST_NONE ;
list [ i ] . name = NULL ;
list [ i ] . size = 0 ;
list [ i ] . short_description = NULL ;
list [ i ] . index = 0 ;
list [ i ] . min = 0 ;
list [ i ] . max = 0 ;
list [ i ] . values = NULL ;
list [ i ] . flags = 0 ;
}
initialized = true ;
}
2013-11-22 14:30:02 +00:00
if ( list [ 0 ] . type = = ST_NONE )
{
2014-05-03 16:38:29 +00:00
index = 0 ;
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
/***********/
/* DRIVERS */
/***********/
2014-07-08 14:10:54 +00:00
START_GROUP ( " Drivers " )
2014-04-26 01:14:53 +00:00
START_SUB_GROUP ( " Drivers " )
2013-12-25 14:48:55 +00:00
CONFIG_STRING ( g_settings . video . driver , " video_driver " , " Video Driver " , config_get_default_video ( ) )
2014-05-03 16:38:29 +00:00
# ifdef HAVE_OPENGL
2014-07-08 16:56:12 +00:00
CONFIG_STRING ( g_settings . video . gl_context , " video_gl_context " , " OpenGL Context Driver " , " " )
2014-05-03 16:38:29 +00:00
# endif
2013-12-25 14:48:55 +00:00
CONFIG_STRING ( g_settings . audio . driver , " audio_driver " , " Audio Driver " , config_get_default_audio ( ) )
CONFIG_STRING ( g_settings . input . driver , " input_driver " , " Input Driver " , config_get_default_input ( ) )
2014-04-26 01:14:53 +00:00
# ifdef HAVE_CAMERA
2013-12-25 14:48:55 +00:00
CONFIG_STRING ( g_settings . camera . device , " camera_device " , " Camera Driver " , config_get_default_camera ( ) )
2014-04-26 01:14:53 +00:00
# endif
2014-05-11 02:23:29 +00:00
# ifdef HAVE_LOCATION
2014-05-12 12:40:14 +00:00
CONFIG_STRING ( g_settings . location . driver , " location_driver " , " Location Driver " , config_get_default_location ( ) )
2014-05-11 02:23:29 +00:00
# endif
CONFIG_STRING ( g_settings . input . joypad_driver , " input_joypad_driver " , " Joypad Driver " , " " )
2014-07-08 14:10:54 +00:00
CONFIG_STRING ( g_settings . input . keyboard_layout , " input_keyboard_layout " , " Keyboard Layout " , " " )
2014-05-11 02:23:29 +00:00
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
END_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
/*********/
/* PATHS */
/*********/
START_GROUP ( " Paths " )
START_SUB_GROUP ( " Paths " )
2014-05-11 02:23:29 +00:00
# ifdef HAVE_MENU
2014-07-08 14:10:54 +00:00
CONFIG_PATH ( g_settings . menu_content_directory , " rgui_browser_directory " , " Content Directory " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY | SD_FLAG_PATH_DIR )
CONFIG_PATH ( g_settings . assets_directory , " assets_directory " , " Assets Directory " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY | SD_FLAG_PATH_DIR )
CONFIG_PATH ( g_settings . menu_config_directory , " rgui_config_directory " , " Config Directory " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY | SD_FLAG_PATH_DIR )
2014-06-10 00:06:10 +00:00
CONFIG_BOOL ( g_settings . menu_show_start_screen , " rgui_show_start_screen " , " Show Start Screen " , menu_show_start_screen )
2014-05-11 02:23:29 +00:00
# endif
2014-07-08 14:10:54 +00:00
CONFIG_PATH ( g_settings . libretro , " libretro_path " , " Libretro Path " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY )
2014-05-11 02:23:29 +00:00
CONFIG_PATH ( g_settings . libretro_info_path , " libretro_info_path " , " Core Info Directory " , default_libretro_info_path ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY | SD_FLAG_PATH_DIR )
2014-07-08 14:10:54 +00:00
CONFIG_PATH ( g_settings . core_options_path , " core_options_path " , " Core Options Path " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY )
CONFIG_PATH ( g_settings . cheat_database , " cheat_database_path " , " Cheat Database " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY )
CONFIG_PATH ( g_settings . cheat_settings_path , " cheat_settings_path " , " Cheat Settings " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY )
CONFIG_PATH ( g_settings . game_history_path , " game_history_path " , " Content History Path " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY )
2013-12-25 14:48:55 +00:00
CONFIG_UINT ( g_settings . game_history_size , " game_history_size " , " Content History Size " , game_history_size )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
# ifdef HAVE_OVERLAY
2013-12-25 14:48:55 +00:00
CONFIG_PATH ( g_extern . overlay_dir , " overlay_directory " , " Overlay Directory " , default_overlay_dir ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY | SD_FLAG_PATH_DIR )
2014-04-26 01:14:53 +00:00
# endif
2014-07-08 14:10:54 +00:00
CONFIG_PATH ( g_settings . screenshot_directory , " screenshot_directory " , " Screenshot Directory " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY | SD_FLAG_PATH_DIR )
2014-04-26 01:14:53 +00:00
2013-12-25 14:48:55 +00:00
// savefile_directory
// savestate_directory
// system_directory
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
END_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
/*************/
/* EMULATION */
/*************/
START_GROUP ( " Emulation " )
START_SUB_GROUP ( " Emulation " )
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . pause_nonactive , " pause_nonactive " , " Pause when inactive " , pause_nonactive )
2014-05-11 02:23:29 +00:00
CONFIG_BOOL ( g_settings . rewind_enable , " rewind_enable " , " Rewind " , rewind_enable )
//CONFIG_INT(g_settings.rewind_buffer_size, "rewind_buffer_size", "Rewind Buffer Size", rewind_buffer_size) WITH_SCALE(1000000)
2013-12-25 14:48:55 +00:00
CONFIG_UINT ( g_settings . rewind_granularity , " rewind_granularity " , " Rewind Granularity " , rewind_granularity )
CONFIG_FLOAT ( g_settings . slowmotion_ratio , " slowmotion_ratio " , " Slow Motion Ratio " , slowmotion_ratio ) WITH_RANGE ( 0 , 1 )
CONFIG_FLOAT ( g_settings . fastforward_ratio , " fastforward_ratio " , " Fast Forward Ratio " , fastforward_ratio )
2014-07-08 14:10:54 +00:00
CONFIG_BOOL ( g_settings . fps_show , " fps_show " , " Show Framerate " , " " )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-12-25 14:48:55 +00:00
2014-04-26 01:14:53 +00:00
START_SUB_GROUP ( " Saves " )
2013-12-25 14:48:55 +00:00
CONFIG_UINT ( g_settings . autosave_interval , " autosave_interval " , " Autosave Interval " , autosave_interval )
CONFIG_BOOL ( g_settings . block_sram_overwrite , " block_sram_overwrite " , " Block SRAM overwrite " , block_sram_overwrite )
CONFIG_BOOL ( g_settings . savestate_auto_index , " savestate_auto_index " , " Save State Auto Index " , savestate_auto_index )
CONFIG_BOOL ( g_settings . savestate_auto_save , " savestate_auto_save " , " Auto Save State " , savestate_auto_save )
CONFIG_BOOL ( g_settings . savestate_auto_load , " savestate_auto_load " , " Auto Load State " , savestate_auto_load )
2014-05-11 02:23:29 +00:00
CONFIG_INT ( g_extern . state_slot , " state_slot " , " State Slot " , 0 )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
END_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
/*********/
/* VIDEO */
/*********/
START_GROUP ( " Video " )
2014-07-08 14:10:54 +00:00
START_SUB_GROUP ( " Monitor " )
2013-12-25 14:48:55 +00:00
CONFIG_UINT ( g_settings . video . monitor_index , " video_monitor_index " , " Monitor Index " , monitor_index )
CONFIG_BOOL ( g_settings . video . fullscreen , " video_fullscreen " , " Use Fullscreen mode " , fullscreen )
CONFIG_BOOL ( g_settings . video . windowed_fullscreen , " video_windowed_fullscreen " , " Windowed Fullscreen Mode " , windowed_fullscreen )
CONFIG_UINT ( g_settings . video . fullscreen_x , " video_fullscreen_x " , " Fullscreen Width " , fullscreen_x )
CONFIG_UINT ( g_settings . video . fullscreen_y , " video_fullscreen_y " , " Fullscreen Height " , fullscreen_y )
CONFIG_FLOAT ( g_settings . video . refresh_rate , " video_refresh_rate " , " Refresh Rate " , refresh_rate )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
/* Video: Window Manager */
2014-07-08 14:10:54 +00:00
START_SUB_GROUP ( " Window Manager " )
2014-05-11 02:23:29 +00:00
CONFIG_BOOL ( g_settings . video . disable_composition , " video_disable_composition " , " Disable Window Composition " , disable_composition )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
START_SUB_GROUP ( " Aspect " )
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . video . force_aspect , " video_force_aspect " , " Force aspect ratio " , force_aspect )
CONFIG_FLOAT ( g_settings . video . aspect_ratio , " video_aspect_ratio " , " Aspect Ratio " , aspect_ratio )
CONFIG_BOOL ( g_settings . video . aspect_ratio_auto , " video_aspect_ratio_auto " , " Use Auto Aspect Ratio " , aspect_ratio_auto )
CONFIG_UINT ( g_settings . video . aspect_ratio_idx , " aspect_ratio_index " , " Aspect Ratio Index " , aspect_ratio_idx )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
START_SUB_GROUP ( " Scaling " )
2013-12-25 14:48:55 +00:00
CONFIG_FLOAT ( g_settings . video . xscale , " video_xscale " , " X Scale " , xscale )
CONFIG_FLOAT ( g_settings . video . yscale , " video_yscale " , " Y Scale " , yscale )
CONFIG_BOOL ( g_settings . video . scale_integer , " video_scale_integer " , " Integer Scale " , scale_integer )
2013-11-22 14:30:02 +00:00
2013-12-25 14:48:55 +00:00
CONFIG_INT ( g_extern . console . screen . viewports . custom_vp . x , " custom_viewport_x " , " Custom Viewport X " , 0 )
CONFIG_INT ( g_extern . console . screen . viewports . custom_vp . y , " custom_viewport_y " , " Custom Viewport Y " , 0 )
CONFIG_UINT ( g_extern . console . screen . viewports . custom_vp . width , " custom_viewport_width " , " Custom Viewport Width " , 0 )
CONFIG_UINT ( g_extern . console . screen . viewports . custom_vp . height , " custom_viewport_height " , " Custom Viewport Height " , 0 )
2013-11-22 14:30:02 +00:00
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . video . smooth , " video_smooth " , " Use bilinear filtering " , video_smooth )
2014-07-08 14:10:54 +00:00
CONFIG_UINT ( g_settings . video . rotation , " video_rotation " , " Rotation " , " " )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-07-08 14:10:54 +00:00
START_SUB_GROUP ( " Shader " )
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . video . shader_enable , " video_shader_enable " , " Enable Shaders " , shader_enable )
CONFIG_PATH ( g_settings . video . shader_dir , " video_shader_dir " , " Shader Directory " , default_shader_dir ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY | SD_FLAG_PATH_DIR )
2014-07-08 14:10:54 +00:00
CONFIG_PATH ( g_settings . video . shader_path , " video_shader " , " Shader " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-07-08 14:10:54 +00:00
START_SUB_GROUP ( " Sync " )
2014-05-11 02:23:29 +00:00
CONFIG_BOOL ( g_settings . video . threaded , " video_threaded " , " Threaded Video " , video_threaded )
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . video . vsync , " video_vsync " , " VSync " , vsync )
2014-05-11 02:23:29 +00:00
CONFIG_UINT ( g_settings . video . swap_interval , " video_swap_interval " , " VSync Swap Interval " , swap_interval ) WITH_RANGE ( 1 , 4 )
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . video . hard_sync , " video_hard_sync " , " Hard GPU Sync " , hard_sync )
CONFIG_UINT ( g_settings . video . hard_sync_frames , " video_hard_sync_frames " , " Hard GPU Sync Frames " , hard_sync_frames ) WITH_RANGE ( 0 , 3 )
CONFIG_BOOL ( g_settings . video . black_frame_insertion , " video_black_frame_insertion " , " Black Frame Insertion " , black_frame_insertion )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
START_SUB_GROUP ( " Misc " )
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . video . post_filter_record , " video_post_filter_record " , " Post filter record " , post_filter_record )
CONFIG_BOOL ( g_settings . video . gpu_record , " video_gpu_record " , " GPU Record " , gpu_record )
CONFIG_BOOL ( g_settings . video . gpu_screenshot , " video_gpu_screenshot " , " GPU Screenshot " , gpu_screenshot )
CONFIG_BOOL ( g_settings . video . allow_rotate , " video_allow_rotate " , " Allow rotation " , allow_rotate )
CONFIG_BOOL ( g_settings . video . crop_overscan , " video_crop_overscan " , " Crop Overscan (reload) " , crop_overscan )
2013-11-22 14:30:02 +00:00
2014-07-08 14:10:54 +00:00
CONFIG_PATH ( g_settings . video . filter_path , " video_filter " , " Software filter " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
START_SUB_GROUP ( " Messages " )
2014-07-08 14:10:54 +00:00
CONFIG_PATH ( g_settings . video . font_path , " video_font_path " , " Font Path " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY )
2014-05-11 02:23:29 +00:00
CONFIG_FLOAT ( g_settings . video . font_size , " video_font_size " , " OSD Font Size " , font_size )
CONFIG_BOOL ( g_settings . video . font_enable , " video_font_enable " , " OSD Font Enable " , font_enable )
2013-12-25 14:48:55 +00:00
CONFIG_FLOAT ( g_settings . video . msg_pos_x , " video_message_pos_x " , " Message X Position " , message_pos_offset_x )
CONFIG_FLOAT ( g_settings . video . msg_pos_y , " video_message_pos_y " , " Message Y Position " , message_pos_offset_y )
2013-11-22 14:30:02 +00:00
/* message color */
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
END_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
/*********/
/* AUDIO */
/*********/
START_GROUP ( " Audio " )
START_SUB_GROUP ( " State " )
2014-05-11 02:28:53 +00:00
CONFIG_BOOL ( g_settings . audio . enable , " audio_enable " , " Audio Enable " , audio_enable )
2014-07-08 14:10:54 +00:00
CONFIG_BOOL ( g_extern . audio_data . mute , " audio_mute " , " Audio Mute " , false )
2014-05-11 02:23:29 +00:00
CONFIG_FLOAT ( g_settings . audio . volume , " audio_volume " , " Volume Level " , audio_volume )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
START_SUB_GROUP ( " Sync " )
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . audio . sync , " audio_sync " , " Enable Sync " , audio_sync )
2014-07-08 13:29:45 +00:00
CONFIG_UINT ( g_settings . audio . latency , " audio_latency " , " Latency " , g_defaults . settings . out_latency ? g_defaults . settings . out_latency : out_latency )
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . audio . rate_control , " audio_rate_control " , " Enable Rate Control " , rate_control )
CONFIG_FLOAT ( g_settings . audio . rate_control_delta , " audio_rate_control_delta " , " Rate Control Delta " , rate_control_delta )
2014-07-08 14:10:54 +00:00
CONFIG_UINT ( g_settings . audio . block_frames , " audio_block_frames " , " Block Frames " , 0 )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-07-08 14:10:54 +00:00
START_SUB_GROUP ( " Misc " )
CONFIG_STRING ( g_settings . audio . device , " audio_device " , " Device " , " " )
2013-12-25 14:48:55 +00:00
CONFIG_UINT ( g_settings . audio . out_rate , " audio_out_rate " , " Ouput Rate " , out_rate )
2014-07-08 14:10:54 +00:00
CONFIG_PATH ( g_settings . audio . dsp_plugin , " audio_dsp_plugin " , " DSP Plugin " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
END_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
/*********/
/* INPUT */
/*********/
START_GROUP ( " Input " )
START_SUB_GROUP ( " Input " )
2014-05-11 02:28:53 +00:00
CONFIG_BOOL ( g_settings . input . autodetect_enable , " input_autodetect_enable " , " Autodetect Enable " , input_autodetect_enable )
2014-07-08 14:10:54 +00:00
CONFIG_PATH ( g_settings . input . autoconfig_dir , " joypad_autoconfig_dir " , " Joypad Autoconfig Directory " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY | SD_FLAG_PATH_DIR )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
START_SUB_GROUP ( " Joypad Mapping " )
2013-12-25 14:48:55 +00:00
//TODO: input_libretro_device_p%u
CONFIG_INT ( g_settings . input . joypad_map [ 0 ] , " input_player1_joypad_index " , " Player 1 Pad Index " , 0 )
CONFIG_INT ( g_settings . input . joypad_map [ 1 ] , " input_player2_joypad_index " , " Player 2 Pad Index " , 1 )
CONFIG_INT ( g_settings . input . joypad_map [ 2 ] , " input_player3_joypad_index " , " Player 3 Pad Index " , 2 )
CONFIG_INT ( g_settings . input . joypad_map [ 3 ] , " input_player4_joypad_index " , " Player 4 Pad Index " , 3 )
CONFIG_INT ( g_settings . input . joypad_map [ 4 ] , " input_player5_joypad_index " , " Player 5 Pad Index " , 4 )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
START_SUB_GROUP ( " Turbo/Deadzone " )
2013-12-25 14:48:55 +00:00
CONFIG_FLOAT ( g_settings . input . axis_threshold , " input_axis_threshold " , " Axis Deadzone " , axis_threshold )
CONFIG_UINT ( g_settings . input . turbo_period , " input_turbo_period " , " Turbo Period " , turbo_period )
CONFIG_UINT ( g_settings . input . turbo_duty_cycle , " input_duty_cycle " , " Duty Cycle " , turbo_duty_cycle )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
START_SUB_GROUP ( " Misc " )
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . input . netplay_client_swap_input , " netplay_client_swap_input " , " Swap Netplay Input " , netplay_client_swap_input )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
# ifdef HAVE_OVERLAY
START_SUB_GROUP ( " Overlay " )
2014-07-08 12:01:36 +00:00
CONFIG_BOOL ( g_settings . input . overlay_enable , " input_overlay_enable " , " Overlay Enable " , default_overlay_enable )
2014-07-08 14:10:54 +00:00
CONFIG_PATH ( g_settings . input . overlay , " input_overlay " , " Input Overlay " , " " ) WITH_FLAGS ( SD_FLAG_ALLOW_EMPTY ) WITH_VALUES ( " cfg " )
2013-12-25 14:48:55 +00:00
CONFIG_FLOAT ( g_settings . input . overlay_opacity , " input_overlay_opacity " , " Overlay Opacity " , 0.7f ) WITH_RANGE ( 0 , 1 )
CONFIG_FLOAT ( g_settings . input . overlay_scale , " input_overlay_scale " , " Overlay Scale " , 1.0f )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
# endif
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
// The second argument to config bind is 1 based for players and 0 only for meta keys
START_SUB_GROUP ( " Meta Keys " )
2014-05-03 16:38:29 +00:00
for ( i = 0 ; i ! = RARCH_BIND_LIST_END ; i + + )
2013-11-22 14:30:02 +00:00
if ( input_config_bind_map [ i ] . meta )
{
const struct input_bind_map * bind = & input_config_bind_map [ i ] ;
CONFIG_BIND ( g_settings . input . binds [ 0 ] [ i ] , 0 , bind - > base , bind - > desc , & retro_keybinds_1 [ i ] )
}
END_SUB_GROUP ( )
2014-05-03 16:38:29 +00:00
for ( player = 0 ; player < MAX_PLAYERS ; player + + )
2014-04-26 01:14:53 +00:00
{
2014-05-11 02:28:53 +00:00
char buffer [ 32 ] ;
2014-04-26 01:14:53 +00:00
const struct retro_keybind * const defaults = ( player = = 0 ) ? retro_keybinds_1 : retro_keybinds_rest ;
snprintf ( buffer , 32 , " Player %d " , player + 1 ) ;
START_SUB_GROUP ( strdup ( buffer ) )
2014-05-03 16:38:29 +00:00
for ( i = 0 ; i ! = RARCH_BIND_LIST_END ; i + + )
{
2014-04-26 01:14:53 +00:00
if ( ! input_config_bind_map [ i ] . meta )
{
2014-05-11 02:28:53 +00:00
const struct input_bind_map * bind = ( const struct input_bind_map * ) & input_config_bind_map [ i ] ;
2014-04-26 01:14:53 +00:00
CONFIG_BIND ( g_settings . input . binds [ player ] [ i ] , player + 1 , bind - > base , bind - > desc , & defaults [ i ] )
}
2014-05-03 16:38:29 +00:00
}
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
}
END_GROUP ( )
2013-11-22 14:30:02 +00:00
2014-04-26 01:14:53 +00:00
/********/
/* Misc */
/********/
START_GROUP ( " Misc " )
START_SUB_GROUP ( " Misc " )
2014-05-11 02:28:53 +00:00
CONFIG_BOOL ( g_extern . config_save_on_exit , " config_save_on_exit " , " Configuration Save On Exit " , config_save_on_exit )
2013-12-25 14:48:55 +00:00
CONFIG_BOOL ( g_settings . network_cmd_enable , " network_cmd_enable " , " Network Commands " , network_cmd_enable )
//CONFIG_INT(g_settings.network_cmd_port, "network_cmd_port", "Network Command Port", network_cmd_port)
CONFIG_BOOL ( g_settings . stdin_cmd_enable , " stdin_cmd_enable " , " stdin command " , stdin_cmd_enable )
2014-04-26 01:14:53 +00:00
END_SUB_GROUP ( )
END_GROUP ( )
2013-11-22 14:30:02 +00:00
}
2014-04-26 01:14:53 +00:00
2013-11-22 14:30:02 +00:00
return list ;
}