SupaLidlGame/Entities/Projectile.cs

90 lines
1.7 KiB
C#
Raw Normal View History

2023-05-15 00:20:17 -07:00
using Godot;
2023-05-26 22:28:08 -07:00
using SupaLidlGame.Characters;
using SupaLidlGame.BoundingBoxes;
2023-05-15 00:20:17 -07:00
2023-06-03 18:21:46 -07:00
namespace SupaLidlGame.Entities;
public partial class Projectile : RigidBody2D
2023-05-15 00:20:17 -07:00
{
2023-06-03 18:21:46 -07:00
public Vector2 Velocity => Direction * Speed;
2023-05-26 22:28:08 -07:00
[Export]
public string ProjectileName { get; set; }
2023-06-03 18:21:46 -07:00
[Export]
public float Speed { get; set; }
2023-05-26 22:28:08 -07:00
2023-06-03 18:21:46 -07:00
[Export]
public Vector2 Direction { get; set; }
2023-05-26 22:28:08 -07:00
2023-06-03 18:21:46 -07:00
[Export]
public Hitbox Hitbox { get; set; }
2023-05-26 22:28:08 -07:00
2023-06-03 18:21:46 -07:00
[Export]
public double Lifetime { get; set; } = 10;
2023-06-03 14:02:40 -07:00
2023-07-13 23:46:58 -07:00
[Export]
public double Delay { get; set; } = 0;
2023-06-03 18:21:46 -07:00
public Character Character { get; set; }
2023-05-26 22:28:08 -07:00
public bool IsDead { get; set; }
2023-07-13 23:46:58 -07:00
public override void _Ready()
{
Hitbox.Hit += OnHit;
}
2023-06-03 18:21:46 -07:00
public override void _Process(double delta)
{
2023-07-13 23:46:58 -07:00
if (Delay > 0)
{
Delay -= delta;
if (Delay <= 0)
{
OnDelayEnd();
}
2023-07-13 23:46:58 -07:00
}
2023-06-03 18:21:46 -07:00
if ((Lifetime -= delta) <= 0)
2023-06-03 14:02:40 -07:00
{
if (!IsDead)
{
Die();
}
2023-06-03 14:02:40 -07:00
}
2023-06-03 18:21:46 -07:00
}
2023-06-03 14:02:40 -07:00
2023-06-03 18:21:46 -07:00
public override void _PhysicsProcess(double delta)
{
if (IsDead)
{
return;
}
2023-07-17 09:30:49 -07:00
Vector2 velocity = Delay <= 0 ? Velocity : Vector2.Zero;
MoveAndCollide(velocity * (float)delta);
2023-06-03 18:21:46 -07:00
}
2023-05-26 22:28:08 -07:00
2023-07-13 23:46:58 -07:00
public void OnHit(BoundingBox box)
2023-06-03 18:21:46 -07:00
{
if (box is Hurtbox hurtbox)
2023-05-26 22:28:08 -07:00
{
2023-06-03 18:21:46 -07:00
hurtbox.InflictDamage(
Hitbox.Damage,
Character,
Hitbox.Knockback,
knockbackVector: Direction
);
2023-05-26 22:28:08 -07:00
}
2023-05-15 00:20:17 -07:00
}
public virtual void Die()
{
QueueFree();
}
public virtual void OnDelayEnd()
{
}
2023-05-15 00:20:17 -07:00
}