2021-10-20 05:40:31 +00:00
|
|
|
extends Control
|
|
|
|
|
|
|
|
# Scenes
|
2021-11-14 05:07:19 +00:00
|
|
|
onready var Title_Screen = preload("res://scenes/Title Screen.tscn")
|
|
|
|
onready var Game = preload("res://scenes/Game/Game.tscn" )
|
|
|
|
onready var Options = preload("res://scenes/Options.tscn" )
|
2021-11-23 04:35:28 +00:00
|
|
|
onready var Credits = preload("res://scenes/Credits.tscn" )
|
2021-11-14 05:07:19 +00:00
|
|
|
onready var Debug_Menu = preload("res://scenes/Debug Menu.tscn" )
|
2021-10-20 05:40:31 +00:00
|
|
|
|
2021-11-14 05:51:36 +00:00
|
|
|
# Themes
|
2021-11-14 08:50:39 +00:00
|
|
|
var lightmode = preload("res://assets/backgrounds/Background_Light.png")
|
|
|
|
var darkmode = preload("res://assets/backgrounds/Background_Dark.png")
|
|
|
|
var light_theme = load("res://light_theme.tres")
|
|
|
|
var dark_theme = load("res://dark_theme.tres")
|
2021-11-14 05:51:36 +00:00
|
|
|
|
2021-11-08 19:41:55 +00:00
|
|
|
#flags
|
2021-11-08 18:17:13 +00:00
|
|
|
var power_saving = true
|
2021-10-20 05:40:31 +00:00
|
|
|
var debug_enabled = true
|
2021-10-22 06:53:04 +00:00
|
|
|
var start_fullscreen = false
|
2021-10-20 05:40:31 +00:00
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready():
|
|
|
|
# Connect to signals
|
2021-10-20 11:00:09 +00:00
|
|
|
var _errno = 0;
|
2021-10-29 22:39:46 +00:00
|
|
|
_errno += MessageBus.connect("start_tcsn" , self, "_on_scene_start_by_name")
|
|
|
|
_errno += MessageBus.connect("change_scene" , self, "_on_scene_start" )
|
|
|
|
_errno += MessageBus.connect("kill_scene" , self, "_on_scene_kill" )
|
|
|
|
_errno += MessageBus.connect("list_scenes" , self, "_on_scene_list" )
|
|
|
|
_errno += MessageBus.connect("quit" , self, "_on_quit_request" )
|
|
|
|
_errno += MessageBus.connect("return_to_title", self, "_on_title_request" )
|
2021-11-14 05:51:36 +00:00
|
|
|
_errno += OptionsController.connect("change_theme", self, "_on_change_theme" )
|
2021-11-14 05:58:41 +00:00
|
|
|
# Set the theme based on the config file
|
|
|
|
_on_change_theme(OptionsController.get_theme())
|
2021-10-21 18:37:41 +00:00
|
|
|
# go fullscreen
|
2021-11-08 19:41:55 +00:00
|
|
|
OS.low_processor_usage_mode = power_saving
|
|
|
|
OS.low_processor_usage_mode_sleep_usec = 6800
|
|
|
|
OS.window_fullscreen = start_fullscreen
|
2021-10-20 06:05:39 +00:00
|
|
|
if debug_enabled:
|
2021-11-14 05:07:19 +00:00
|
|
|
add_child(Debug_Menu.instance())
|
2021-10-21 06:24:27 +00:00
|
|
|
|
2021-10-21 18:37:41 +00:00
|
|
|
# Process global keybinds
|
|
|
|
func _input(event):
|
|
|
|
if event.is_action_pressed("ui_fullscreen"):
|
|
|
|
# toggle_fullscreen
|
|
|
|
OS.window_fullscreen = !OS.window_fullscreen
|
|
|
|
|
|
|
|
|
2021-10-21 06:24:27 +00:00
|
|
|
# Ensure the scene doesn't become empty
|
|
|
|
func _process(_delta):
|
|
|
|
# Make sure there's something running
|
2021-11-14 05:36:39 +00:00
|
|
|
# Background counts as one child
|
2021-10-21 06:24:27 +00:00
|
|
|
# Debug counts as one child
|
2021-11-14 05:36:39 +00:00
|
|
|
if get_child_count() < 2 + int(debug_enabled):
|
2021-10-21 06:24:27 +00:00
|
|
|
MessageBus.emit_signal("change_scene", "Title")
|
|
|
|
pass
|
2021-10-20 05:40:31 +00:00
|
|
|
|
2021-10-20 07:26:32 +00:00
|
|
|
# Creates a new instance of each menu scene
|
|
|
|
func _on_scene_start(scene):
|
2021-11-14 05:36:39 +00:00
|
|
|
var instance
|
2021-11-01 00:21:23 +00:00
|
|
|
#print ("_on_scene_start(",scene,")")
|
2021-10-20 05:40:31 +00:00
|
|
|
match scene:
|
2021-10-20 08:18:06 +00:00
|
|
|
"Singleplayer":
|
2021-11-14 05:36:39 +00:00
|
|
|
instance = Game.instance()
|
|
|
|
add_child (instance)
|
2021-10-20 08:18:06 +00:00
|
|
|
return true
|
|
|
|
"Multiplayer":
|
2021-11-14 05:36:39 +00:00
|
|
|
instance = Game.instance()
|
|
|
|
add_child (instance)
|
2021-10-20 08:18:06 +00:00
|
|
|
return true
|
|
|
|
"Options":
|
2021-11-14 05:36:39 +00:00
|
|
|
instance = Options.instance()
|
|
|
|
add_child (instance)
|
2021-10-20 08:18:06 +00:00
|
|
|
return true
|
2021-11-23 04:35:28 +00:00
|
|
|
"Credits":
|
|
|
|
instance = Credits.instance()
|
|
|
|
add_child (instance)
|
|
|
|
return true
|
2021-10-20 08:18:06 +00:00
|
|
|
"Title":
|
2021-11-14 05:36:39 +00:00
|
|
|
instance = Title_Screen.instance()
|
|
|
|
add_child (instance)
|
2021-10-20 08:18:06 +00:00
|
|
|
return true
|
2021-10-20 10:13:24 +00:00
|
|
|
|
|
|
|
func _on_scene_start_by_name(scene):
|
|
|
|
var pack = load("res://scenes/" + scene + ".tscn");
|
|
|
|
add_child(pack.instance());
|
2021-10-20 05:40:31 +00:00
|
|
|
|
2021-10-20 07:26:32 +00:00
|
|
|
# Kills all child nodes with name matching `scene`
|
|
|
|
func _on_scene_kill(scene):
|
2021-10-21 10:22:42 +00:00
|
|
|
var node = find_node(scene, false, false)
|
|
|
|
if node :
|
|
|
|
node.queue_free()
|
|
|
|
MessageBus.emit_signal("print_console", String(node.name) + " killed.\n".c_unescape())
|
2021-10-20 07:26:32 +00:00
|
|
|
|
2021-10-20 10:13:24 +00:00
|
|
|
func _on_scene_list():
|
|
|
|
var children = get_children()
|
|
|
|
var names = []
|
|
|
|
for i in range (children.size()):
|
|
|
|
names.append(children[i].name)
|
|
|
|
MessageBus.emit_signal("print_console", String(names) + "\n".c_unescape())
|
|
|
|
|
|
|
|
|
2021-10-20 07:26:32 +00:00
|
|
|
# Quits
|
2021-10-20 05:40:31 +00:00
|
|
|
func _on_quit_request():
|
|
|
|
get_tree().quit()
|
2021-10-20 07:26:32 +00:00
|
|
|
|
|
|
|
# Kills the current tree and replaces it with a new one
|
2021-10-20 05:40:31 +00:00
|
|
|
func _on_title_request():
|
2021-10-20 07:26:32 +00:00
|
|
|
return get_tree().change_scene("res://scenes/Main.tscn")
|
2021-11-14 05:51:36 +00:00
|
|
|
|
|
|
|
func _on_change_theme(theme):
|
|
|
|
if theme == "light":
|
|
|
|
get_node("Background").set_texture(lightmode)
|
2021-11-14 08:50:39 +00:00
|
|
|
self.set_theme(light_theme)
|
2021-11-14 05:51:36 +00:00
|
|
|
elif theme == "dark":
|
|
|
|
get_node("Background").set_texture(darkmode)
|
2021-11-14 08:50:39 +00:00
|
|
|
self.set_theme(dark_theme)
|