Исправлена логика шипов

This commit is contained in:
Евгений Титаренко 2023-08-19 12:06:48 +03:00
parent 1fe08a596d
commit 4dbcb00029
2 changed files with 56 additions and 14 deletions

View file

@ -4,6 +4,8 @@ using System.Collections.Generic;
public partial class LivingArmor : CharacterBody2D public partial class LivingArmor : CharacterBody2D
{ {
[Signal]
public delegate void KilledEventHandler();
public enum State public enum State
{ {
Waiting, Waiting,
@ -21,6 +23,7 @@ public partial class LivingArmor : CharacterBody2D
[Export] public SideFace Facing = SideFace.Down; [Export] public SideFace Facing = SideFace.Down;
[Export] public float MovingSpeed = 16f; [Export] public float MovingSpeed = 16f;
[Export] public bool IsAlive = true;
public State CurrentState public State CurrentState
{ {
@ -82,6 +85,8 @@ public partial class LivingArmor : CharacterBody2D
public override void _PhysicsProcess(double delta) public override void _PhysicsProcess(double delta)
{ {
if (!IsAlive)
return;
_timeSinceState += (float)delta; _timeSinceState += (float)delta;
switch (_state) switch (_state)
@ -240,5 +245,15 @@ public partial class LivingArmor : CharacterBody2D
} }
_bodiesInSight.Remove(body); _bodiesInSight.Remove(body);
} }
public void Kill(Node2D killer)
{
if (!IsAlive)
return;
GD.Print($"{this.Name} was killed by {killer.Name}");
IsAlive = false;
EmitSignal(SignalName.Killed);
QueueFree(); // TODO
}
} }

View file

@ -1,5 +1,7 @@
using Godot; using Godot;
using System; using System;
using System.Collections.Generic;
using System.Linq;
public partial class Spikes : Area2D public partial class Spikes : Area2D
{ {
@ -16,6 +18,7 @@ public partial class Spikes : Area2D
private AnimatedSprite2D _sprite; private AnimatedSprite2D _sprite;
private State _state = State.Waiting; private State _state = State.Waiting;
private float _timeSinceState; private float _timeSinceState;
private readonly List<Node2D> _bodiesOnButton = new List<Node2D>();
// Called when the node enters the scene tree for the first time. // Called when the node enters the scene tree for the first time.
@ -47,6 +50,7 @@ public partial class Spikes : Area2D
break; break;
case State.Opening: case State.Opening:
_sprite.Play("default"); _sprite.Play("default");
KillBodiesOnButton();
break; break;
case State.Closing: case State.Closing:
_sprite.PlayBackwards("default"); _sprite.PlayBackwards("default");
@ -56,27 +60,50 @@ public partial class Spikes : Area2D
} }
private void KillBodiesOnButton()
{
foreach (var body in _bodiesOnButton)
{
switch (body)
{
case LivingArmor armor:
armor.Kill(this);
break;
case Wretched wretched:
wretched.Kill(this);
break;
case Player player:
player.Kill(this);
break;
default:
return;
}
}
}
private void _OnEntered(Node2D body) private void _OnEntered(Node2D body)
{ {
if (_state is State.Waiting) // if (_state is State.Waiting)
return; // {
switch (body) _bodiesOnButton.Add(body);
{ // }
case Wretched wretched: // switch (body)
wretched.Kill(this); // {
break; // case Wretched wretched:
case Player player: // wretched.Kill(this);
player.Kill(this); // break;
break; // case Player player:
default: // player.Kill(this);
return; // break;
} // default:
// return;
// }
} }
private void _OnExited(Node2D body) private void _OnExited(Node2D body)
{ {
// Replace with function body. _bodiesOnButton.Remove(body);
} }
private void _WhenOpened() private void _WhenOpened()