78 lines
1.7 KiB
C#
78 lines
1.7 KiB
C#
using Godot;
|
|
using SupaLidlGame.Extensions;
|
|
|
|
namespace SupaLidlGame.Characters;
|
|
|
|
public abstract partial class Boss : Enemy
|
|
{
|
|
[Export]
|
|
public State.NPC.NPCStateMachine BossStateMachine { get; set; }
|
|
|
|
[Export]
|
|
public string BossName { get; set; }
|
|
|
|
[Export]
|
|
public AudioStream Music { get; set; }
|
|
|
|
[Export]
|
|
public Vector2 InitialPosition { get; set; }
|
|
|
|
public abstract int Intensity { get; }
|
|
|
|
private bool _isActive;
|
|
|
|
[Export]
|
|
public virtual bool IsActive
|
|
{
|
|
get => _isActive;
|
|
set
|
|
{
|
|
_isActive = value;
|
|
|
|
// register or deregister ourselves when we are active/inactive
|
|
this.GetWorld().RegisterBoss(_isActive ? this : null);
|
|
}
|
|
}
|
|
|
|
public override void _Ready()
|
|
{
|
|
base._Ready();
|
|
|
|
Death += (Events.HurtArgs args) =>
|
|
{
|
|
UpdateBossStatus(true);
|
|
};
|
|
|
|
this.GetWorld().CurrentPlayer.Death += (args) =>
|
|
{
|
|
Reset();
|
|
};
|
|
}
|
|
|
|
protected void UpdateBossStatus(bool status)
|
|
{
|
|
GetNode<State.Global.GlobalState>("/root/GlobalState")
|
|
.Progression.BossStatus[SceneFilePath] = status;
|
|
}
|
|
|
|
protected virtual void Reset()
|
|
{
|
|
IsActive = false;
|
|
|
|
// reset animations
|
|
foreach (var child in GetNode("Animations").GetChildren())
|
|
{
|
|
if (child is AnimationPlayer anim)
|
|
{
|
|
if (anim.HasAnimation("RESET"))
|
|
{
|
|
anim.Play("RESET");
|
|
}
|
|
}
|
|
}
|
|
|
|
StateMachine.ChangeState(StateMachine.InitialState);
|
|
ThinkerStateMachine.ChangeState(ThinkerStateMachine.InitialState);
|
|
}
|
|
}
|