2024-07-22 14:46:20 +08:00
|
|
|
using BehaviorDesigner.Runtime.Tasks;
|
2024-12-20 19:56:53 +08:00
|
|
|
using Cysharp.Threading.Tasks;
|
2024-07-22 14:46:20 +08:00
|
|
|
using Gameplay.BT.Variables;
|
|
|
|
|
using Gameplay.Unit;
|
2024-12-20 19:56:53 +08:00
|
|
|
using Gameplay.AI;
|
|
|
|
|
using Framework;
|
2024-07-22 14:46:20 +08:00
|
|
|
|
|
|
|
|
public class BTEventMoveTo : Action
|
|
|
|
|
{
|
|
|
|
|
public SharedBattleInfo SharedBattleInfo;
|
|
|
|
|
|
|
|
|
|
private GameUnit _owner;
|
|
|
|
|
private GameUnit _target;
|
2024-12-20 19:56:53 +08:00
|
|
|
private bool needCheck;
|
2024-07-22 14:46:20 +08:00
|
|
|
|
|
|
|
|
public override void OnStart()
|
|
|
|
|
{
|
|
|
|
|
_owner = GameUnitManager.instance.infightUnits.Search(SharedBattleInfo.Value.ownerId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override TaskStatus OnUpdate()
|
|
|
|
|
{
|
2024-12-20 19:56:53 +08:00
|
|
|
if (_owner == null) return TaskStatus.Failure;
|
|
|
|
|
|
|
|
|
|
// 避开其他AI
|
|
|
|
|
AvoidOtherUnit();
|
|
|
|
|
|
2024-07-22 14:46:20 +08:00
|
|
|
if (SharedBattleInfo.Value.theChosenOneId != Constants.INVALID_UINT_ID && !AIUtils.IsNeedStop(_owner))
|
|
|
|
|
{
|
|
|
|
|
{
|
2024-07-23 14:00:45 +08:00
|
|
|
if (GameUnitManager.instance.infightUnits.Contains(SharedBattleInfo.Value.theChosenOneId))
|
|
|
|
|
{
|
|
|
|
|
var target = GameUnitManager.instance.infightUnits.Search(SharedBattleInfo.Value.theChosenOneId);
|
|
|
|
|
if (target != null)
|
2024-10-21 15:44:25 +08:00
|
|
|
AIUtils.CheckAndMove(_owner, target.transData.cellIndex);
|
2024-07-23 14:00:45 +08:00
|
|
|
}
|
2024-07-22 14:46:20 +08:00
|
|
|
}
|
|
|
|
|
}
|
2024-07-23 14:00:45 +08:00
|
|
|
|
2024-07-22 14:46:20 +08:00
|
|
|
return TaskStatus.Failure;
|
|
|
|
|
}
|
2024-12-20 19:56:53 +08:00
|
|
|
|
|
|
|
|
private async void AvoidOtherUnit()
|
|
|
|
|
{
|
|
|
|
|
if (AIUtils.IsNeedStop(_owner)) return;
|
|
|
|
|
|
|
|
|
|
if (_owner.statusData.isMoveing && !needCheck)
|
|
|
|
|
{
|
|
|
|
|
needCheck = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (needCheck && !_owner.statusData.isMoveing &&
|
|
|
|
|
_owner.controlData.targetCellIndex == -1)
|
|
|
|
|
{
|
|
|
|
|
needCheck = false;
|
|
|
|
|
// 随机等待 防止同步
|
|
|
|
|
var randomDelay = UnityEngine.Random.Range(0f, 1f);
|
|
|
|
|
await UniTask.Delay((int)(randomDelay * 1000));
|
|
|
|
|
|
|
|
|
|
AIUtils.CheckAreaIsOtherEnemyUnit(_owner, SharedBattleInfo.Value.theChosenOneId);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-07-22 14:46:20 +08:00
|
|
|
}
|