BattleUnit.cs 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. using CommonAI.Zone;
  2. using CommonAI.Zone.Helper;
  3. using CommonAI.ZoneClient;
  4. using ET;
  5. using ET.EventType;
  6. using Sirenix.Utilities;
  7. using System;
  8. using XmdsCommon.Plugin;
  9. public class BattleUnit : BattleObject
  10. {
  11. public BattleUnit() { }
  12. public ZoneUnit ZUnit { get { return ZoneObject as ZoneUnit; } }
  13. public bool IsDead { get { return ZUnit.CurrentState == UnitActionStatus.Dead; } }
  14. private EventDispatcher<UnitActionStatus, object> actionChangeHandler;
  15. public override void OnAwake(ZoneObject zo)
  16. {
  17. base.OnAwake(zo);
  18. actionChangeHandler = new();
  19. registerActionHandler();
  20. var zu = zo as ZoneUnit;
  21. zu.OnActionChanged += OnActionChanged;
  22. zu.OnSkillActionChanged += OnSkillActionChanged;
  23. zu.OnHPChanged += OnHPChanged;
  24. zu.OnMPChanged += OnMPChanged;
  25. zu.OnMaxHPChanged += OnMaxHPChanged;
  26. zu.OnMaxMPChanged += OnMaxMPChanged;
  27. zu.OnLaunchSkill += OnLaunchSkill;
  28. zu.OnBuffAdded += OnBuffAdded;
  29. zu.OnBuffRemoved += OnBuffRemoved;
  30. zu.OnBuffChanged += OnBuffChanged;
  31. zu.OnRemoveBuffByOverlayLevel += OnRemoveBuffByOverlayLevel;
  32. zu.OnActionSubStatusChanged += OnActionSubStatusChanged;
  33. }
  34. protected virtual void OnRemoveBuffByOverlayLevel(ZoneUnit unit, ZoneUnit.BuffState buff)
  35. {
  36. throw new NotImplementedException();
  37. }
  38. protected virtual void OnBuffChanged(ZoneUnit unit, ZoneUnit.BuffState buff)
  39. {
  40. throw new NotImplementedException();
  41. }
  42. protected virtual void OnBuffRemoved(ZoneUnit unit, ZoneUnit.BuffState buff)
  43. {
  44. throw new NotImplementedException();
  45. }
  46. protected virtual void OnBuffAdded(ZoneUnit unit, ZoneUnit.BuffState buff)
  47. {
  48. throw new NotImplementedException();
  49. }
  50. private static uint groupId = 1;
  51. protected static uint GroupId()
  52. {
  53. return ++ groupId;
  54. }
  55. protected virtual void OnLaunchSkill(ZoneUnit _, ZoneUnit.SkillState __, UnitLaunchSkillEvent ___)
  56. {
  57. CommonAI.ZoneClient.ZoneUnit.ISkillAction action = ZUnit.CurrentSkillAction;
  58. if(action == null)
  59. {
  60. Log.Warning("object's currentSkillAction = null, cannot launch skill");
  61. return;
  62. }
  63. SkillTemplate skillTemplate = action.SkillData;
  64. var curActionIndex = action.CurrentActionIndex;
  65. if (skillTemplate.ActionQueue.Count <= curActionIndex)
  66. {
  67. Log.Error("Enter Skill state error> ({0})>CurrentActionIndex>{1}", skillTemplate.TemplateID, curActionIndex);
  68. return;
  69. }
  70. //Log.Debug($"OnLaunchSkill({Id}), skill({skillTemplate.TemplateID}), actionIndex:{curActionIndex}");
  71. if (skillTemplate.IsSingleAction)
  72. {
  73. UnitActionData actdata = skillTemplate.ActionQueue[curActionIndex];
  74. if (actdata.ActionName.IsNullOrWhitespace())
  75. {
  76. Log.Debug($"ActionName is null @skill({skillTemplate.TemplateID}), actionIndex:{curActionIndex}");
  77. return;
  78. }
  79. var duration = action.ActionTimeArray != null ? action.ActionTimeArray[0] : actdata.TotalTimeMS;
  80. EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(
  81. Id,
  82. AnimatorEventType.Skill,
  83. actdata.ActionName,
  84. duration,
  85. action.ActionSpeed,
  86. 0,
  87. actdata.IsCycAction, actdata.ActionAudioName)
  88. );
  89. }
  90. else
  91. {
  92. float speed = 1.0f;
  93. bool isFrist = true;
  94. for (int i = curActionIndex; i < skillTemplate.ActionQueue.Count; i++)
  95. {
  96. UnitActionData item = skillTemplate.ActionQueue[i];
  97. if (item.ActionName.IsNullOrWhitespace())
  98. {
  99. Log.Debug($"ActionName is null @skill({skillTemplate.TemplateID}), actionIndex:{curActionIndex}");
  100. return;
  101. }
  102. if (action.LaunchEvent != null)
  103. {
  104. speed = action.LaunchEvent.action_speed;
  105. if (action.LaunchEvent.action_speed_add != null && i < action.LaunchEvent.action_speed_add.Length)
  106. {
  107. speed += action.LaunchEvent.action_speed_add[i];
  108. }
  109. }
  110. EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(
  111. Id,
  112. AnimatorEventType.Skill,
  113. item.ActionName,
  114. action.ActionTimeArray[i],
  115. speed, GroupId(),
  116. item.IsCycAction,
  117. isFrist ? item.ActionAudioName : ""));
  118. if(!item.ActionAudioName.IsNullOrWhitespace())
  119. {
  120. if (isFrist)
  121. {
  122. isFrist = false;
  123. }
  124. else
  125. {
  126. Log.Error("not implements multiAction audio");
  127. }
  128. }
  129. }
  130. }
  131. }
  132. protected virtual void OnMaxMPChanged(ZoneUnit unit, int oldMaxMP, int newMaxMP)
  133. {
  134. throw new NotImplementedException();
  135. }
  136. protected virtual void OnMPChanged(ZoneUnit unit, int oldMP, int newMP)
  137. {
  138. throw new NotImplementedException();
  139. }
  140. protected virtual void OnMaxHPChanged(ZoneUnit unit, int oldMaxHP, int newMaxHP)
  141. {
  142. OnHPChanged();
  143. }
  144. protected virtual void OnHPChanged(ZoneUnit unit, int oldHP, int newHP)
  145. {
  146. OnHPChanged();
  147. }
  148. private void OnHPChanged()
  149. {
  150. var prop = ZUnit.Info.Properties as XmdsUnitProperties;
  151. if (prop != null)
  152. {
  153. if(prop.GameStatusType == XmdsUnitProperties.StatusType.SpecialElite)
  154. {
  155. var hp = ZUnit.HP;
  156. var pg = (float)ZUnit.HP * 100 / ZUnit.MaxHP;
  157. EventSystem.Instance.Publish<HPRefresh>(HPRefresh.Static.Clone(HPRefresh.Index.Tower, pg, hp));
  158. //Log.Debug($"tower({ZUnit.ObjectID}@{ZUnit.Info.Name}) hp: {ZUnit.HP}/{ZUnit.MaxHP}");
  159. }
  160. else if(prop.GameStatusType == XmdsUnitProperties.StatusType.SpecialBoss)
  161. {
  162. var hp = ZUnit.HP;
  163. var pg = (float)ZUnit.HP * 100 / ZUnit.MaxHP;
  164. EventSystem.Instance.Publish<HPRefresh>(HPRefresh.Static.Clone(HPRefresh.Index.Boss, pg, hp));
  165. //Log.Debug($"Boss({ZUnit.ObjectID}) hp: {ZUnit.HP}/{ZUnit.MaxHP}");
  166. }
  167. }
  168. //Log.Debug($"hp({ZUnit.ObjectID}) change: {ZUnit.HP}");
  169. }
  170. protected virtual void OnSkillActionChanged(ZoneUnit unit, ZoneUnit.SkillState skill, byte index)
  171. {
  172. //技能状态
  173. }
  174. protected virtual void OnActionChanged(ZoneUnit unit, UnitActionStatus status, object evt)
  175. {
  176. //Log.Debug($"ActionChange({Id}): {status}, zobject status:{ZUnit.CurrentState}");
  177. if(!actionChangeHandler.Notify(status, evt))
  178. {
  179. Log.Error($"unhandle action changed: {status}");
  180. }
  181. }
  182. protected virtual void OnActionSubStatusChanged(ZoneUnit unit, byte status, object evt)
  183. {
  184. }
  185. private void registerActionHandler()
  186. {
  187. actionChangeHandler.AddListener(UnitActionStatus.Idle, (_) => {
  188. EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(Id, AnimatorEventType.Idle));
  189. });
  190. var move = actionChangeHandler.AddListener(UnitActionStatus.Move, (o) => {
  191. EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(Id, AnimatorEventType.Run));
  192. });
  193. actionChangeHandler.AddListener(UnitActionStatus.Chaos, move);
  194. actionChangeHandler.AddListener(UnitActionStatus.ServerSyncMove, move);
  195. actionChangeHandler.AddListener(UnitActionStatus.Escape, move);
  196. var stun = actionChangeHandler.AddListener(UnitActionStatus.Stun, (o) => { });
  197. actionChangeHandler.AddListener(UnitActionStatus.HitMove, stun);
  198. actionChangeHandler.AddListener(UnitActionStatus.Dead, (o) => { });
  199. actionChangeHandler.AddListener(UnitActionStatus.Damage, (o) => { });
  200. actionChangeHandler.AddListener(UnitActionStatus.Pick, (o) => { });
  201. actionChangeHandler.AddListener(UnitActionStatus.Spawn, (o) => { });
  202. actionChangeHandler.AddListener(UnitActionStatus.ChargeAtkMove, (o) => { });
  203. actionChangeHandler.AddListener(UnitActionStatus.ChargeAtkIdle, (o) => { });
  204. actionChangeHandler.AddListener(UnitActionStatus.DaZuo, (o) => { });
  205. actionChangeHandler.AddListener(UnitActionStatus.DaZuoRecoveryAttr, (o) => { });
  206. actionChangeHandler.AddListener(UnitActionStatus.ChuanGongA, (o) => { });
  207. actionChangeHandler.AddListener(UnitActionStatus.ChuanGongB, (o) => { });
  208. actionChangeHandler.AddListener(UnitActionStatus.BuffLockStateAction, (o) => { });
  209. actionChangeHandler.AddListener(UnitActionStatus.HomeBack, (o) => { });
  210. actionChangeHandler.AddListener(UnitActionStatus.ClearYaoQi, (o) => { });
  211. actionChangeHandler.AddListener(UnitActionStatus.PetLock, (o) => { });
  212. actionChangeHandler.AddListener(UnitActionStatus.BreakShield, (o) => { });
  213. actionChangeHandler.AddListener(UnitActionStatus.Transport, (o) => { });
  214. actionChangeHandler.AddListener(UnitActionStatus.Skill, (o) => { });
  215. }
  216. }