|
@@ -1,16 +1,26 @@
|
|
|
using CommonAI.Zone;
|
|
|
using CommonAI.Zone.Helper;
|
|
|
using CommonAI.ZoneClient;
|
|
|
+using ET;
|
|
|
+using ET.EventType;
|
|
|
+using Sirenix.Utilities;
|
|
|
using System;
|
|
|
+using System.Drawing.Drawing2D;
|
|
|
|
|
|
public class BattleUnit : BattleObject
|
|
|
{
|
|
|
public BattleUnit() { }
|
|
|
public ZoneUnit ZUnit { get { return ZoneObject as ZoneUnit; } }
|
|
|
|
|
|
+ private EventDispatcher<UnitActionStatus, object> actionChangeHandler;
|
|
|
+
|
|
|
public override void OnAwake(ZoneObject zo)
|
|
|
{
|
|
|
base.OnAwake(zo);
|
|
|
+
|
|
|
+ actionChangeHandler = new();
|
|
|
+ registerActionHandler();
|
|
|
+
|
|
|
var zu = zo as ZoneUnit;
|
|
|
zu.OnActionChanged += OnActionChanged;
|
|
|
zu.OnSkillActionChanged += OnSkillActionChanged;
|
|
@@ -22,17 +32,8 @@ public class BattleUnit : BattleObject
|
|
|
zu.OnBuffAdded += OnBuffAdded;
|
|
|
zu.OnBuffRemoved += OnBuffRemoved;
|
|
|
zu.OnBuffChanged += OnBuffChanged;
|
|
|
- //新增层Buff移除
|
|
|
zu.OnRemoveBuffByOverlayLevel += OnRemoveBuffByOverlayLevel;
|
|
|
- //新增子状态
|
|
|
zu.OnActionSubStatusChanged += OnActionSubStatusChanged;
|
|
|
-
|
|
|
- zu.OnDoEvent += OnLayerObjectEvent;
|
|
|
- }
|
|
|
-
|
|
|
- protected virtual void OnActionSubStatusChanged(ZoneUnit unit, byte status, object evt)
|
|
|
- {
|
|
|
- throw new NotImplementedException();
|
|
|
}
|
|
|
|
|
|
protected virtual void OnRemoveBuffByOverlayLevel(ZoneUnit unit, ZoneUnit.BuffState buff)
|
|
@@ -55,9 +56,83 @@ public class BattleUnit : BattleObject
|
|
|
throw new NotImplementedException();
|
|
|
}
|
|
|
|
|
|
- protected virtual void OnLaunchSkill(ZoneUnit unit, ZoneUnit.SkillState skill, UnitLaunchSkillEvent evt)
|
|
|
+ private static uint groupId = 1;
|
|
|
+ protected static uint GroupId()
|
|
|
{
|
|
|
- throw new NotImplementedException();
|
|
|
+ return ++ groupId;
|
|
|
+ }
|
|
|
+
|
|
|
+ protected virtual void OnLaunchSkill(ZoneUnit unit, ZoneUnit.SkillState skill, UnitLaunchSkillEvent ev)
|
|
|
+ {
|
|
|
+ CommonAI.ZoneClient.ZoneUnit.ISkillAction action = ZUnit.CurrentSkillAction;
|
|
|
+ SkillTemplate skillTemplate = action.SkillData;
|
|
|
+ var curActionIndex = action.CurrentActionIndex;
|
|
|
+ if (skillTemplate.ActionQueue.Count <= curActionIndex)
|
|
|
+ {
|
|
|
+ Log.Error("Enter Skill state error> ({0})>CurrentActionIndex>{1}", skillTemplate.TemplateID, curActionIndex);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (skillTemplate.IsSingleAction)
|
|
|
+ {
|
|
|
+ UnitActionData actdata = skillTemplate.ActionQueue[curActionIndex];
|
|
|
+ var duration = action.ActionTimeArray != null ? action.ActionTimeArray[0] : actdata.TotalTimeMS;
|
|
|
+ EventSystem.Instance.Publish<PlayAnimatorEvent>(CurrentScene, new PlayAnimatorEvent() {
|
|
|
+ UnitId = Id,
|
|
|
+ CommandType = AnimatorEventType.Skill,
|
|
|
+ SkillName = actdata.ActionName,
|
|
|
+ Duration = duration,
|
|
|
+ Speed = action.ActionSpeed,
|
|
|
+ Loop = actdata.IsCycAction
|
|
|
+ });
|
|
|
+
|
|
|
+ if (!actdata.ActionAudioName.IsNullOrWhitespace())
|
|
|
+ {
|
|
|
+ SoundManager.Instance.Play3DSound(actdata.ActionAudioName, ZUnit.X, ZUnit.Y, ZUnit.Z, duration);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ UnitActionData item = null;
|
|
|
+ float speed = 1.0f;
|
|
|
+ bool isFrist = true;
|
|
|
+ for (int i = curActionIndex; i < skillTemplate.ActionQueue.Count; i++)
|
|
|
+ {
|
|
|
+ item = skillTemplate.ActionQueue[i];
|
|
|
+ if (action.LaunchEvent != null)
|
|
|
+ {
|
|
|
+ speed = action.LaunchEvent.action_speed;
|
|
|
+ if (action.LaunchEvent.action_speed_add != null && i < action.LaunchEvent.action_speed_add.Length)
|
|
|
+ {
|
|
|
+ speed += action.LaunchEvent.action_speed_add[i];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ EventSystem.Instance.Publish<PlayAnimatorEvent>(CurrentScene, new PlayAnimatorEvent()
|
|
|
+ {
|
|
|
+ UnitId = Id,
|
|
|
+ CommandType = AnimatorEventType.Skill,
|
|
|
+ SkillName = item.ActionName,
|
|
|
+ Duration = action.ActionTimeArray[i],
|
|
|
+ Speed = speed,
|
|
|
+ Loop = item.IsCycAction,
|
|
|
+ GroupId = GroupId()
|
|
|
+ });
|
|
|
+
|
|
|
+ if(!item.ActionAudioName.IsNullOrWhitespace())
|
|
|
+ {
|
|
|
+ if (isFrist)
|
|
|
+ {
|
|
|
+ isFrist = false;
|
|
|
+ SoundManager.Instance.Play3DSound(item.ActionAudioName, ZUnit.X, ZUnit.Y, ZUnit.Z, action.ActionTimeArray[i]);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ Log.Error("not implements multiAction audio");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
protected virtual void OnMaxMPChanged(ZoneUnit unit, int oldMaxMP, int newMaxMP)
|
|
@@ -82,29 +157,54 @@ public class BattleUnit : BattleObject
|
|
|
|
|
|
protected virtual void OnSkillActionChanged(ZoneUnit unit, ZoneUnit.SkillState skill, byte index)
|
|
|
{
|
|
|
- throw new NotImplementedException();
|
|
|
+ //技能状态
|
|
|
+
|
|
|
}
|
|
|
|
|
|
protected virtual void OnActionChanged(ZoneUnit unit, UnitActionStatus status, object evt)
|
|
|
{
|
|
|
+ Log.Debug($"ActionChange2: {status}, zobject status:{ZUnit.CurrentState}");
|
|
|
+ if(!actionChangeHandler.Notify(status, evt))
|
|
|
+ {
|
|
|
+ Log.Error($"unhandle action changed: {status}");
|
|
|
+ }
|
|
|
}
|
|
|
+ protected virtual void OnActionSubStatusChanged(ZoneUnit unit, byte status, object evt)
|
|
|
+ {
|
|
|
|
|
|
- protected virtual void OnLayerObjectEvent(ZoneObject obj, CommonAI.Zone.ObjectEvent e)
|
|
|
+ }
|
|
|
+ private void registerActionHandler()
|
|
|
{
|
|
|
- /*RegistZoneEvent<BattleHintNumberB2C>((data) =>
|
|
|
- {
|
|
|
- BattleHintNumberB2C evt = data as BattleHintNumberB2C;
|
|
|
- ShowHint(evt.Value, evt.State, evt.TargetObjID);
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.Idle, (_) => {
|
|
|
+ EventSystem.Instance.Publish<PlayAnimatorEvent>(CurrentScene, new PlayAnimatorEvent() { UnitId = Id, CommandType = AnimatorEventType.Idle });
|
|
|
});
|
|
|
- RegistZoneEvent<BattleFloatTipsEventB2C>((data) =>
|
|
|
- {
|
|
|
- BattleFloatTipsEventB2C evt = data as BattleFloatTipsEventB2C;
|
|
|
- ShowTipHint(evt.Type);
|
|
|
+
|
|
|
+ var move = actionChangeHandler.AddListener(UnitActionStatus.Move, (o) => {
|
|
|
+ EventSystem.Instance.Publish<PlayAnimatorEvent>(CurrentScene, new PlayAnimatorEvent() { UnitId = Id, CommandType = AnimatorEventType.Run });
|
|
|
});
|
|
|
- RegistZoneEvent<BubbleTipsEventB2C>((data) =>
|
|
|
- {
|
|
|
- BubbleTipsEventB2C evt = data as BubbleTipsEventB2C;
|
|
|
- AddBubbleChat(evt.Msg, 5);
|
|
|
- });*/
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.Chaos, move);
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.ServerSyncMove, move);
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.Escape, move);
|
|
|
+
|
|
|
+ var stun = actionChangeHandler.AddListener(UnitActionStatus.Stun, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.HitMove, stun);
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.Dead, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.Damage, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.Pick, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.Spawn, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.ChargeAtkMove, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.ChargeAtkIdle, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.DaZuo, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.DaZuoRecoveryAttr, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.ChuanGongA, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.ChuanGongB, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.BuffLockStateAction, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.HomeBack, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.ClearYaoQi, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.PetLock, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.BreakShield, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.Transport, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.Skill, (o) => { });
|
|
|
}
|
|
|
+
|
|
|
}
|