diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-09-04 13:29:53 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-09-04 13:29:53 +0200 |
| commit | 645d1083fecf707a56b07c1fd52df4015885d9ce (patch) | |
| tree | 3415e9ccd9e3c3dfbb382d08583816b0d2836f3d /Scripts/Game.cs | |
| parent | 6503e483766d3a4e1907ecd9b69e7db4e86e7cb6 (diff) | |
| download | texty-645d1083fecf707a56b07c1fd52df4015885d9ce.tar.xz texty-645d1083fecf707a56b07c1fd52df4015885d9ce.zip | |
game: add StatusLine behavior
Diffstat (limited to 'Scripts/Game.cs')
| -rw-r--r-- | Scripts/Game.cs | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/Scripts/Game.cs b/Scripts/Game.cs deleted file mode 100644 index 07dab9a..0000000 --- a/Scripts/Game.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Diagnostics; -using Godot; - -namespace Texty.Scripts -{ - public abstract class Game : MarginContainer - { - public CommandParser CommandParser; - public VBoxContainer LayoutContainer; - public OutputContainer OutputContainer; - - [Export(PropertyHint.File, "*.tscn")] public PackedScene OutputRowScene; - - public override void _Ready() - { - Debug.Assert(OutputRowScene != null, $"The {nameof(OutputRowScene)} was not set!"); - - CommandParser = GetNode<CommandParser>(nameof(CommandParser)); - LayoutContainer = GetNode<VBoxContainer>(nameof(LayoutContainer)); - OutputContainer = LayoutContainer.GetNode<OutputContainer>(nameof(OutputContainer)); - } - - public void OnInputSubmitted(string text) - { - var newRow = OutputRowScene.Instance<OutputRow>(); - newRow.InputText = text; - - var command = CommandParser.TryParse(text); - newRow.OutputText = command == null ? "Please rephrase your command" : "THE OUTPUT SHOULD GO HERE!"; - - OutputContainer.Add(newRow); - } - } -}
\ No newline at end of file |
