Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
beetle-pce-libretro
Commits
fe07acd8
Commit
fe07acd8
authored
Jan 08, 2022
by
Michael Burgardt
Committed by
DisasterMo
Jan 09, 2022
Browse files
Show all input/turbo settings if categories are supported
parent
7fe93570
Changes
2
Hide whitespace changes
Inline
Side-by-side
libretro.cpp
View file @
fe07acd8
...
...
@@ -980,6 +980,7 @@ static int turbo_toggle_down[MAX_PLAYERS][MAX_BUTTONS] = {};
static
void
check_variables
(
bool
loaded
)
{
struct
retro_variable
var
=
{
0
};
struct
retro_core_option_display
option_display
;
if
(
!
loaded
)
{
...
...
@@ -1294,50 +1295,53 @@ static void check_variables(bool loaded)
up_down_allowed
=
(
strcmp
(
var
.
value
,
"enabled"
)
==
0
);
}
/* 'Show Advanced Input/Turbo Settings' is only needed if catgegories aren't supported */
option_display
.
key
=
"pce_show_advanced_input_settings"
;
option_display
.
visible
=
!
libretro_supports_option_categories
;
environ_cb
(
RETRO_ENVIRONMENT_SET_CORE_OPTIONS_DISPLAY
,
&
option_display
);
/* decide if input/turbo settings should be shown */
var
.
key
=
"pce_show_advanced_input_settings"
;
var
.
value
=
NULL
;
if
(
environ_cb
(
RETRO_ENVIRONMENT_GET_VARIABLE
,
&
var
)
&&
var
.
value
)
{
bool
show_advanced_input_settings_prev
=
show_advanced_input_settings
;
show_advanced_input_settings
=
true
;
if
(
strcmp
(
var
.
value
,
"disabled"
)
==
0
)
show_advanced_input_settings
=
false
;
if
(
!
loaded
||
(
show_advanced_input_settings
!=
show_advanced_input_settings_prev
))
{
size_t
i
;
struct
retro_core_option_display
option_display
;
char
av_keys
[
17
][
32
]
=
{
"pce_multitap"
,
"pce_mouse_sensitivity"
,
"pce_disable_softreset"
,
"pce_up_down_allowed"
,
"pce_Turbo_Delay"
,
"pce_Turbo_Toggling"
,
"pce_turbo_toggle_hotkey"
,
"pce_p0_turbo_I_enable"
,
"pce_p0_turbo_II_enable"
,
"pce_p1_turbo_I_enable"
,
"pce_p1_turbo_II_enable"
,
"pce_p2_turbo_I_enable"
,
"pce_p2_turbo_II_enable"
,
"pce_p3_turbo_I_enable"
,
"pce_p3_turbo_II_enable"
,
"pce_p4_turbo_I_enable"
,
"pce_p4_turbo_II_enable"
,
};
option_display
.
visible
=
show_advanced_input_settings
;
for
(
i
=
0
;
i
<
17
;
i
++
)
{
option_display
.
key
=
av_keys
[
i
];
environ_cb
(
RETRO_ENVIRONMENT_SET_CORE_OPTIONS_DISPLAY
,
&
option_display
);
}
}
}
var
.
value
=
NULL
;
if
(
environ_cb
(
RETRO_ENVIRONMENT_GET_VARIABLE
,
&
var
)
&&
var
.
value
)
{
bool
show_advanced_input_settings_prev
=
show_advanced_input_settings
;
show_advanced_input_settings
=
(
strcmp
(
var
.
value
,
"enabled"
)
==
0
)
||
libretro_supports_option_categories
;
if
(
!
loaded
||
(
show_advanced_input_settings
!=
show_advanced_input_settings_prev
))
{
size_t
i
;
const
char
av_keys
[
17
][
32
]
=
{
"pce_multitap"
,
"pce_mouse_sensitivity"
,
"pce_disable_softreset"
,
"pce_up_down_allowed"
,
"pce_Turbo_Delay"
,
"pce_Turbo_Toggling"
,
"pce_turbo_toggle_hotkey"
,
"pce_p0_turbo_I_enable"
,
"pce_p0_turbo_II_enable"
,
"pce_p1_turbo_I_enable"
,
"pce_p1_turbo_II_enable"
,
"pce_p2_turbo_I_enable"
,
"pce_p2_turbo_II_enable"
,
"pce_p3_turbo_I_enable"
,
"pce_p3_turbo_II_enable"
,
"pce_p4_turbo_I_enable"
,
"pce_p4_turbo_II_enable"
,
};
option_display
.
visible
=
show_advanced_input_settings
;
for
(
i
=
0
;
i
<
17
;
i
++
)
{
option_display
.
key
=
av_keys
[
i
];
environ_cb
(
RETRO_ENVIRONMENT_SET_CORE_OPTIONS_DISPLAY
,
&
option_display
);
}
}
}
if
(
loaded
)
SettingsChanged
();
}
...
...
@@ -1505,7 +1509,7 @@ static void update_input(void)
{
uint16_t
input_state
=
0
;
for
(
unsigned
i
=
0
;
i
<
MAX_BUTTONS
;
i
++
)
for
(
i
=
0
;
i
<
MAX_BUTTONS
;
i
++
)
{
if
(
turbo_enable
[
j
][
i
]
==
1
)
//Check whether a given button is turbo-capable
{
...
...
libretro_core_options.h
View file @
fe07acd8
...
...
@@ -67,7 +67,7 @@ struct retro_core_option_v2_category option_cats_us[] = {
},
{
"hacks"
,
"Emulation
h
acks"
,
"Emulation
H
acks"
,
"Configure processor overclocking and emulation accuracy parameters affecting low-level performance and compatibility."
},
{
...
...
@@ -164,7 +164,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
"pce_initial_scanline"
,
"Initial Scanline"
,
NULL
,
"First rendered scanline. Higher values will crop the top of the
screen
."
,
"First rendered scanline. Higher values will crop the top of the
image
."
,
NULL
,
"video"
,
{
...
...
@@ -217,7 +217,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
"pce_last_scanline"
,
"Last Scanline"
,
NULL
,
"Last rendered scanline. Lower values will crop the bottom of the
screen
."
,
"Last rendered scanline. Lower values will crop the bottom of the
image
."
,
NULL
,
"video"
,
{
...
...
@@ -794,42 +794,6 @@ struct retro_core_options_v2 options_us = {
option_defs_us
};
/* RETRO_LANGUAGE_JAPANESE */
/* RETRO_LANGUAGE_FRENCH */
/* RETRO_LANGUAGE_SPANISH */
/* RETRO_LANGUAGE_GERMAN */
/* RETRO_LANGUAGE_ITALIAN */
/* RETRO_LANGUAGE_DUTCH */
/* RETRO_LANGUAGE_PORTUGUESE_BRAZIL */
/* RETRO_LANGUAGE_PORTUGUESE_PORTUGAL */
/* RETRO_LANGUAGE_RUSSIAN */
/* RETRO_LANGUAGE_KOREAN */
/* RETRO_LANGUAGE_CHINESE_TRADITIONAL */
/* RETRO_LANGUAGE_CHINESE_SIMPLIFIED */
/* RETRO_LANGUAGE_ESPERANTO */
/* RETRO_LANGUAGE_POLISH */
/* RETRO_LANGUAGE_VIETNAMESE */
/* RETRO_LANGUAGE_ARABIC */
/* RETRO_LANGUAGE_GREEK */
/* RETRO_LANGUAGE_TURKISH */
/*
********************************
* Language Mapping
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment