mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 22:27:58 +01:00
61 lines
1.7 KiB
C#
61 lines
1.7 KiB
C#
using Fie.Object;
|
|
using Fie.Ponies;
|
|
using Fie.Ponies.RainbowDash;
|
|
using UnityEngine;
|
|
|
|
namespace Fie.AI
|
|
{
|
|
public class FieAITaskRainbowDashDoublePayback : 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(FieAITaskRainbowDashEnemyEvade)] = 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 FieStateMachineRainbowDashDoublePaybackPrepareOnGround) && !(currentStateMachine is FieStateMachineRainbowDashDoublePaybackPrepareMidAir))
|
|
{
|
|
return true;
|
|
}
|
|
currentStateMachine.stateChangeEvent += delegate
|
|
{
|
|
nextStateWeightList[typeof(FieAITaskRainbowDashEvasion)] = 100;
|
|
nextStateWeightList[typeof(FieAITaskRainbowDashRainblow)] = 100;
|
|
_isEnd = true;
|
|
};
|
|
_isAssigned = true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|