mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 22:27:58 +01:00
60 lines
1.5 KiB
C#
60 lines
1.5 KiB
C#
using Fie.Object;
|
|
using Fie.Ponies;
|
|
using Fie.Ponies.Applejack;
|
|
using UnityEngine;
|
|
|
|
namespace Fie.AI
|
|
{
|
|
public class FieAITaskApplejackRope : FieAITaskBase
|
|
{
|
|
private bool _isAssigned;
|
|
|
|
private bool _isEnd;
|
|
|
|
public override void Initialize(FieAITaskController manager)
|
|
{
|
|
_isAssigned = false;
|
|
_isEnd = false;
|
|
manager.ownerCharacter.damageSystem.staggerEvent += healthSystem_staggerEvent;
|
|
}
|
|
|
|
public override void Terminate(FieAITaskController manager)
|
|
{
|
|
manager.ownerCharacter.damageSystem.staggerEvent -= healthSystem_staggerEvent;
|
|
}
|
|
|
|
private void healthSystem_staggerEvent(FieDamage damageObject)
|
|
{
|
|
nextStateWeightList[typeof(FieAITaskApplejackBackstep)] = 100;
|
|
_isEnd = true;
|
|
}
|
|
|
|
public override bool Task(FieAITaskController manager)
|
|
{
|
|
if (_isEnd)
|
|
{
|
|
return true;
|
|
}
|
|
if (manager.ownerCharacter.detector.lockonTargetObject == null)
|
|
{
|
|
return true;
|
|
}
|
|
if (!_isAssigned)
|
|
{
|
|
manager.ownerCharacter.RequestToChangeState<FieStateMachinePoniesAbilitySlot1>(Vector3.zero, 0f, FieGameCharacter.StateMachineType.Attack);
|
|
FieStateMachineInterface currentStateMachine = manager.ownerCharacter.getStateMachine().getCurrentStateMachine();
|
|
if (!(currentStateMachine is FieStateMachineApplejackRopeAction) && !(currentStateMachine is FieStateMachineApplejackRopeActionAir))
|
|
{
|
|
return true;
|
|
}
|
|
currentStateMachine.stateChangeEvent += delegate
|
|
{
|
|
nextStateWeightList[typeof(FieAITaskApplejackMelee)] = 100;
|
|
_isEnd = true;
|
|
};
|
|
_isAssigned = true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|