From 86bee7b44c7cc7adaef8cdf441667a99223dd98a Mon Sep 17 00:00:00 2001 From: Spartan322 Date: Thu, 6 Jul 2023 16:28:55 -0400 Subject: Add GameLoader Autoload to handle global loading data Remove GameDebug, Localization, and ShaderManager from Events.gd Renamed OptionsSingleton class_name to OptionsEventsObject Add Events.Loader to handle Loader events (which are global signals) Make GameDebug singleton with static functions and property Make Localization functions static Move ShaderManager variable to GameLoader Move Events._define_filepaths_dict to GameLoader.define_filepaths_dict Move game initialization from LoadingScreen.gd and Events.gd to GameStart.gd Attach GameStart.gd to GameStart.tscn root Make LoadingScreen generalized and so it is reusable Remove class_name from LoaderingScreen.gd --- game/src/Game/GlobalClass/GameDebug.gd | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 game/src/Game/GlobalClass/GameDebug.gd (limited to 'game/src/Game/GlobalClass/GameDebug.gd') diff --git a/game/src/Game/GlobalClass/GameDebug.gd b/game/src/Game/GlobalClass/GameDebug.gd new file mode 100644 index 0000000..08d2b8b --- /dev/null +++ b/game/src/Game/GlobalClass/GameDebug.gd @@ -0,0 +1,26 @@ +class_name GameDebug +extends RefCounted + +static var _singleton : GameDebug + +static var debug_mode : bool: + get = is_debug_mode, set = set_debug_mode + +static func set_debug_mode(value : bool) -> void: + if _singleton == null: + push_warning("Debug mode could not be set.") + return + _singleton._set_debug_mode(value) + +static func is_debug_mode() -> bool: + if _singleton == null: + push_warning("Could not get debug mode, returning false.") + return false + return _singleton._is_debug_mode() + +func _set_debug_mode(value : bool) -> void: + ArgumentParser.set_argument(&"game-debug", value) + print("Set debug mode to: ", value) + +func _is_debug_mode() -> bool: + return ArgumentParser.get_argument(&"game-debug", false) -- cgit v1.2.3-56-ga3b1