mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-27 15:57:59 +01:00
60 lines
1.6 KiB
C#
60 lines
1.6 KiB
C#
using Fie.Object;
|
|
using Fie.Ponies;
|
|
using Fie.Ponies.RainbowDash;
|
|
using UnityEngine;
|
|
|
|
namespace Fie.AI
|
|
{
|
|
public class FieAITaskRainbowDashRainblow : 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<FieStateMachinePoniesAbilitySlot2>(Vector3.zero, 0f, FieGameCharacter.StateMachineType.Attack);
|
|
FieStateMachineInterface currentStateMachine = manager.ownerCharacter.getStateMachine().getCurrentStateMachine();
|
|
if (!(currentStateMachine is FieStateMachineRainbowDashRainblow) && !(currentStateMachine is FieStateMachineRainbowDashRainblowCloack))
|
|
{
|
|
return true;
|
|
}
|
|
currentStateMachine.stateChangeEvent += delegate
|
|
{
|
|
nextStateWeightList[typeof(FieAITaskRainbowDashMelee)] = 100;
|
|
_isEnd = true;
|
|
};
|
|
_isAssigned = true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|