mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-30 17:07:59 +01:00
55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
|
using Fie.Object;
|
||
|
using Fie.Ponies.Twilight;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Fie.AI
|
||
|
{
|
||
|
public class FieAITaskTwilightShinyArrow : FieAITaskTwilightBase
|
||
|
{
|
||
|
private bool _isEnd;
|
||
|
|
||
|
public override void Initialize(FieAITaskController manager)
|
||
|
{
|
||
|
_isEnd = false;
|
||
|
manager.ownerCharacter.damageSystem.staggerEvent += healthSystem_staggerEvent;
|
||
|
manager.ownerCharacter.damageSystem.damagedEvent += HealthSystem_damagedEvent;
|
||
|
}
|
||
|
|
||
|
public override void Terminate(FieAITaskController manager)
|
||
|
{
|
||
|
manager.ownerCharacter.damageSystem.staggerEvent -= healthSystem_staggerEvent;
|
||
|
manager.ownerCharacter.damageSystem.damagedEvent -= HealthSystem_damagedEvent;
|
||
|
}
|
||
|
|
||
|
private void HealthSystem_damagedEvent(FieGameCharacter attacker, FieDamage damage)
|
||
|
{
|
||
|
nextStateWeightList[typeof(FieAITaskTwilightEnemyEvade)] = 100;
|
||
|
_isEnd = true;
|
||
|
}
|
||
|
|
||
|
private void healthSystem_staggerEvent(FieDamage damageObject)
|
||
|
{
|
||
|
nextStateWeightList[typeof(FieAITaskTwilightEnemyEvade)] = 100;
|
||
|
_isEnd = true;
|
||
|
}
|
||
|
|
||
|
public override bool Task(FieAITaskController manager)
|
||
|
{
|
||
|
if (_isEnd)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
if (manager.ownerCharacter.detector.lockonTargetObject == null)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
if (AdjustDirectionByBasicMovement(manager))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
manager.ownerCharacter.RequestToChangeState<FieStateMachineTwilightShinyArrow>(Vector3.zero, 0f, FieGameCharacter.StateMachineType.Attack);
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|