Data.UnitTriggers.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CommonLang.Property;
  5. using CommonLang.Formula;
  6. using CommonLang.IO.Attribute;
  7. using CommonLang.IO;
  8. using CommonAI.Zone.Instance;
  9. using CommonAI.Zone.Attributes;
  10. using CommonLang.Xml;
  11. using CommonAI.Zone.Formula;
  12. namespace CommonAI.Zone.UnitTriggers
  13. {
  14. public enum AttackType : byte
  15. {
  16. NormalAttack,
  17. SpellAttack,
  18. SkillAttack,
  19. BuffAttack,
  20. AllAttack,
  21. }
  22. //-------------------------------------------------------------------------------
  23. public abstract class BaseTriggerEvent : ICloneable, IExternalizable
  24. {
  25. abstract public bool Test(InstanceUnit unit, AttackSource source);
  26. abstract public object Clone();
  27. abstract public void WriteExternal(IOutputStream output);
  28. abstract public void ReadExternal(IInputStream input);
  29. }
  30. //-------------------------------------------------------------------------------
  31. [MessageType(0x4201)]
  32. [DescAttribute("单位血量", "事件-单位被攻击")]
  33. [UnitTriggerEventTypeAttribute(typeof(InstanceUnit.DamageHandler))]
  34. public class OnDamageHpChanged : BaseTriggerEvent
  35. {
  36. [DescAttribute("比较符号", "条件")]
  37. public NumericComparisonOP OP = NumericComparisonOP.LESS_THAN;
  38. [DescAttribute("HP到达的预期值", "条件")]
  39. public int ExpectHP;
  40. public override string ToString()
  41. {
  42. return string.Format("当单位被攻击且血量{0}{1}时", FormulaHelper.ToString(OP), ExpectHP);
  43. }
  44. public override bool Test(InstanceUnit unit, AttackSource source)
  45. {
  46. return FormulaHelper.Compare(unit.CurrentHP, OP, ExpectHP);
  47. }
  48. public override object Clone()
  49. {
  50. OnDamageHpChanged ret = new OnDamageHpChanged();
  51. ret.OP = this.OP;
  52. ret.ExpectHP = this.ExpectHP;
  53. return ret;
  54. }
  55. public override void WriteExternal(IOutputStream output)
  56. {
  57. output.PutS32((int)OP);
  58. output.PutS32(ExpectHP);
  59. }
  60. public override void ReadExternal(IInputStream input)
  61. {
  62. this.OP = (NumericComparisonOP)input.GetS32();
  63. this.ExpectHP = input.GetS32();
  64. }
  65. }
  66. //-------------------------------------------------------------------------------
  67. [MessageType(0x4202)]
  68. [DescAttribute("单位血量百分比", "事件-单位被攻击")]
  69. [UnitTriggerEventTypeAttribute(typeof(InstanceUnit.DamageHandler))]
  70. public class OnDamageHpPctChanged : BaseTriggerEvent
  71. {
  72. [DescAttribute("比较符号", "条件")]
  73. public NumericComparisonOP OP = NumericComparisonOP.LESS_THAN;
  74. [DescAttribute("HP到达的预期值百分比", "条件")]
  75. public float ExpectHP_Pct;
  76. public override string ToString()
  77. {
  78. return string.Format("当单位被攻击且血量{0}{1}%时", FormulaHelper.ToString(OP), ExpectHP_Pct);
  79. }
  80. public override bool Test(InstanceUnit unit, AttackSource source)
  81. {
  82. float unit_hp_pct = 100.0f * unit.CurrentHP / unit.MaxHP;
  83. return FormulaHelper.Compare(unit_hp_pct, OP, ExpectHP_Pct);
  84. }
  85. public override object Clone()
  86. {
  87. OnDamageHpPctChanged ret = new OnDamageHpPctChanged();
  88. ret.OP = this.OP;
  89. ret.ExpectHP_Pct = this.ExpectHP_Pct;
  90. return ret;
  91. }
  92. public override void WriteExternal(IOutputStream output)
  93. {
  94. output.PutS32((int)OP);
  95. output.PutF32(ExpectHP_Pct);
  96. }
  97. public override void ReadExternal(IInputStream input)
  98. {
  99. this.OP = (NumericComparisonOP)input.GetS32();
  100. this.ExpectHP_Pct = input.GetF32();
  101. }
  102. }
  103. //-------------------------------------------------------------------------------
  104. [MessageType(0x4203)]
  105. [DescAttribute("被攻击", "事件-单位被攻击")]
  106. [UnitTriggerEventTypeAttribute(typeof(InstanceUnit.DamageHandler))]
  107. public class OnDamageTrigger : BaseTriggerEvent
  108. {
  109. [DescAttribute("触发百分比", "条件")]
  110. public float Percent = 50.0f;
  111. public override string ToString()
  112. {
  113. return string.Format("当单位被攻击有{0}%概率", Percent);
  114. }
  115. public override bool Test(InstanceUnit unit, AttackSource source)
  116. {
  117. if (source.FromSkill != null || source.FromSpell != null)
  118. {
  119. int rd = unit.RandomN.Next(100);
  120. return rd < Percent;
  121. }
  122. else
  123. {
  124. return false;
  125. }
  126. }
  127. public override object Clone()
  128. {
  129. OnDamageTrigger ret = new OnDamageTrigger();
  130. ret.Percent = this.Percent;
  131. return ret;
  132. }
  133. public override void WriteExternal(IOutputStream output)
  134. {
  135. output.PutF32(Percent);
  136. }
  137. public override void ReadExternal(IInputStream input)
  138. {
  139. this.Percent = input.GetF32();
  140. }
  141. }
  142. //-------------------------------------------------------------------------------
  143. [MessageType(0x4204)]
  144. [DescAttribute("攻击", "事件-单位攻击")]
  145. [UnitTriggerEventTypeAttribute(typeof(InstanceUnit.AttackHandler))]
  146. public class OnAttackTrigger : BaseTriggerEvent
  147. {
  148. [DescAttribute("触发百分比", "条件")]
  149. public float Percent = 50.0f;
  150. [DescAttribute("攻击类型", "条件")]
  151. public AttackType AType = AttackType.AllAttack;
  152. public override string ToString()
  153. {
  154. return string.Format("当单位攻击类型为{0}时有{1}%概率", AType, Percent);
  155. }
  156. public override bool Test(InstanceUnit unit, AttackSource source)
  157. {
  158. bool isTrueAttack = false;
  159. switch (AType)
  160. {
  161. case AttackType.NormalAttack:
  162. if (source.FromSkill != null || source.FromSpell != null)
  163. {
  164. isTrueAttack = true;
  165. }
  166. break;
  167. case AttackType.SkillAttack:
  168. if (source.FromSkill != null)
  169. {
  170. isTrueAttack = true;
  171. }
  172. break;
  173. case AttackType.SpellAttack:
  174. if (source.FromSpell != null)
  175. {
  176. isTrueAttack = true;
  177. }
  178. break;
  179. case AttackType.BuffAttack:
  180. if (source.FromBuff != null)
  181. {
  182. isTrueAttack = true;
  183. }
  184. break;
  185. case AttackType.AllAttack:
  186. isTrueAttack = true;
  187. break;
  188. default:
  189. break;
  190. }
  191. if (isTrueAttack)
  192. {
  193. int rd = unit.RandomN.Next(100);
  194. return rd < Percent;
  195. }
  196. else
  197. {
  198. return isTrueAttack;
  199. }
  200. }
  201. public override object Clone()
  202. {
  203. OnAttackTrigger ret = new OnAttackTrigger();
  204. ret.Percent = this.Percent;
  205. ret.AType = this.AType;
  206. return ret;
  207. }
  208. public override void WriteExternal(IOutputStream output)
  209. {
  210. output.PutS32((int)AType);
  211. output.PutF32(Percent);
  212. }
  213. public override void ReadExternal(IInputStream input)
  214. {
  215. byte atype = (byte)input.GetS32();
  216. this.AType = (AttackType)atype;
  217. this.Percent = input.GetF32();
  218. }
  219. }
  220. }