|
@@ -1,12 +1,10 @@
|
|
|
using CommonAI.Zone;
|
|
|
using CommonAI.Zone.Helper;
|
|
|
using CommonAI.ZoneClient;
|
|
|
-using CommonLang.Geometry;
|
|
|
using ET;
|
|
|
using ET.EventType;
|
|
|
using Sirenix.Utilities;
|
|
|
using System;
|
|
|
-using System.Drawing.Drawing2D;
|
|
|
|
|
|
public class BattleUnit : BattleObject
|
|
|
{
|
|
@@ -101,12 +99,11 @@ public class BattleUnit : BattleObject
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- UnitActionData item = null;
|
|
|
float speed = 1.0f;
|
|
|
bool isFrist = true;
|
|
|
for (int i = curActionIndex; i < skillTemplate.ActionQueue.Count; i++)
|
|
|
{
|
|
|
- item = skillTemplate.ActionQueue[i];
|
|
|
+ UnitActionData item = skillTemplate.ActionQueue[i];
|
|
|
if (item.ActionName.IsNullOrWhitespace())
|
|
|
{
|
|
|
Log.Debug($"ActionName is null @skill({skillTemplate.TemplateID}), actionIndex:{curActionIndex}");
|
|
@@ -163,7 +160,7 @@ public class BattleUnit : BattleObject
|
|
|
|
|
|
protected virtual void OnHPChanged(ZoneUnit unit, int oldHP, int newHP)
|
|
|
{
|
|
|
- Log.Debug($"hp change({unit.ObjectID}), {oldHP}-->{newHP}");
|
|
|
+ Log.Debug($"hp({unit.ObjectID}) change, {oldHP}-->{newHP}");
|
|
|
}
|
|
|
|
|
|
protected virtual void OnSkillActionChanged(ZoneUnit unit, ZoneUnit.SkillState skill, byte index)
|
|
@@ -174,7 +171,7 @@ public class BattleUnit : BattleObject
|
|
|
|
|
|
protected virtual void OnActionChanged(ZoneUnit unit, UnitActionStatus status, object evt)
|
|
|
{
|
|
|
- Log.Debug($"ActionChange: {status}, zobject status:{ZUnit.CurrentState}");
|
|
|
+ Log.Debug($"ActionChange({Id}): {status}, zobject status:{ZUnit.CurrentState}");
|
|
|
if(!actionChangeHandler.Notify(status, evt))
|
|
|
{
|
|
|
Log.Error($"unhandle action changed: {status}");
|
|
@@ -199,7 +196,16 @@ public class BattleUnit : BattleObject
|
|
|
|
|
|
var stun = actionChangeHandler.AddListener(UnitActionStatus.Stun, (o) => { });
|
|
|
actionChangeHandler.AddListener(UnitActionStatus.HitMove, stun);
|
|
|
- actionChangeHandler.AddListener(UnitActionStatus.Dead, (o) => { });
|
|
|
+ actionChangeHandler.AddListener(UnitActionStatus.Dead, (o) => {
|
|
|
+ Log.Debug($"Unit({Id}) dead");
|
|
|
+ EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(
|
|
|
+ Id, AnimatorEventType.Dead ));
|
|
|
+ var launcheffect = ZUnit.Info.DeadActionEffect;
|
|
|
+ if (launcheffect != null)
|
|
|
+ {
|
|
|
+ EventSystem.Instance.Publish<PlayEffectEvent>(PlayEffectEvent.Static.Clone(launcheffect, Id, CommonLang.Geometry.Vector3.Zero));
|
|
|
+ }
|
|
|
+ });
|
|
|
actionChangeHandler.AddListener(UnitActionStatus.Damage, (o) => { });
|
|
|
actionChangeHandler.AddListener(UnitActionStatus.Pick, (o) => { });
|
|
|
actionChangeHandler.AddListener(UnitActionStatus.Spawn, (o) => { });
|