aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/GlobalClass/GameDebug.gd
diff options
context:
space:
mode:
author George L. Albany <Megacake1234@gmail.com>2023-07-09 02:14:54 +0200
committer GitHub <noreply@github.com>2023-07-09 02:14:54 +0200
commit1d8accc1ca6b30120732c56233e5d74e860de1bb (patch)
tree97c167b06a8b2f2b868107414b5676ccb5fcb53b /game/src/Game/GlobalClass/GameDebug.gd
parentd05bff0c40a482a9bb44877fe76b1e0efb2e1a68 (diff)
parent86bee7b44c7cc7adaef8cdf441667a99223dd98a (diff)
Merge pull request #135 from Spartan322/generalize/loading-and-events
Diffstat (limited to 'game/src/Game/GlobalClass/GameDebug.gd')
-rw-r--r--game/src/Game/GlobalClass/GameDebug.gd26
1 files changed, 26 insertions, 0 deletions
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)