From 8e4304ebc675b19c4697a4731e1125eb99d31565 Mon Sep 17 00:00:00 2001 From: Evgenij Titarenko Date: Sun, 25 Aug 2024 11:26:01 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=B8=D0=B3=D0=BD=D0=B0=D0=BB=D1=8B=20NP?= =?UTF-8?q?C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Node2d.cs | 40 ---------------------------------------- scripts/NPC.cs | 15 ++++++++++++++- 2 files changed, 14 insertions(+), 41 deletions(-) delete mode 100644 Node2d.cs diff --git a/Node2d.cs b/Node2d.cs deleted file mode 100644 index 7bc6071..0000000 --- a/Node2d.cs +++ /dev/null @@ -1,40 +0,0 @@ -using Godot; -using System; - -public partial class Node2d : CharacterBody2D -{ - public const float Speed = 300.0f; - public const float JumpVelocity = -400.0f; - - public override void _PhysicsProcess(double delta) - { - Vector2 velocity = Velocity; - - // Add the gravity. - if (!IsOnFloor()) - { - velocity += GetGravity() * (float)delta; - } - - // Handle Jump. - if (Input.IsActionJustPressed("ui_accept") && IsOnFloor()) - { - velocity.Y = JumpVelocity; - } - - // Get the input direction and handle the movement/deceleration. - // As good practice, you should replace UI actions with custom gameplay actions. - Vector2 direction = Input.GetVector("ui_left", "ui_right", "ui_up", "ui_down"); - if (direction != Vector2.Zero) - { - velocity.X = direction.X * Speed; - } - else - { - velocity.X = Mathf.MoveToward(Velocity.X, 0, Speed); - } - - Velocity = velocity; - MoveAndSlide(); - } -} diff --git a/scripts/NPC.cs b/scripts/NPC.cs index cd8c9f5..0b48e5f 100644 --- a/scripts/NPC.cs +++ b/scripts/NPC.cs @@ -5,6 +5,9 @@ using Godot.Collections; [Tool] public partial class NPC : Node2D { + [Signal] + public delegate void DialogEndedEventHandler(); + [Export] public string NPCName; [Export] public SpriteFrames Frames; [Export] public string DefaultDialogLine; @@ -24,7 +27,17 @@ public partial class NPC : Node2D public bool IsDialogEnded => _currentDialogLine == DialogLines.Count; //Возвращаем строку диалога и увеличиваем счетчик текущей строки если диалог законче, и возвращаем строку по-умолчанию, если диалог законен. - public string Message => IsDialogEnded ? DefaultDialogLine : DialogLines[_currentDialogLine++]; + public string Message + { + get + { + if (_currentDialogLine + 1 == DialogLines.Count) + { + EmitSignal(SignalName.DialogEnded); + } + return IsDialogEnded ? DefaultDialogLine : DialogLines[_currentDialogLine++]; + } + } public override void _Ready() {