FiE-Game/Assets/Scripts/Fie/Ponies/Fie.Ponies.RisingSun/FieStateMachineRisingSunTeleportationEndGround.cs

93 lines
2 KiB
C#
Raw Normal View History

2018-11-20 20:10:49 +01:00
using Fie.Object;
using Spine;
using System;
using System.Collections.Generic;
using UnityEngine;
namespace Fie.Ponies.RisingSun
{
public class FieStateMachineRisingSunTeleportationEndGround : FieStateMachineRisingSunInterface
{
private enum TeleportationState
{
TELEPORTATION_START,
TELEPORTATION_END
}
private TeleportationState _teleportationState;
private bool _isEnd;
private bool _isFinished;
private Type _nextState;
public override void updateState<T>(ref T gameCharacter)
{
if (gameCharacter is FieRisingSun)
{
FieRisingSun fieRisingSun = gameCharacter as FieRisingSun;
switch (_teleportationState)
{
case TeleportationState.TELEPORTATION_START:
{
TrackEntry trackEntry = fieRisingSun.animationManager.SetAnimation(27, isLoop: false, isForceSet: true);
if (trackEntry != null)
{
trackEntry.Event += delegate(Spine.AnimationState state, int trackIndex, Spine.Event e)
{
if (e.Data.Name == "finished")
{
_isFinished = true;
}
};
trackEntry.End += delegate
{
_isEnd = true;
};
}
else
{
_isEnd = true;
}
_teleportationState = TeleportationState.TELEPORTATION_END;
Vector3 externalInputVector = fieRisingSun.externalInputVector;
fieRisingSun.setFlipByVector(externalInputVector);
if (fieRisingSun.externalInputForce > 0.1f)
{
fieRisingSun.addMoveForce(fieRisingSun.flipDirectionVector.normalized * 10000f, 1f);
}
break;
}
}
if (_isEnd)
{
_nextState = typeof(FieStateMachineCommonIdle);
}
}
}
public override bool isEnd()
{
return _isEnd;
}
public override Type getNextState()
{
return _nextState;
}
public override List<Type> getAllowedStateList()
{
List<Type> list = new List<Type>();
if (_isFinished)
{
list.Add(typeof(FieStateMachineRisingSunTeleportation));
list.Add(typeof(FieStateMachinePoniesMove));
list.Add(typeof(FieStateMachineRisingSunFlying));
}
return list;
}
}
}