BattleUnit.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. using CommonAI.Zone;
  2. using CommonAI.Zone.Helper;
  3. using CommonAI.ZoneClient;
  4. using System;
  5. public class BattleUnit : BattleObject
  6. {
  7. public BattleUnit() { }
  8. public ZoneUnit ZUnit { get { return ZoneObject as ZoneUnit; } }
  9. public override void OnAwake(ZoneObject zo)
  10. {
  11. base.OnAwake(zo);
  12. var zu = zo as ZoneUnit;
  13. zu.OnActionChanged += OnActionChanged;
  14. zu.OnSkillActionChanged += OnSkillActionChanged;
  15. zu.OnHPChanged += OnHPChanged;
  16. zu.OnMPChanged += OnMPChanged;
  17. zu.OnMaxHPChanged += OnMaxHPChanged;
  18. zu.OnMaxMPChanged += OnMaxMPChanged;
  19. zu.OnLaunchSkill += OnLaunchSkill;
  20. zu.OnBuffAdded += OnBuffAdded;
  21. zu.OnBuffRemoved += OnBuffRemoved;
  22. zu.OnBuffChanged += OnBuffChanged;
  23. //新增层Buff移除
  24. zu.OnRemoveBuffByOverlayLevel += OnRemoveBuffByOverlayLevel;
  25. //新增子状态
  26. zu.OnActionSubStatusChanged += OnActionSubStatusChanged;
  27. zu.OnDoEvent += OnLayerObjectEvent;
  28. }
  29. protected virtual void OnActionSubStatusChanged(ZoneUnit unit, byte status, object evt)
  30. {
  31. throw new NotImplementedException();
  32. }
  33. protected virtual void OnRemoveBuffByOverlayLevel(ZoneUnit unit, ZoneUnit.BuffState buff)
  34. {
  35. throw new NotImplementedException();
  36. }
  37. protected virtual void OnBuffChanged(ZoneUnit unit, ZoneUnit.BuffState buff)
  38. {
  39. throw new NotImplementedException();
  40. }
  41. protected virtual void OnBuffRemoved(ZoneUnit unit, ZoneUnit.BuffState buff)
  42. {
  43. throw new NotImplementedException();
  44. }
  45. protected virtual void OnBuffAdded(ZoneUnit unit, ZoneUnit.BuffState buff)
  46. {
  47. throw new NotImplementedException();
  48. }
  49. protected virtual void OnLaunchSkill(ZoneUnit unit, ZoneUnit.SkillState skill, UnitLaunchSkillEvent evt)
  50. {
  51. throw new NotImplementedException();
  52. }
  53. protected virtual void OnMaxMPChanged(ZoneUnit unit, int oldMaxMP, int newMaxMP)
  54. {
  55. throw new NotImplementedException();
  56. }
  57. protected virtual void OnMaxHPChanged(ZoneUnit unit, int oldMaxHP, int newMaxHP)
  58. {
  59. throw new NotImplementedException();
  60. }
  61. protected virtual void OnMPChanged(ZoneUnit unit, int oldMP, int newMP)
  62. {
  63. throw new NotImplementedException();
  64. }
  65. protected virtual void OnHPChanged(ZoneUnit unit, int oldHP, int newHP)
  66. {
  67. throw new NotImplementedException();
  68. }
  69. protected virtual void OnSkillActionChanged(ZoneUnit unit, ZoneUnit.SkillState skill, byte index)
  70. {
  71. throw new NotImplementedException();
  72. }
  73. protected virtual void OnActionChanged(ZoneUnit unit, UnitActionStatus status, object evt)
  74. {
  75. }
  76. protected virtual void OnLayerObjectEvent(ZoneObject obj, CommonAI.Zone.ObjectEvent e)
  77. {
  78. /*RegistZoneEvent<BattleHintNumberB2C>((data) =>
  79. {
  80. BattleHintNumberB2C evt = data as BattleHintNumberB2C;
  81. ShowHint(evt.Value, evt.State, evt.TargetObjID);
  82. });
  83. RegistZoneEvent<BattleFloatTipsEventB2C>((data) =>
  84. {
  85. BattleFloatTipsEventB2C evt = data as BattleFloatTipsEventB2C;
  86. ShowTipHint(evt.Type);
  87. });
  88. RegistZoneEvent<BubbleTipsEventB2C>((data) =>
  89. {
  90. BubbleTipsEventB2C evt = data as BubbleTipsEventB2C;
  91. AddBubbleChat(evt.Msg, 5);
  92. });*/
  93. }
  94. }