option for speccy help

This commit is contained in:
Haze Weathers 2025-01-06 05:04:29 -05:00
parent dce789752f
commit bc234930b0
4 changed files with 43 additions and 7 deletions

View file

@ -14,6 +14,7 @@ onready var select_tab: HBoxContainer = $"%SelectTab"
onready var rumble: HBoxContainer = $"%SelectRumble"
onready var gore: HBoxContainer = $"%SelectGore"
onready var speedrun_timer: HBoxContainer = $"%SelectSpeedrunTimer"
onready var speccy_help: HBoxContainer = $"%SelectSpeccyHelp"
onready var fullscreen: HBoxContainer = $"%SelectFullscreen"
onready var window_size: HBoxContainer = $"%SelectWindowSize"
onready var scaling: HBoxContainer = $"%SelectScaling"
@ -49,6 +50,7 @@ func _init_values() -> void:
rumble.selection = Options.rumble
gore.selection = Options.gore
speedrun_timer.selection = 1 if Options.speedrun_timer else 0
speccy_help.selection = 1 if Options.speccy_help else 0
# video
fullscreen.selection = 1 if Options.fullscreen else 0
window_size.selection = int(Options.window_size) - 1
@ -86,6 +88,9 @@ func _on_Gore_selected(selection) -> void:
func _on_SelectSpeedrunTimer_selected(selection) -> void:
Options.speedrun_timer = selection == 1
func _on_SelectSpeccyHelp_selected(selection) -> void:
Options.speccy_help = selection == 1
#
# VIDEO

View file

@ -180,21 +180,46 @@ text = "Speedrun Timer:"
[node name="SelectSpeedrunTimer" type="HBoxContainer" parent="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/SpeedrunTimer"]
unique_name_in_owner = true
margin_left = 109.0
margin_right = 218.0
margin_left = 144.0
margin_right = 183.0
margin_bottom = 12.0
focus_neighbour_top = NodePath("../../Gore/SelectGore")
focus_neighbour_bottom = NodePath("../../SpeccyHelp/SelectSpeccyHelp")
focus_mode = 2
size_flags_horizontal = 6
script = ExtResource( 3 )
condense = true
options = [ "off", "on" ]
[node name="SpeccyHelp" type="HBoxContainer" parent="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game"]
margin_top = 48.0
margin_right = 218.0
margin_bottom = 60.0
rect_min_size = Vector2( 0, 12 )
[node name="Label" type="Label" parent="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/SpeccyHelp"]
margin_top = 1.0
margin_right = 119.0
margin_bottom = 11.0
text = "Help from speccy:"
[node name="SelectSpeccyHelp" type="HBoxContainer" parent="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/SpeccyHelp"]
unique_name_in_owner = true
margin_left = 151.0
margin_right = 190.0
margin_bottom = 12.0
focus_neighbour_top = NodePath("../../SpeedrunTimer/SelectSpeedrunTimer")
focus_neighbour_bottom = NodePath("../../ScoreBoardName/PlayerNameInput")
focus_mode = 2
size_flags_horizontal = 3
size_flags_horizontal = 6
script = ExtResource( 3 )
condense = true
options = [ "off", "on" ]
[node name="ScoreBoardName" type="HBoxContainer" parent="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game"]
margin_top = 48.0
margin_top = 64.0
margin_right = 218.0
margin_bottom = 58.0
margin_bottom = 74.0
[node name="Label" type="Label" parent="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/ScoreBoardName"]
margin_right = 112.0
@ -206,7 +231,7 @@ margin_left = 130.0
margin_right = 203.0
margin_bottom = 10.0
rect_min_size = Vector2( 73, 0 )
focus_neighbour_top = NodePath("../../SpeedrunTimer/SelectSpeedrunTimer")
focus_neighbour_top = NodePath("../../SpeccyHelp/SelectSpeccyHelp")
size_flags_horizontal = 6
custom_constants/line_spacing = 0
custom_styles/focus = SubResource( 5 )
@ -889,6 +914,7 @@ align = 1
[connection signal="selected" from="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/Rumble/SelectRumble" to="." method="_on_Rumble_selected"]
[connection signal="selected" from="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/Gore/SelectGore" to="." method="_on_Gore_selected"]
[connection signal="selected" from="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/SpeedrunTimer/SelectSpeedrunTimer" to="." method="_on_SelectSpeedrunTimer_selected"]
[connection signal="selected" from="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/SpeccyHelp/SelectSpeccyHelp" to="." method="_on_SelectSpeccyHelp_selected"]
[connection signal="focus_entered" from="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/ScoreBoardName/PlayerNameInput" to="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/ScoreBoardName/PlayerNameInput" method="_on_focus_entered"]
[connection signal="focus_exited" from="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/ScoreBoardName/PlayerNameInput" to="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/ScoreBoardName/PlayerNameInput" method="_on_focus_exited"]
[connection signal="gui_input" from="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/ScoreBoardName/PlayerNameInput" to="CenterContainer/PanelContainer/MarginContainer/VBoxContainer/Tabs/Game/ScoreBoardName/PlayerNameInput" method="_on_gui_input"]

View file

@ -17,7 +17,8 @@ func _ready() -> void:
func appear() -> void:
$AnimationPlayer.play("fun")
if Options.speccy_help:
$AnimationPlayer.play("fun")
func switch_action() -> void: