SupaLidlGame/State/Character/PlayerRollState.cs

56 lines
1.4 KiB
C#
Raw Normal View History

2022-11-13 15:42:04 -08:00
using Godot;
2023-06-03 18:21:46 -07:00
namespace SupaLidlGame.State.Character;
public partial class PlayerRollState : PlayerState
2022-11-13 15:42:04 -08:00
{
2023-06-03 18:21:46 -07:00
private double _timeLeftToRoll = 0;
2022-11-13 15:42:04 -08:00
2023-06-03 18:21:46 -07:00
private Vector2 _rollDirection = Vector2.Zero;
2022-11-13 15:42:04 -08:00
2023-06-11 15:15:52 -07:00
private AnimationPlayer _rollAnimation;
public override void _Ready()
{
_rollAnimation = _player.GetNode<AnimationPlayer>("RollAnimation");
base._Ready();
}
2023-06-03 18:21:46 -07:00
public override IState<CharacterState> Enter(IState<CharacterState> previousState)
{
_timeLeftToRoll = 0.5;
// roll the direction we were previously moving in
_rollDirection = Character.Direction;
Character.Target = Character.Direction;
2023-06-11 15:15:52 -07:00
if (Character.Direction.X >= 0)
{
_rollAnimation.Play("roll");
}
else
{
_rollAnimation.PlayBackwards("roll");
}
2023-06-03 18:21:46 -07:00
return base.Enter(previousState);
}
2022-11-13 15:42:04 -08:00
2023-06-03 18:21:46 -07:00
public override void Exit(IState<CharacterState> nextState)
{
// we want to reset our state variables in case we are forced out of
// this state (e.g. from death)
_timeLeftToRoll = 0;
_rollDirection = Character.Direction;
2023-06-11 15:15:52 -07:00
_rollAnimation.Stop();
2023-06-03 18:21:46 -07:00
base.Exit(nextState);
}
2022-11-13 15:42:04 -08:00
2023-06-03 18:21:46 -07:00
public override CharacterState Process(double delta)
{
Character.Direction = _rollDirection;
if ((_timeLeftToRoll -= delta) <= 0)
2022-11-13 15:42:04 -08:00
{
2023-06-03 18:21:46 -07:00
return IdleState;
2022-11-13 15:42:04 -08:00
}
2023-06-03 18:21:46 -07:00
return null;
2022-11-13 15:42:04 -08:00
}
}