|
@@ -66,6 +66,11 @@ public class BattleUnit : BattleObject
|
|
|
protected virtual void OnLaunchSkill(ZoneUnit _, ZoneUnit.SkillState __, UnitLaunchSkillEvent ___)
|
|
|
{
|
|
|
CommonAI.ZoneClient.ZoneUnit.ISkillAction action = ZUnit.CurrentSkillAction;
|
|
|
+ if(action == null)
|
|
|
+ {
|
|
|
+ Log.Warning("object's currentSkillAction = null, cannot launch skill");
|
|
|
+ return;
|
|
|
+ }
|
|
|
SkillTemplate skillTemplate = action.SkillData;
|
|
|
var curActionIndex = action.CurrentActionIndex;
|
|
|
if (skillTemplate.ActionQueue.Count <= curActionIndex)
|
|
@@ -78,20 +83,21 @@ public class BattleUnit : BattleObject
|
|
|
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())
|
|
|
+ if (actdata.ActionName.IsNullOrWhitespace())
|
|
|
{
|
|
|
- SoundManager.Instance.Play3DSound(actdata.ActionAudioName, ZUnit.X, ZUnit.Y, ZUnit.Z, duration);
|
|
|
+ Log.Debug($"ActionName is null @skill({skillTemplate.TemplateID}), actionIndex:{curActionIndex}");
|
|
|
+ return;
|
|
|
}
|
|
|
+ var duration = action.ActionTimeArray != null ? action.ActionTimeArray[0] : actdata.TotalTimeMS;
|
|
|
+ EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(
|
|
|
+ Id,
|
|
|
+ AnimatorEventType.Skill,
|
|
|
+ actdata.ActionName,
|
|
|
+ duration,
|
|
|
+ action.ActionSpeed,
|
|
|
+ 0,
|
|
|
+ actdata.IsCycAction, actdata.ActionAudioName)
|
|
|
+ );
|
|
|
}
|
|
|
else
|
|
|
{
|
|
@@ -101,6 +107,12 @@ public class BattleUnit : BattleObject
|
|
|
for (int i = curActionIndex; i < skillTemplate.ActionQueue.Count; i++)
|
|
|
{
|
|
|
item = skillTemplate.ActionQueue[i];
|
|
|
+ if (item.ActionName.IsNullOrWhitespace())
|
|
|
+ {
|
|
|
+ Log.Debug($"ActionName is null @skill({skillTemplate.TemplateID}), actionIndex:{curActionIndex}");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
if (action.LaunchEvent != null)
|
|
|
{
|
|
|
speed = action.LaunchEvent.action_speed;
|
|
@@ -110,23 +122,20 @@ public class BattleUnit : BattleObject
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- 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()
|
|
|
- });
|
|
|
+ EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(
|
|
|
+ Id,
|
|
|
+ AnimatorEventType.Skill,
|
|
|
+ item.ActionName,
|
|
|
+ action.ActionTimeArray[i],
|
|
|
+ speed, GroupId(),
|
|
|
+ item.IsCycAction,
|
|
|
+ isFrist ? item.ActionAudioName : ""));
|
|
|
|
|
|
if(!item.ActionAudioName.IsNullOrWhitespace())
|
|
|
{
|
|
|
if (isFrist)
|
|
|
{
|
|
|
isFrist = false;
|
|
|
- SoundManager.Instance.Play3DSound(item.ActionAudioName, ZUnit.X, ZUnit.Y, ZUnit.Z, action.ActionTimeArray[i]);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
@@ -154,7 +163,7 @@ public class BattleUnit : BattleObject
|
|
|
|
|
|
protected virtual void OnHPChanged(ZoneUnit unit, int oldHP, int newHP)
|
|
|
{
|
|
|
- throw new NotImplementedException();
|
|
|
+ Log.Debug($"hp change({unit.ObjectID}), {oldHP}-->{newHP}");
|
|
|
}
|
|
|
|
|
|
protected virtual void OnSkillActionChanged(ZoneUnit unit, ZoneUnit.SkillState skill, byte index)
|
|
@@ -178,11 +187,11 @@ public class BattleUnit : BattleObject
|
|
|
private void registerActionHandler()
|
|
|
{
|
|
|
actionChangeHandler.AddListener(UnitActionStatus.Idle, (_) => {
|
|
|
- EventSystem.Instance.Publish<PlayAnimatorEvent>(CurrentScene, new PlayAnimatorEvent() { UnitId = Id, CommandType = AnimatorEventType.Idle });
|
|
|
+ EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(Id, AnimatorEventType.Idle));
|
|
|
});
|
|
|
|
|
|
var move = actionChangeHandler.AddListener(UnitActionStatus.Move, (o) => {
|
|
|
- EventSystem.Instance.Publish<PlayAnimatorEvent>(CurrentScene, new PlayAnimatorEvent() { UnitId = Id, CommandType = AnimatorEventType.Run });
|
|
|
+ EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(Id, AnimatorEventType.Run));
|
|
|
});
|
|
|
actionChangeHandler.AddListener(UnitActionStatus.Chaos, move);
|
|
|
actionChangeHandler.AddListener(UnitActionStatus.ServerSyncMove, move);
|