(menu_setting.c) Cleanups

This commit is contained in:
twinaphex 2015-06-05 16:11:36 +02:00
parent 9956353096
commit a8f027ba9b
2 changed files with 246 additions and 197 deletions

View File

@ -95,8 +95,38 @@ extern "C" {
#define MENU_LABEL_CONFIG_SAVE_ON_EXIT 0x79b590feU
#define MENU_LABEL_INPUT_DRIVER 0x4c087840U
#define MENU_LABEL_INPUT_DRIVER_LINUXRAW 0xc33c6b9fU
#define MENU_LABEL_INPUT_DRIVER_UDEV 0x7c9eeeb9U
#define MENU_LABEL_VIDEO_DRIVER 0x1805a5e7U
#define MENU_LABEL_VIDEO_DRIVER_GL 0x005977f8U
#define MENU_LABEL_VIDEO_DRIVER_SDL2 0x7c9dd69aU
#define MENU_LABEL_VIDEO_DRIVER_SDL1 0x0b88a968U
#define MENU_LABEL_VIDEO_DRIVER_D3D 0x0b886340U
#define MENU_LABEL_VIDEO_DRIVER_EXYNOS 0xfc37c54bU
#define MENU_LABEL_VIDEO_DRIVER_SUNXI 0x10620e3cU
#define MENU_LABEL_AUDIO_RESAMPLER_DRIVER 0xedcba9ecU
#define MENU_LABEL_AUDIO_RESAMPLER_DRIVER_SINC 0x7c9dec52U
#define MENU_LABEL_AUDIO_RESAMPLER_DRIVER_CC 0x0059732bU
#define MENU_LABEL_SAVEFILE_DIRECTORY 0x92773488U
#define MENU_LABEL_SAVESTATE_DIRECTORY 0x90551289U
#define MENU_LABEL_ASSETS_DIRECTORY 0xde1ae8ecU
#define MENU_LABEL_DYNAMIC_WALLPAPERS_DIRECTORY 0x62f975b8U
#define MENU_LABEL_SLOWMOTION_RATIO 0x626b3ffeU
#define MENU_LABEL_INPUT_AXIS_THRESHOLD 0xe95c2095U
#define MENU_LABEL_INPUT_TURBO_PERIOD 0xf7a97482U
#define MENU_LABEL_INPUT_AUTODETECT_ENABLE 0xb1e07facU
#define MENU_LABEL_CAMERA_ALLOW 0xc14d302cU
#define MENU_LABEL_LOCATION_ALLOW 0xf089275cU
#define MENU_LABEL_TURBO 0x107434f1U
#define MENU_LABEL_RDB_ENTRY_PUBLISHER 0x4d7bcdfbU
#define MENU_LABEL_RDB_ENTRY_DEVELOPER 0x06f61093U

View File

@ -2025,10 +2025,16 @@ static rarch_setting_t setting_string_setting_options(enum setting_type type,
static int setting_get_description_compare_label(uint32_t label_hash,
settings_t *settings, char *s, size_t len)
{
uint32_t driver_hash = 0;
switch (label_hash)
{
case MENU_LABEL_INPUT_DRIVER:
if (!strcmp(settings->input.driver, "udev"))
driver_hash = djb2_calculate(settings->input.driver);
switch (driver_hash)
{
case MENU_LABEL_INPUT_DRIVER_UDEV:
snprintf(s, len,
" -- udev Input driver. \n"
" \n"
@ -2047,7 +2053,8 @@ static int setting_get_description_compare_label(uint32_t label_hash,
"are root-only (mode 600). You can set up a udev \n"
"rule which makes these accessible to non-root."
);
else if (!strcmp(settings->input.driver, "linuxraw"))
break;
case MENU_LABEL_INPUT_DRIVER_LINUXRAW:
snprintf(s, len,
" -- linuxraw Input driver. \n"
" \n"
@ -2057,13 +2064,15 @@ static int setting_get_description_compare_label(uint32_t label_hash,
" \n"
"This driver uses the older joystick API \n"
"(/dev/input/js*).");
else
break;
default:
snprintf(s, len,
" -- Input driver.\n"
" \n"
"Depending on video driver, it might \n"
"force a different input driver.");
break;
}
break;
case MENU_LABEL_LOAD_CONTENT:
snprintf(s, len,
@ -2114,7 +2123,11 @@ static int setting_get_description_compare_label(uint32_t label_hash,
);
break;
case MENU_LABEL_VIDEO_DRIVER:
if (!strcmp(settings->video.driver, "gl"))
driver_hash = djb2_calculate(settings->video.driver);
switch (driver_hash)
{
case MENU_LABEL_VIDEO_DRIVER_GL:
snprintf(s, len,
" -- OpenGL Video driver. \n"
" \n"
@ -2126,7 +2139,8 @@ static int setting_get_description_compare_label(uint32_t label_hash,
"libretro GL core implementations is \n"
"dependent on your graphics card's \n"
"underlying GL driver).");
else if (!strcmp(settings->video.driver, "sdl2"))
break;
case MENU_LABEL_VIDEO_DRIVER_SDL2:
snprintf(s, len,
" -- SDL 2 Video driver.\n"
" \n"
@ -2136,7 +2150,8 @@ static int setting_get_description_compare_label(uint32_t label_hash,
"Performance for software-rendered libretro \n"
"core implementations is dependent \n"
"on your platform SDL implementation.");
else if (!strcmp(settings->video.driver, "sdl"))
break;
case MENU_LABEL_VIDEO_DRIVER_SDL1:
snprintf(s, len,
" -- SDL Video driver.\n"
" \n"
@ -2145,14 +2160,16 @@ static int setting_get_description_compare_label(uint32_t label_hash,
" \n"
"Performance is considered to be suboptimal. \n"
"Consider using it only as a last resort.");
else if (!strcmp(settings->video.driver, "d3d"))
break;
case MENU_LABEL_VIDEO_DRIVER_D3D:
snprintf(s, len,
" -- Direct3D Video driver. \n"
" \n"
"Performance for software-rendered cores \n"
"is dependent on your graphic card's \n"
"underlying D3D driver).");
else if (!strcmp(settings->video.driver, "exynos"))
break;
case MENU_LABEL_VIDEO_DRIVER_EXYNOS:
snprintf(s, len,
" -- Exynos-G2D Video Driver. \n"
" \n"
@ -2162,16 +2179,20 @@ static int setting_get_description_compare_label(uint32_t label_hash,
" \n"
"Performance for software rendered cores \n"
"should be optimal.");
else if (!strcmp(settings->video.driver, "sunxi"))
break;
case MENU_LABEL_VIDEO_DRIVER_SUNXI:
snprintf(s, len,
" -- Sunxi-G2D Video Driver. \n"
" \n"
"This is a low-level Sunxi video driver. \n"
"Uses the G2D block in Allwinner SoCs.");
else
break;
default:
snprintf(s, len,
" -- Current Video driver.");
break;
}
break;
case MENU_LABEL_AUDIO_DSP_PLUGIN:
snprintf(s, len,
" -- Audio DSP plugin.\n"
@ -2180,13 +2201,20 @@ static int setting_get_description_compare_label(uint32_t label_hash,
);
break;
case MENU_LABEL_AUDIO_RESAMPLER_DRIVER:
if (!strcmp(settings->audio.resampler, "sinc"))
driver_hash = djb2_calculate(settings->audio.resampler);
switch (driver_hash)
{
case MENU_LABEL_AUDIO_RESAMPLER_DRIVER_SINC:
snprintf(s, len,
" -- Windowed SINC implementation.");
else if (!strcmp(settings->audio.resampler, "CC"))
break;
case MENU_LABEL_AUDIO_RESAMPLER_DRIVER_CC:
snprintf(s, len,
" -- Convoluted Cosine implementation.");
break;
}
break;
case MENU_LABEL_VIDEO_SHADER_PRESET:
snprintf(s, len,
" -- Load Shader Preset. \n"
@ -2746,6 +2774,95 @@ static int setting_get_description_compare_label(uint32_t label_hash,
"Uses a custom swap interval for VSync. Set this \n"
"to effectively halve monitor refresh rate.");
break;
case MENU_LABEL_SAVEFILE_DIRECTORY:
snprintf(s, len,
" -- Savefile Directory. \n"
" \n"
"Save all save files (*.srm) to this \n"
"directory. This includes related files like \n"
".bsv, .rt, .psrm, etc...\n"
" \n"
"This will be overridden by explicit command line\n"
"options.");
break;
case MENU_LABEL_SAVESTATE_DIRECTORY:
snprintf(s, len,
" -- Savestate Directory. \n"
" \n"
"Save all save states (*.state) to this \n"
"directory.\n"
" \n"
"This will be overridden by explicit command line\n"
"options.");
break;
case MENU_LABEL_ASSETS_DIRECTORY:
snprintf(s, len,
" -- Assets Directory. \n"
" \n"
" This location is queried by default when \n"
"menu interfaces try to look for loadable \n"
"assets, etc.");
break;
case MENU_LABEL_DYNAMIC_WALLPAPERS_DIRECTORY:
snprintf(s, len,
" -- Dynamic Wallpapers Directory. \n"
" \n"
" The place to store wallpapers that will \n"
"be loaded dynamically by the menu depending \n"
"on context.");
break;
case MENU_LABEL_SLOWMOTION_RATIO:
snprintf(s, len,
" -- Slowmotion ratio."
" \n"
"When slowmotion, content will slow\n"
"down by factor.");
break;
case MENU_LABEL_INPUT_AXIS_THRESHOLD:
snprintf(s, len,
" -- Defines axis threshold.\n"
" \n"
"How far an axis must be tilted to result\n"
"in a button press.\n"
" Possible values are [0.0, 1.0].");
break;
case MENU_LABEL_INPUT_TURBO_PERIOD:
snprintf(s, len,
" -- Turbo period.\n"
" \n"
"Describes speed of which turbo-enabled\n"
"buttons toggle."
);
break;
case MENU_LABEL_INPUT_AUTODETECT_ENABLE:
snprintf(s, len,
" -- Enable input auto-detection.\n"
" \n"
"Will attempt to auto-configure \n"
"joypads, Plug-and-Play style.");
break;
case MENU_LABEL_CAMERA_ALLOW:
snprintf(s, len,
" -- Allow or disallow camera access by \n"
"cores.");
break;
case MENU_LABEL_LOCATION_ALLOW:
snprintf(s, len,
" -- Allow or disallow location services \n"
"access by cores.");
break;
case MENU_LABEL_TURBO:
snprintf(s, len,
" -- Turbo enable.\n"
" \n"
"Holding the turbo while pressing another \n"
"button will let the button enter a turbo \n"
"mode where the button state is modulated \n"
"with a periodic signal. \n"
" \n"
"The modulation stops when the button \n"
"itself (not turbo button) is released.");
break;
default:
return -1;
}
@ -2774,94 +2891,7 @@ int setting_get_description(const char *label, char *s,
if (setting_get_description_compare_label(label_hash, settings, s, len) == 0)
return 0;
if (!strcmp(label, "savefile_directory"))
{
snprintf(s, len,
" -- Savefile Directory. \n"
" \n"
"Save all save files (*.srm) to this \n"
"directory. This includes related files like \n"
".bsv, .rt, .psrm, etc...\n"
" \n"
"This will be overridden by explicit command line\n"
"options.");
}
else if (!strcmp(label, "savestate_directory"))
{
snprintf(s, len,
" -- Savestate Directory. \n"
" \n"
"Save all save states (*.state) to this \n"
"directory.\n"
" \n"
"This will be overridden by explicit command line\n"
"options.");
}
else if (!strcmp(label, "assets_directory"))
{
snprintf(s, len,
" -- Assets Directory. \n"
" \n"
" This location is queried by default when \n"
"menu interfaces try to look for loadable \n"
"assets, etc.");
}
else if (!strcmp(label, "dynamic_wallpapers_directory"))
{
snprintf(s, len,
" -- Dynamic Wallpapers Directory. \n"
" \n"
" The place to store wallpapers that will \n"
"be loaded dynamically by the menu depending \n"
"on context.");
}
else if (!strcmp(label, "slowmotion_ratio"))
{
snprintf(s, len,
" -- Slowmotion ratio."
" \n"
"When slowmotion, content will slow\n"
"down by factor.");
}
else if (!strcmp(label, "input_axis_threshold"))
{
snprintf(s, len,
" -- Defines axis threshold.\n"
" \n"
"How far an axis must be tilted to result\n"
"in a button press.\n"
" Possible values are [0.0, 1.0].");
}
else if (!strcmp(label, "input_turbo_period"))
{
snprintf(s, len,
" -- Turbo period.\n"
" \n"
"Describes speed of which turbo-enabled\n"
"buttons toggle."
);
}
else if (!strcmp(label, "input_autodetect_enable"))
{
snprintf(s, len,
" -- Enable input auto-detection.\n"
" \n"
"Will attempt to auto-configure \n"
"joypads, Plug-and-Play style.");
}
else if (!strcmp(label, "camera_allow"))
{
snprintf(s, len,
" -- Allow or disallow camera access by \n"
"cores.");
}
else if (!strcmp(label, "location_allow"))
{
snprintf(s, len,
" -- Allow or disallow location services \n"
"access by cores.");
}
else if (
if (
!strcmp(label, "l_x_plus") ||
!strcmp(label, "l_x_minus") ||
!strcmp(label, "l_y_plus") ||
@ -2875,17 +2905,6 @@ int setting_get_description(const char *label, char *s,
" \n"
"Positive X axis is right. \n"
"Positive Y axis is down.");
else if (!strcmp(label, "turbo"))
snprintf(s, len,
" -- Turbo enable.\n"
" \n"
"Holding the turbo while pressing another \n"
"button will let the button enter a turbo \n"
"mode where the button state is modulated \n"
"with a periodic signal. \n"
" \n"
"The modulation stops when the button \n"
"itself (not turbo button) is released.");
else if (!strcmp(label, "exit_emulator"))
snprintf(s, len,
" -- Key to exit RetroArch cleanly."