2023-09-23 16:24:55 +00:00
|
|
|
extends Control
|
|
|
|
|
2024-09-01 18:49:04 +00:00
|
|
|
@onready var bios_type:int
|
2024-07-28 18:44:07 +00:00
|
|
|
var theme_option: OptionButton
|
2024-08-21 15:55:00 +00:00
|
|
|
#signal signal_theme_changed
|
2024-09-14 15:31:59 +00:00
|
|
|
var custom_theme: Theme# = $".".theme
|
2024-08-02 20:25:39 +00:00
|
|
|
var log_option: OptionButton
|
2024-07-28 22:19:57 +00:00
|
|
|
var tab_container: TabContainer
|
2024-07-28 23:24:29 +00:00
|
|
|
var anim_logo: AnimatedSprite2D
|
2024-08-16 13:34:48 +00:00
|
|
|
var a_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png")
|
|
|
|
var b_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png")
|
2024-09-08 18:03:36 +00:00
|
|
|
var l1_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png")
|
|
|
|
var r1_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png")
|
2024-08-24 10:39:56 +00:00
|
|
|
|
2024-09-10 14:33:58 +00:00
|
|
|
func _ready():
|
2024-07-28 15:09:37 +00:00
|
|
|
_get_nodes()
|
2024-07-28 18:44:07 +00:00
|
|
|
_connect_signals()
|
2024-07-28 23:24:29 +00:00
|
|
|
_play_main_animations()
|
2024-09-13 17:27:07 +00:00
|
|
|
_set_up_globals()
|
2024-09-10 13:09:42 +00:00
|
|
|
%locale_option.selected = class_functions.map_locale_id(OS.get_locale_language())
|
2024-09-10 17:13:53 +00:00
|
|
|
%rd_title.text += class_functions.title
|
2024-09-08 18:03:36 +00:00
|
|
|
class_functions.logger("i","Started Godot configurator")
|
2024-09-11 18:23:05 +00:00
|
|
|
#class_functions.display_json_data()
|
2024-08-04 18:45:51 +00:00
|
|
|
# set current startup tab to match IDE
|
2024-08-19 19:07:25 +00:00
|
|
|
tab_container.current_tab = 0
|
2024-08-01 10:47:55 +00:00
|
|
|
#add_child(class_functions) # Needed for threaded results Not need autoload?
|
2023-12-31 07:58:20 +00:00
|
|
|
var children = findElements(self, "Control")
|
2024-02-19 07:15:59 +00:00
|
|
|
for n: Control in children: #iterate the children
|
2024-01-11 07:34:38 +00:00
|
|
|
if (n.focus_mode == FOCUS_ALL):
|
2024-02-19 07:15:59 +00:00
|
|
|
n.mouse_entered.connect(_on_control_mouse_entered.bind(n)) #grab focus on mouse hover
|
|
|
|
if (n.is_class("BaseButton") and n.disabled == true): #if button-like control and disabled
|
|
|
|
n.self_modulate.a = 0.5 #make it half transparent
|
2024-09-14 15:31:59 +00:00
|
|
|
#combine_tkeys()
|
|
|
|
|
2024-08-19 19:07:25 +00:00
|
|
|
func _input(event):
|
|
|
|
if Input.is_action_pressed("quit1") and Input.is_action_pressed("quit2"):
|
2024-09-06 11:40:29 +00:00
|
|
|
_exit()
|
2024-09-08 18:03:36 +00:00
|
|
|
if Input.is_action_pressed("next_tab"):
|
|
|
|
%r1_button.texture_normal = %r1_button.texture_pressed
|
|
|
|
elif Input.is_action_pressed("previous_tab"):
|
|
|
|
%l1_button.texture_normal = %l1_button.texture_pressed
|
|
|
|
elif Input.is_action_pressed("back_button"):
|
2024-08-19 19:07:25 +00:00
|
|
|
%b_button.texture_normal = %b_button.texture_pressed
|
|
|
|
elif Input.is_action_pressed("action_button"):
|
|
|
|
%a_button.texture_normal = %a_button.texture_pressed
|
|
|
|
else:
|
2024-09-08 18:03:36 +00:00
|
|
|
%r1_button.texture_normal = r1_button_texture
|
|
|
|
%l1_button.texture_normal = l1_button_texture
|
2024-08-19 19:07:25 +00:00
|
|
|
%a_button.texture_normal = a_button_texture
|
|
|
|
%b_button.texture_normal = b_button_texture
|
|
|
|
if event.is_action_pressed("quit"):
|
|
|
|
_exit()
|
2024-08-18 21:42:40 +00:00
|
|
|
|
2024-08-27 13:41:16 +00:00
|
|
|
func _exit():
|
2024-09-08 18:03:36 +00:00
|
|
|
class_functions.logger("i","Exited Godot configurator")
|
2024-08-27 13:41:16 +00:00
|
|
|
get_tree().root.propagate_notification(NOTIFICATION_WM_CLOSE_REQUEST)
|
|
|
|
get_tree().quit()
|
|
|
|
|
2024-07-28 15:09:37 +00:00
|
|
|
func _get_nodes() -> void:
|
2024-07-28 18:44:07 +00:00
|
|
|
theme_option = get_node("%theme_optionbutton")
|
2024-07-28 22:19:57 +00:00
|
|
|
tab_container = get_node("%TabContainer")
|
2024-07-28 23:24:29 +00:00
|
|
|
anim_logo = get_node("%logo_animated")
|
2024-08-02 20:25:39 +00:00
|
|
|
log_option = get_node("%logs_button")
|
2024-09-13 17:27:07 +00:00
|
|
|
|
2024-07-28 18:44:07 +00:00
|
|
|
func _connect_signals() -> void:
|
|
|
|
#signal_theme_changed.connect(_conf_theme)
|
|
|
|
theme_option.item_selected.connect(_conf_theme)
|
2024-08-02 20:25:39 +00:00
|
|
|
log_option.item_selected.connect(_load_log)
|
2024-08-22 23:51:07 +00:00
|
|
|
%borders_button.pressed.connect(_hide_show_buttons.bind(%borders_button,%borders_gridcontainer,%decorations_gridcontainer))
|
|
|
|
%button_layout.pressed.connect(_hide_show_buttons.bind(%button_layout,%borders_gridcontainer,%decorations_gridcontainer))
|
|
|
|
%decorations_save.pressed.connect(_hide_show_buttons.bind(%decorations_save,%decorations_save.get_parent(),null))
|
|
|
|
%decorations_button.pressed.connect(_hide_show_containers.bind(%decorations_button, %decorations_gridcontainer))
|
|
|
|
%systems_button.pressed.connect(_hide_show_containers.bind(%systems_button, %systems_gridcontainer))
|
2024-09-13 17:27:07 +00:00
|
|
|
class_functions.update_global_signal.connect(_set_up_globals)
|
|
|
|
|
2024-08-02 20:25:39 +00:00
|
|
|
func _load_log(index: int) -> void:
|
2024-08-04 18:45:51 +00:00
|
|
|
var log_content:String
|
2024-08-02 20:25:39 +00:00
|
|
|
match index:
|
|
|
|
1:
|
2024-09-08 18:03:36 +00:00
|
|
|
class_functions.logger("i","Loading RetroDeck log")
|
2024-09-06 21:41:28 +00:00
|
|
|
log_content = class_functions.import_text_file(class_functions.rd_log_folder +"/retrodeck.log")
|
2024-08-04 18:45:51 +00:00
|
|
|
load_popup("RetroDeck Log", "res://components/logs_view/logs_popup_content.tscn", log_content)
|
2024-08-02 20:25:39 +00:00
|
|
|
2:
|
2024-09-08 18:03:36 +00:00
|
|
|
class_functions.logger("i","Loading ES-DE log")
|
2024-09-06 21:41:28 +00:00
|
|
|
log_content = class_functions.import_text_file(class_functions.rd_log_folder +"/ES-DE/es_log.txt")
|
2024-08-04 19:43:16 +00:00
|
|
|
load_popup("ES-DE Log", "res://components/logs_view/logs_popup_content.tscn",log_content)
|
|
|
|
3:
|
2024-09-08 18:03:36 +00:00
|
|
|
class_functions.logger("i","Loading RetroArch log")
|
2024-09-06 21:41:28 +00:00
|
|
|
log_content = class_functions.import_text_file(class_functions.rd_log_folder +"/retroarch/logs/log.txt")
|
2024-09-14 15:31:59 +00:00
|
|
|
load_popup("Retroarch Log", "res://components/logs_view/logs_popup_content.tscn",log_content)
|
2024-08-02 20:25:39 +00:00
|
|
|
|
2024-07-28 23:24:29 +00:00
|
|
|
func _play_main_animations() -> void:
|
|
|
|
anim_logo.play()
|
2024-08-22 19:53:33 +00:00
|
|
|
|
2024-08-22 23:51:07 +00:00
|
|
|
func _hide_show_containers(button: Button, grid_container: GridContainer) -> void:
|
2024-08-22 19:53:33 +00:00
|
|
|
match button.name:
|
2024-08-22 23:51:07 +00:00
|
|
|
"decorations_button", "systems_button":
|
|
|
|
grid_container.visible = true
|
2024-08-22 19:53:33 +00:00
|
|
|
if button.toggle_mode:
|
|
|
|
button.toggle_mode=false
|
2024-08-22 23:51:07 +00:00
|
|
|
grid_container.visible = false
|
2024-08-22 19:53:33 +00:00
|
|
|
else:
|
|
|
|
button.toggle_mode=true
|
|
|
|
|
2024-08-22 23:51:07 +00:00
|
|
|
# TODO Pass GridContainer(might need 2?) as above
|
|
|
|
# TODO load existing settings or default to enable all
|
|
|
|
func _hide_show_buttons(button: Button, buttons_gridcontainer: GridContainer, hidden_gridcontainer: GridContainer) -> void:
|
|
|
|
match button.name:
|
|
|
|
"borders_button", "button_layout":
|
|
|
|
buttons_gridcontainer.visible = true
|
|
|
|
if button.toggle_mode == false:
|
|
|
|
for i in range(buttons_gridcontainer.get_child_count()):
|
|
|
|
var child = buttons_gridcontainer.get_child(i)
|
|
|
|
child.button_pressed=true
|
|
|
|
for i in range(hidden_gridcontainer.get_child_count()):
|
|
|
|
var child = hidden_gridcontainer.get_child(i)
|
|
|
|
if child is Button and child != button:
|
|
|
|
child.visible=false
|
|
|
|
elif button.toggle_mode == true and %borders_gridcontainer.visible == true:
|
|
|
|
buttons_gridcontainer.visible = false
|
|
|
|
#button.toggle_mode = false
|
|
|
|
for i in range(hidden_gridcontainer.get_child_count()):
|
|
|
|
var child = hidden_gridcontainer.get_child(i)
|
|
|
|
if child is Button:
|
|
|
|
child.visible=true
|
|
|
|
child.toggle_mode = false
|
|
|
|
button.toggle_mode = true
|
2024-08-19 19:07:25 +00:00
|
|
|
|
2023-12-31 07:58:20 +00:00
|
|
|
func findElements(node: Node, className: String, result: Array = []) -> Array:
|
|
|
|
if node.is_class(className):
|
|
|
|
result.push_back(node)
|
|
|
|
for child in node.get_children():
|
|
|
|
result = findElements(child, className, result)
|
|
|
|
return result
|
|
|
|
|
|
|
|
func _on_control_mouse_entered(control: Node):
|
|
|
|
control.grab_focus()
|
2024-01-11 18:19:16 +00:00
|
|
|
|
2024-08-04 18:45:51 +00:00
|
|
|
func load_popup(title:String, content_path:String, display_text: String):
|
2024-01-11 18:19:16 +00:00
|
|
|
var popup = load("res://components/popup.tscn").instantiate() as Control
|
2024-03-25 10:22:36 +00:00
|
|
|
popup.set_title(title)
|
|
|
|
popup.set_content(content_path)
|
2024-08-04 18:45:51 +00:00
|
|
|
popup.set_display_text(display_text)
|
2024-01-11 18:19:16 +00:00
|
|
|
$Background.add_child(popup)
|
2024-01-12 07:37:05 +00:00
|
|
|
|
2024-03-25 10:22:36 +00:00
|
|
|
func _on_bios_button_pressed():
|
2024-07-28 23:24:29 +00:00
|
|
|
_play_main_animations()
|
2024-09-01 18:49:04 +00:00
|
|
|
bios_type = 1
|
2024-09-08 18:03:36 +00:00
|
|
|
class_functions.logger("i","Bios Check")
|
2024-08-04 18:45:51 +00:00
|
|
|
load_popup("BIOS File Check", "res://components/bios_check/bios_popup_content.tscn","")
|
2024-09-01 18:49:04 +00:00
|
|
|
bios_type = 0
|
|
|
|
|
2024-03-25 10:22:36 +00:00
|
|
|
func _on_bios_button_expert_pressed():
|
2024-07-28 23:24:29 +00:00
|
|
|
_play_main_animations()
|
2024-09-01 18:49:04 +00:00
|
|
|
bios_type = 2
|
2024-09-08 18:03:36 +00:00
|
|
|
class_functions.logger("i","Advanced Bios Check")
|
2024-08-04 18:45:51 +00:00
|
|
|
load_popup("BIOS File Check", "res://components/bios_check/bios_popup_content.tscn","")
|
2024-09-01 18:49:04 +00:00
|
|
|
bios_type = 0
|
|
|
|
|
2024-01-12 07:37:05 +00:00
|
|
|
func _on_exit_button_pressed():
|
2024-07-28 23:24:29 +00:00
|
|
|
_play_main_animations()
|
2024-09-06 21:41:28 +00:00
|
|
|
_exit()
|
2024-09-09 13:32:18 +00:00
|
|
|
_exit()
|
2024-08-27 13:41:16 +00:00
|
|
|
|
2024-09-14 15:31:59 +00:00
|
|
|
#func _on_locale_selected(index):
|
|
|
|
#match index:
|
|
|
|
#0:
|
|
|
|
#TranslationServer.set_locale("en")
|
|
|
|
#_:
|
|
|
|
#TranslationServer.set_locale("en")
|
|
|
|
#combine_tkeys()
|
|
|
|
|
|
|
|
#func combine_tkeys(): #More as a test
|
|
|
|
#pass
|
2024-09-06 14:54:24 +00:00
|
|
|
#%cheats.text = tr("TK_CHEATS") + " " + tr("TK_SOON") # switched to access as a unique name as easier to refactor
|
2024-08-15 16:10:50 +00:00
|
|
|
#$Background/MarginContainer/TabContainer/TK_SYSTEM/ScrollContainer/VBoxContainer/HBoxContainer/GridContainer/cheats.text = tr("TK_CHEATS") + " " + tr("TK_SOON")
|
2024-08-20 20:57:49 +00:00
|
|
|
#%tate_mode.text = tr("TK_TATE") + " " + tr("TK_SOON")
|
|
|
|
#%hotkey_sound.text = tr("TK_HOTKEYSOUND") + " " + tr("TK_SOON")
|
2024-08-22 15:44:14 +00:00
|
|
|
#$Background/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container/cheevos_hardcore.text = tr("TK_CHEEVOSHARDCORE") + " " + tr("TK_SOON")
|
|
|
|
#$Background/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/data_mng_container/saves_sync.text = tr("TK_SAVESSYNC") + " " + tr("TK_SOON")
|
2024-08-22 14:28:49 +00:00
|
|
|
#$Background/MarginContainer/TabContainer/TK_CONFIGURATOR/ScrollContainer/VBoxContainer/system_container/easter_eggs.text = tr("TK_EASTEREGGS") + " " + tr("TK_SOON")
|
2024-09-13 17:27:07 +00:00
|
|
|
|
|
|
|
func _set_up_globals() -> void:
|
|
|
|
if class_functions.update_check:
|
|
|
|
%update_notification_button.button_pressed = true
|
|
|
|
else:
|
|
|
|
%update_notification_button.button_pressed = false
|
|
|
|
if class_functions.quick_resume_status:
|
|
|
|
%quick_resume_button.button_pressed = true
|
|
|
|
%retroarch_quick_resume_button.button_pressed = true
|
|
|
|
else:
|
|
|
|
%quick_resume_button.button_pressed = false
|
|
|
|
%retroarch_quick_resume_button.button_pressed = false
|
2024-09-14 15:31:59 +00:00
|
|
|
if class_functions.sound_effects:
|
|
|
|
%sound_button.button_pressed = true
|
|
|
|
%volume_effects_slider.visible = true
|
|
|
|
else:
|
|
|
|
%sound_button.button_pressed = false
|
|
|
|
%volume_effects_slider.visible = false
|
2024-09-13 17:27:07 +00:00
|
|
|
if class_functions.abxy_state == "true":
|
|
|
|
%button_swap_button.button_pressed = true
|
|
|
|
elif class_functions.abxy_state == "false":
|
|
|
|
%button_swap_button.button_pressed = false
|
|
|
|
else:
|
|
|
|
var style_box = StyleBoxFlat.new()
|
|
|
|
style_box.bg_color = Color(1, 0.54902, 0, 1)
|
|
|
|
style_box.corner_detail = 8
|
|
|
|
style_box.border_width_left = 15
|
|
|
|
style_box.border_width_top = 15
|
|
|
|
style_box.border_width_right = 15
|
|
|
|
style_box.border_width_bottom = 15
|
|
|
|
style_box.corner_radius_top_left = 25
|
|
|
|
style_box.corner_radius_top_right = 25
|
|
|
|
style_box.corner_radius_bottom_right = 25
|
|
|
|
style_box.corner_radius_bottom_left = 25
|
|
|
|
style_box.border_color = Color(0.102, 0.624, 1, 1)
|
|
|
|
style_box.border_blend = true
|
|
|
|
%button_swap_button.add_theme_stylebox_override("normal", style_box)
|
|
|
|
%button_swap_button.toggle_mode = false
|
2024-09-14 15:31:59 +00:00
|
|
|
|
|
|
|
func _conf_theme(index: int) -> void:
|
|
|
|
match index:
|
|
|
|
1:
|
|
|
|
class_functions.logger("i","Set theme to index " + str(index))
|
|
|
|
#custom_theme = preload("res://res/pixel_ui_theme/RetroDECKTheme.tres")
|
|
|
|
|
|
|
|
2:
|
|
|
|
class_functions.logger("i","Set theme to index " + str(index))
|
|
|
|
custom_theme = preload("res://assets/themes/retro_theme.tres")
|
|
|
|
3:
|
|
|
|
class_functions.logger("i","Set theme to index " + str(index))
|
|
|
|
custom_theme = preload("res://assets/themes/modern_theme.tres")
|
|
|
|
4:
|
|
|
|
class_functions.logger("i","Set theme to index " + str(index))
|
|
|
|
custom_theme = preload("res://assets/themes/accesible_theme.tres")
|
|
|
|
$".".theme = custom_theme
|
|
|
|
#data_handler.change_cfg_value(class_functions.config_file_path, "theme", "options", str(index))
|