SupaLidlGame/Characters/Character.cs

161 lines
3.8 KiB
C#
Raw Normal View History

2022-11-10 20:29:53 -08:00
using Godot;
2022-11-19 21:21:12 -08:00
using SupaLidlGame.Items;
using SupaLidlGame.Utils;
2022-11-10 20:29:53 -08:00
namespace SupaLidlGame.Characters
{
2022-11-19 21:21:12 -08:00
public partial class Character : CharacterBody2D, IFaction
2022-11-10 20:29:53 -08:00
{
2022-11-12 16:45:04 -08:00
[Export]
2022-11-18 13:53:51 -08:00
public float Speed { get; protected set; } = 32.0f;
2022-11-12 16:45:04 -08:00
2022-11-13 19:52:09 -08:00
[Export]
public float Mass
{
get => _mass;
set
{
if (value > 0)
_mass = value;
}
}
protected float _mass = 1.0f;
2022-11-10 20:29:53 -08:00
public float JumpVelocity { get; protected set; } = -400.0f;
2022-11-13 19:52:09 -08:00
2022-11-10 20:29:53 -08:00
public float AccelerationMagnitude { get; protected set; } = 256.0f;
public Vector2 Acceleration => Direction * AccelerationMagnitude;
2022-11-13 15:42:04 -08:00
public Vector2 Direction { get; set; } = Vector2.Zero;
public Vector2 Target { get; set; } = Vector2.Zero;
2022-11-19 21:21:12 -08:00
public float Health
{
get => _health;
set
{
if (!IsAlive && value < 0)
{
return;
}
_health = value;
GD.Print(_health);
if (_health <= 0)
{
Die();
}
}
}
protected float _health = 100f;
public bool IsAlive => Health > 0;
[Export]
public AnimatedSprite2D Sprite { get; set; }
[Export]
public Inventory Inventory { get; set; }
2022-11-13 19:52:09 -08:00
2022-11-13 15:42:04 -08:00
[Export]
public State.Machine StateMachine { get; set; }
2022-11-10 20:29:53 -08:00
2022-11-19 21:21:12 -08:00
[Export]
public ushort Faction { get; set; }
2022-11-10 20:29:53 -08:00
public override void _Process(double delta)
{
2022-11-13 15:42:04 -08:00
if (StateMachine != null)
{
StateMachine.Process(delta);
}
2022-11-19 21:21:12 -08:00
Sprite.FlipH = Target.x < 0;
DrawTarget();
2022-11-13 15:42:04 -08:00
}
public override void _Input(InputEvent @event)
{
if (StateMachine != null)
{
StateMachine.Input(@event);
}
2022-11-10 20:29:53 -08:00
}
public override void _PhysicsProcess(double delta)
{
2022-11-13 15:42:04 -08:00
if (StateMachine != null)
{
StateMachine.PhysicsProcess(delta);
}
2022-11-10 20:29:53 -08:00
}
2022-11-13 19:52:09 -08:00
2022-11-19 21:21:12 -08:00
/// <summary>
/// Modify the <c>Character</c>'s velocity
/// </summary>
public virtual void ModifyVelocity()
{
}
public virtual void Die()
{
GD.Print("lol died");
QueueFree();
}
2022-11-13 19:52:09 -08:00
public void ApplyImpulse(Vector2 impulse, bool resetVelocity = false)
{
// delta p = F delta t
if (resetVelocity)
Velocity = Vector2.Zero;
Velocity += impulse / Mass;
}
2022-11-19 21:21:12 -08:00
protected void DrawTarget()
{
Vector2 target = Target;
float angle = Mathf.Atan2(target.y, Mathf.Abs(target.x));
Vector2 scale = Inventory.Scale;
if (target.x < 0)
{
scale.y = -1;
angle = Mathf.Pi - angle;
}
else
{
scale.y = 1;
}
Inventory.Scale = scale;
Inventory.Rotation = angle;
}
public void _on_hurtbox_received_damage(float damage,
Character inflictor,
float knockback,
Vector2 knockbackOrigin = default,
Vector2 knockbackVector = default)
2022-11-13 19:52:09 -08:00
{
Health -= damage;
2022-11-19 21:21:12 -08:00
/*
Vector2 knockbackDir = knockbackVector;
if (knockbackDir == default)
{
if (knockbackOrigin == default)
{
knockbackOrigin = inflictor.GlobalPosition;
}
knockbackDir = knockbackOrigin.DirectionTo(GlobalPosition);
}
ApplyImpulse(knockback.)
*/
2022-11-13 19:52:09 -08:00
}
2022-11-10 20:29:53 -08:00
}
}