SupaLidlGame/State/StateMachine.cs

42 lines
1.0 KiB
C#
Raw Normal View History

2023-05-23 00:23:53 -07:00
using Godot;
namespace SupaLidlGame.State
{
public abstract partial class StateMachine<T> : Node where T : IState<T>
{
public T CurrentState { get; protected set; }
public abstract T InitialState { get; set; }
public override void _Ready()
{
ChangeState(InitialState);
}
public virtual bool ChangeState(T nextState, bool isProxied = false)
{
if (nextState is null)
{
return false;
}
2023-06-03 10:55:48 -07:00
if (CurrentState is not null)
2023-05-23 00:23:53 -07:00
{
CurrentState.Exit(nextState);
}
CurrentState = nextState;
// if the next state decides it should enter a different state,
// then we enter that different state instead
var nextNextState = nextState.Enter(CurrentState);
if (nextNextState is T t)
{
return ChangeState(t, true);
}
return true;
}
}
}