XmdsVirtual.Event.cs 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. using CommonAI.Zone;
  2. using CommonAI.Zone.Instance;
  3. using CommonAI.Zone.Formula;
  4. using CommonLang;
  5. using System;
  6. using System.Collections;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using XmdsCommon.Plugin;
  11. using XmdsCommonServer.Plugin.XmdsSkillTemplate.Skills;
  12. using CommonAI.Data;
  13. using XmdsCommonSkill.Plugin.CardSkill;
  14. using XmdsCommon.JSGModule.Interface;
  15. using CommonAI.ZoneServer.JSGModule;
  16. namespace XmdsCommonServer.Plugin
  17. {
  18. /// <summary>
  19. /// FileName: XmdsVirtual.cs
  20. /// Author: Alex.Yu
  21. /// Corporation:...
  22. /// Description:注册事件相关.
  23. /// DateTime: 2015/6/2 17:38:21
  24. /// </summary>
  25. partial class XmdsVirtual
  26. {
  27. //OnHitOther//
  28. readonly private List<OnHitHandler> mOnHitOtherLt = new List<OnHitHandler>();
  29. //OnHitDamage//
  30. readonly private List<OnHitHandler> mOnHitDamageLt = new List<OnHitHandler>();
  31. //OnBuffStart//
  32. readonly private List<OnBuffEventHandler> mOnBuffEventLt = new List<OnBuffEventHandler>();
  33. //OnCalDamage//
  34. readonly private List<OnCalDmageHandler> mOnCalDamageLt = new List<OnCalDmageHandler>();
  35. //OnLaunchSkillOver//
  36. readonly private List<OnLaunchSkillOverHandler> mOnLaunchSkillOverLt = new List<OnLaunchSkillOverHandler>();
  37. //OnGetAtkTarget//
  38. readonly private List<OnGetAtkTargetHandler> mOnGetAtkTargetLt = new List<OnGetAtkTargetHandler>();
  39. //OnGetSkillDamageInfo //
  40. readonly private List<OnGetSkillDamageInfo> mOnGetSkillDamageInfoLt = new List<OnGetSkillDamageInfo>();
  41. //IStateSkillEnd //
  42. readonly private List<OnStateSkillEnd> mOnStateSkillEndLt = new List<OnStateSkillEnd>();
  43. //ITryAddBuffEvent//
  44. readonly private List<OnTryAddBuff> mOnTryAddBuffLt = new List<OnTryAddBuff>();
  45. readonly private List<OnRemoveBuff> mOnRemoveBuffLt = new List<OnRemoveBuff>();
  46. //ISendBuffEvent
  47. //readonly private List<OnSendBuffEvent> mOnSendBuffEvent = new List<OnSendBuffEvent>();
  48. readonly private List<OnTrySendSpell> mOnTrySendSpellLt = new List<OnTrySendSpell>();
  49. readonly private List<OnSendSpellOverEvent> mSendSpellOverLt = new List<OnSendSpellOverEvent>();
  50. readonly private List<OnTryLaucnSkill> mOnTryLaunchSkillLt = new List<OnTryLaucnSkill>();
  51. //宠物给予人物的主动技能触发
  52. readonly private List<OnTriggerPetSkill> mOnTriggerPetSkillLt = new List<OnTriggerPetSkill>();
  53. //计算仇恨值.
  54. readonly private List<OnCalThreatValue> mOnCalThreatValueLt = new List<OnCalThreatValue>();
  55. //技能被打断事件监听
  56. readonly private List<OnSkillBlockEvnet> mOnSkillBlockList = new List<OnSkillBlockEvnet>();
  57. //加血事件
  58. readonly private List<OnAddOtherHPEvnet> mAddOtherHPList = new List<OnAddOtherHPEvnet>();
  59. //承担伤害监听
  60. readonly private List<OnShareMasterDmgEvent> mShareMasterDmgList = new List<OnShareMasterDmgEvent>();
  61. //扣定力
  62. readonly private List<OnReduceOtherMpEvnet> mReduceMPList = new List<OnReduceOtherMpEvnet>();
  63. //获得卡牌珠监听
  64. readonly private List<OnTryAddCardBallEvent> mTryAddCardBallList = new List<OnTryAddCardBallEvent>();
  65. //释放卡牌技能监听
  66. readonly private List<OnTriggerCardSkillEvent> mTriggerCardSkillList = new List<OnTriggerCardSkillEvent>();
  67. //击杀其他单位监听
  68. readonly private List<OnKillOtherUnitEvent> mKillOtherList = new List<OnKillOtherUnitEvent>();
  69. private HashMap<int, IHandle> mHandleMap = new HashMap<int, IHandle>();
  70. private int mHandleUUID = 0;
  71. public enum BuffEventType
  72. {
  73. None,
  74. Begin,
  75. End,
  76. Update,
  77. Hit,
  78. }
  79. public abstract class IHandle
  80. {
  81. public readonly GameSkill m_skill;
  82. public readonly bool mListenAll = false;
  83. public IHandle(GameSkill skill, bool listenAll)
  84. {
  85. this.m_skill = skill;
  86. this.mListenAll = listenAll;
  87. }
  88. }
  89. public class OnHitHandler : IHandle
  90. {
  91. public readonly IOnHit m_hit;
  92. public readonly bool ListenAllSkill = false;
  93. public OnHitHandler(IOnHit hit, GameSkill skill, bool listenAll) : base(skill, listenAll)
  94. {
  95. m_hit = hit;
  96. this.ListenAllSkill = listenAll;
  97. }
  98. }
  99. class OnBuffEventHandler : IHandle
  100. {
  101. public readonly IOnBuffEvent m_tg;
  102. public readonly BuffEventType m_type;
  103. public OnBuffEventHandler(IOnBuffEvent tg, BuffEventType type, GameSkill skill) : base(skill, true)
  104. {
  105. m_tg = tg;
  106. m_type = type;
  107. }
  108. }
  109. public class OnCalDmageHandler : IHandle
  110. {
  111. public readonly ICalDamage m_cal;
  112. public readonly int skillDamageID;
  113. public OnCalDmageHandler(ICalDamage tg, GameSkill skill, bool listenAll, int skillDamageID) : base(skill, listenAll)
  114. {
  115. m_cal = tg;
  116. this.skillDamageID = skillDamageID;
  117. }
  118. public override string ToString()
  119. {
  120. return skillDamageID.ToString();
  121. }
  122. }
  123. class OnLaunchSkillOverHandler : IHandle
  124. {
  125. public readonly ILaunchSkillOver m_hand;
  126. public OnLaunchSkillOverHandler(ILaunchSkillOver tg, GameSkill skill, bool listenAll) : base(skill, listenAll)
  127. {
  128. m_hand = tg;
  129. }
  130. }
  131. class OnGetAtkTargetHandler : IHandle
  132. {
  133. public readonly IGetAtkTarget m_hand;
  134. public OnGetAtkTargetHandler(IGetAtkTarget tg, GameSkill skill, bool listenAll) : base(skill, listenAll)
  135. {
  136. m_hand = tg;
  137. }
  138. }
  139. class OnGetSkillDamageInfo : IHandle
  140. {
  141. public readonly IGetSkillDamageInfo m_hand;
  142. public OnGetSkillDamageInfo(IGetSkillDamageInfo tg, GameSkill skill, bool listenAll) : base(skill, listenAll)
  143. {
  144. m_hand = tg;
  145. }
  146. }
  147. class OnStateSkillEnd : IHandle
  148. {
  149. public readonly IStateSkillEnd m_hand;
  150. public OnStateSkillEnd(IStateSkillEnd tg, GameSkill skill, bool listenAll) : base(skill, listenAll)
  151. {
  152. m_hand = tg;
  153. }
  154. }
  155. class OnTryAddBuff : IHandle
  156. {
  157. public readonly ITryAddBuffEvent m_hand;
  158. public OnTryAddBuff(ITryAddBuffEvent tg, GameSkill skill, bool listenAll) : base(skill, listenAll)
  159. {
  160. m_hand = tg;
  161. }
  162. }
  163. class OnRemoveBuff : IHandle
  164. {
  165. public readonly IRemoveBuffEvent m_hand;
  166. public readonly int buffID;
  167. public OnRemoveBuff(IRemoveBuffEvent tg, int buffID, bool listenAll) : base(null, listenAll)
  168. {
  169. m_hand = tg;
  170. this.buffID = buffID;
  171. }
  172. }
  173. //class OnSendBuffEvent : IHandle
  174. // {
  175. // public readonly int listenBuffID;
  176. // public readonly ISendBuffEvent m_hand;
  177. // public OnSendBuffEvent(ISendBuffEvent tg, GameSkill skill, int listenBuffID = 0) : base(skill, false)
  178. // {
  179. // m_hand = tg;
  180. // this.listenBuffID = listenBuffID;
  181. // }
  182. // }
  183. class OnSendSpellOverEvent : IHandle
  184. {
  185. public readonly ISendSpellOverEvent m_hand;
  186. public readonly int mListSpellId;
  187. public OnSendSpellOverEvent(ISendSpellOverEvent tg, int spellId, GameSkill sk, bool listenAll = false) : base(sk, listenAll)
  188. {
  189. m_hand = tg;
  190. this.mListSpellId = spellId;
  191. }
  192. }
  193. class OnTrySendSpell : IHandle
  194. {
  195. public readonly ITrySendSpellEvent m_hand;
  196. public readonly int mListenSpellId;
  197. public OnTrySendSpell(ITrySendSpellEvent tg, GameSkill skill, int listenSpellId, bool listenAll) : base(skill, listenAll)
  198. {
  199. m_hand = tg;
  200. this.mListenSpellId = listenSpellId;
  201. }
  202. }
  203. class OnTryLaucnSkill : IHandle
  204. {
  205. public readonly ITryLaunchSkillEvent m_hand;
  206. public OnTryLaucnSkill(ITryLaunchSkillEvent tg, GameSkill skill, bool listenAll) : base(skill, listenAll)
  207. {
  208. m_hand = tg;
  209. }
  210. }
  211. class OnTriggerPetSkill : IHandle
  212. {
  213. public readonly ITriggerPetSkillEvent m_hand;
  214. public OnTriggerPetSkill(ITriggerPetSkillEvent tg, GameSkill skill, bool listenAll) : base(skill, listenAll)
  215. {
  216. m_hand = tg;
  217. }
  218. }
  219. class OnCalThreatValue : IHandle
  220. {
  221. public readonly ICalThreadValue m_hand;
  222. public OnCalThreatValue(ICalThreadValue tg, GameSkill skill, bool listenAll) : base(skill, listenAll)
  223. {
  224. m_hand = tg;
  225. }
  226. }
  227. class OnSkillBlockEvnet : IHandle
  228. {
  229. public readonly ISkillBlockEvent m_hand;
  230. public OnSkillBlockEvnet(ISkillBlockEvent handler, GameSkill skill, bool listenAll) : base(skill, listenAll)
  231. {
  232. this.m_hand = handler;
  233. }
  234. }
  235. class OnAddOtherHPEvnet : IHandle
  236. {
  237. public readonly IAddOtherHPEvent m_hand;
  238. public OnAddOtherHPEvnet(IAddOtherHPEvent handler, GameSkill skill) : base(skill, true)
  239. {
  240. this.m_hand = handler;
  241. }
  242. }
  243. protected class OnShareMasterDmgEvent : IHandle
  244. {
  245. public readonly IShareMasterDmgEvent m_hand;
  246. public OnShareMasterDmgEvent(IShareMasterDmgEvent handler, GameSkill skill) : base(skill, true)
  247. {
  248. this.m_hand = handler;
  249. }
  250. }
  251. class OnReduceOtherMpEvnet : IHandle
  252. {
  253. public readonly IReduceOtherMpEvent m_hand;
  254. public OnReduceOtherMpEvnet(IReduceOtherMpEvent handler, GameSkill skill) : base(skill, true)
  255. {
  256. this.m_hand = handler;
  257. }
  258. }
  259. class OnTryAddCardBallEvent : IHandle
  260. {
  261. public readonly CreateCardBallSource mType;
  262. public readonly ITryAddCardBallEvent m_hand;
  263. public OnTryAddCardBallEvent(ITryAddCardBallEvent handler, CreateCardBallSource type, bool listenAll = false) : base(null, listenAll)
  264. {
  265. this.m_hand = handler;
  266. this.mType = type;
  267. }
  268. }
  269. class OnTriggerCardSkillEvent : IHandle
  270. {
  271. public readonly CardType mPointCardType;
  272. public readonly ITriggerCardSkillEvent m_hand;
  273. public OnTriggerCardSkillEvent(ITriggerCardSkillEvent handler, GameSkill info, CardType cardType, bool listenAll = false) : base(info, listenAll)
  274. {
  275. this.m_hand = handler;
  276. this.mPointCardType = cardType;
  277. }
  278. }
  279. class OnKillOtherUnitEvent : IHandle
  280. {
  281. public readonly int maType;
  282. public readonly IOnKillOtherUnitEvent m_hand;
  283. public OnKillOtherUnitEvent(IOnKillOtherUnitEvent handler, GameSkill info, int type) : base(info, false)
  284. {
  285. this.m_hand = handler;
  286. this.maType = type;
  287. }
  288. }
  289. #region 事件监听.
  290. public delegate void OnHealEvent(XmdsVirtual attacker, XmdsVirtual hitter, int value, ref AtkResult result);
  291. public delegate void OnCombatStateChangeEvent(XmdsVirtual unit, bool status);
  292. /// <summary>
  293. /// 治愈回调.
  294. /// </summary>
  295. public event OnHealEvent OnHealEventHandle;
  296. /// <summary>
  297. /// 战斗状态变更.
  298. /// </summary>
  299. public event OnCombatStateChangeEvent OnCombatStateChangeHandle
  300. {
  301. add { event_OnCombatStateChangeHandle += value; }
  302. remove { event_OnCombatStateChangeHandle -= value; }
  303. }
  304. protected OnCombatStateChangeEvent event_OnCombatStateChangeHandle;
  305. #endregion
  306. #region 计算伤害时触发.
  307. public int RegistCalDamage(ICalDamage cal, GameSkill sk, bool listenAll, int skillDamageID = 0)
  308. {
  309. OnCalDmageHandler handle = new OnCalDmageHandler(cal, sk, listenAll, skillDamageID);
  310. int ret = HandleUUIDCreate();
  311. mOnCalDamageLt.Add(handle);
  312. mHandleMap.Add(ret, handle);
  313. return ret;
  314. }
  315. public bool UnRegistCalDamage(int handleUUID)
  316. {
  317. bool ret = false;
  318. IHandle handle = null;
  319. if (mHandleMap.TryGetValue(handleUUID, out handle))
  320. {
  321. if (handle != null && handle is OnCalDmageHandler)
  322. {
  323. ret = mOnCalDamageLt.Remove(handle as OnCalDmageHandler);
  324. mHandleMap.Remove(handleUUID);
  325. }
  326. }
  327. return ret;
  328. }
  329. #endregion
  330. #region 单位打到别人时开发.
  331. /// <summary>
  332. /// 单位打到别人时触发
  333. /// </summary>
  334. /// <param name="hit"></param>
  335. /// <param name="sk"></param>
  336. public int RegistOnHitOther(IOnHit hit, GameSkill sk, bool listenAll = false)
  337. {
  338. OnHitHandler handle = new OnHitHandler(hit, sk, listenAll);
  339. int ret = HandleUUIDCreate();
  340. mOnHitOtherLt.Add(handle);
  341. mHandleMap.Add(ret, handle);
  342. return ret;
  343. }
  344. public bool UnRegistOnHitOther(int handleUUID)
  345. {
  346. bool ret = false;
  347. IHandle handle = null;
  348. if (mHandleMap.TryGetValue(handleUUID, out handle))
  349. {
  350. if (handle != null && handle is OnHitHandler)
  351. {
  352. ret = mOnHitOtherLt.Remove(handle as OnHitHandler);
  353. mHandleMap.Remove(handleUUID);
  354. }
  355. }
  356. return ret;
  357. }
  358. #endregion
  359. #region 单位受到攻击时触发.
  360. /// <summary>
  361. /// 单位收到攻击时触发
  362. /// </summary>
  363. /// <param name="hit"></param>
  364. /// <param name="sk"></param>
  365. public int RegistOnHitDamage(IOnHit hit, GameSkill sk, bool listenAll = false)
  366. {
  367. OnHitHandler handle = new OnHitHandler(hit, sk, listenAll);
  368. mOnHitDamageLt.Add(handle);
  369. int ret = HandleUUIDCreate();
  370. mHandleMap.Add(ret, handle);
  371. return ret;
  372. }
  373. public bool UnRegistOnHitDamage(int handleUUID)
  374. {
  375. bool ret = false;
  376. IHandle handle = null;
  377. if (mHandleMap.TryGetValue(handleUUID, out handle))
  378. {
  379. if (handle != null && handle is OnHitHandler)
  380. {
  381. ret = mOnHitDamageLt.Remove(handle as OnHitHandler);
  382. mHandleMap.Remove(handleUUID);
  383. }
  384. }
  385. return ret;
  386. }
  387. #endregion
  388. #region BUFF触发.
  389. /// <summary>
  390. /// 注册监听BUFF相关事件.
  391. /// </summary>
  392. /// <param name="tg"></param>
  393. /// <param name="type"></param>
  394. /// <param name="sk"></param>
  395. /// <returns></returns>
  396. public int RegistBuffEvent(IOnBuffEvent tg, BuffEventType type, GameSkill sk)
  397. {
  398. OnBuffEventHandler handle = new OnBuffEventHandler(tg, type, sk);
  399. mOnBuffEventLt.Add(handle);
  400. int ret = HandleUUIDCreate();
  401. mHandleMap.Add(ret, handle);
  402. return ret;
  403. }
  404. public bool UnRegistBuffEvent(int handleUUID)
  405. {
  406. bool ret = false;
  407. IHandle handle = null;
  408. if (mHandleMap.TryGetValue(handleUUID, out handle))
  409. {
  410. if (handle != null && handle is OnBuffEventHandler)
  411. {
  412. ret = mOnBuffEventLt.Remove(handle as OnBuffEventHandler);
  413. mHandleMap.Remove(handleUUID);
  414. }
  415. }
  416. return ret;
  417. }
  418. #endregion
  419. #region 增加BUFF.
  420. /// <summary>
  421. /// 注册是否能添加BUFF判断事件.
  422. /// </summary>
  423. /// <returns></returns>
  424. public int RegistTryAddBuffEvent(ITryAddBuffEvent tg, GameSkill sk, bool listenAll = false)
  425. {
  426. OnTryAddBuff handle = new OnTryAddBuff(tg, sk, listenAll);
  427. mOnTryAddBuffLt.Add(handle);
  428. int ret = HandleUUIDCreate();
  429. mHandleMap.Add(ret, handle);
  430. return ret;
  431. }
  432. /** 注册给其他玩家添加buff时间 */
  433. //public int RegistSendBuffEvent(ISendBuffEvent tg, GameSkill sk, int listenBuffID = 0)
  434. //{
  435. // OnSendBuffEvent handle = new OnSendBuffEvent(tg, sk, listenBuffID);
  436. // mOnSendBuffEvent.Add(handle);
  437. // int ret = HandleUUIDCreate();
  438. // mHandleMap.Add(ret, handle);
  439. // return ret;
  440. //}
  441. /** 注册给其他玩家添加buff时间 */
  442. public int RegistRemoveBuffEvent(IRemoveBuffEvent tg, int buffID, bool listenAll = false)
  443. {
  444. OnRemoveBuff handle = new OnRemoveBuff(tg, buffID, listenAll);
  445. mOnRemoveBuffLt.Add(handle);
  446. int ret = HandleUUIDCreate();
  447. mHandleMap.Add(ret, handle);
  448. return ret;
  449. }
  450. /// <summary>
  451. /// 取消注册添加BUFF判断.
  452. /// </summary>
  453. /// <returns></returns>
  454. public bool UnRegistTryAddBuffEvent(int handleUUID)
  455. {
  456. bool ret = false;
  457. IHandle handle = null;
  458. if (mHandleMap.TryGetValue(handleUUID, out handle))
  459. {
  460. if (handle != null && handle is OnTryAddBuff)
  461. {
  462. ret = mOnTryAddBuffLt.Remove(handle as OnTryAddBuff);
  463. mHandleMap.Remove(handleUUID);
  464. }
  465. }
  466. return ret;
  467. }
  468. /// <summary>
  469. /// 取消发送BUFF监听.
  470. /// </summary>
  471. /// <returns></returns>
  472. //public bool UnRegistSendBuffEvent(int handleUUID)
  473. //{
  474. // bool ret = false;
  475. // IHandle handle = null;
  476. // if (mHandleMap.TryGetValue(handleUUID, out handle))
  477. // {
  478. // if (handle != null && handle is OnSendBuffEvent)
  479. // {
  480. // ret = mOnSendBuffEvent.Remove(handle as OnSendBuffEvent);
  481. // mHandleMap.Remove(handleUUID);
  482. // }
  483. // }
  484. // return ret;
  485. //}
  486. /// <summary>
  487. /// 取消注册添加BUFF判断.
  488. /// </summary>
  489. /// <returns></returns>
  490. public bool UnRegistRemoveBuffEvent(int handleUUID)
  491. {
  492. bool ret = false;
  493. IHandle handle = null;
  494. if (mHandleMap.TryGetValue(handleUUID, out handle))
  495. {
  496. if (handle != null && handle is OnRemoveBuff)
  497. {
  498. ret = mOnRemoveBuffLt.Remove(handle as OnRemoveBuff);
  499. mHandleMap.Remove(handleUUID);
  500. }
  501. }
  502. return ret;
  503. }
  504. #endregion
  505. #region 注册监听spell重定向.
  506. public int RegistTrySendSpellEvent(ITrySendSpellEvent tg, GameSkill sk, int listenSpellId = 0, bool listenAll = false)
  507. {
  508. OnTrySendSpell handle = new OnTrySendSpell(tg, sk, listenSpellId, listenAll);
  509. mOnTrySendSpellLt.Add(handle);
  510. int ret = HandleUUIDCreate();
  511. mHandleMap.Add(ret, handle);
  512. return ret;
  513. }
  514. public bool UnRegistTrySendSpellEvent(int handleUUID)
  515. {
  516. bool ret = false;
  517. IHandle handle = null;
  518. if (mHandleMap.TryGetValue(handleUUID, out handle))
  519. {
  520. if (handle != null && handle is OnTrySendSpell)
  521. {
  522. ret = mOnTrySendSpellLt.Remove(handle as OnTrySendSpell);
  523. mHandleMap.Remove(handleUUID);
  524. }
  525. }
  526. return ret;
  527. }
  528. public int RegistSendSpellOverEvent(ISendSpellOverEvent tg, int spellId, GameSkill sk, bool listAll = false)
  529. {
  530. OnSendSpellOverEvent handle = new OnSendSpellOverEvent(tg, spellId, sk, listAll);
  531. mSendSpellOverLt.Add(handle);
  532. int ret = HandleUUIDCreate();
  533. mHandleMap.Add(ret, handle);
  534. return ret;
  535. }
  536. public bool UnRegistSendSpellOverEvent(int handleUUID)
  537. {
  538. bool ret = false;
  539. IHandle handle = null;
  540. if (mHandleMap.TryGetValue(handleUUID, out handle))
  541. {
  542. if (handle != null && handle is OnSendSpellOverEvent)
  543. {
  544. ret = mSendSpellOverLt.Remove(handle as OnSendSpellOverEvent);
  545. mHandleMap.Remove(handleUUID);
  546. }
  547. }
  548. return ret;
  549. }
  550. #endregion
  551. #region 监听技能施放.
  552. public int RegistTryLaunchSkillEvent(ITryLaunchSkillEvent tg, GameSkill sk, bool listenAllSkill = false)
  553. {
  554. OnTryLaucnSkill handle = new OnTryLaucnSkill(tg, sk, listenAllSkill);
  555. mOnTryLaunchSkillLt.Add(handle);
  556. int ret = HandleUUIDCreate();
  557. mHandleMap.Add(ret, handle);
  558. return ret;
  559. }
  560. public bool UnRegistTryLaunchSkillEvent(int handleUUID)
  561. {
  562. bool ret = false;
  563. IHandle handle = null;
  564. if (mHandleMap.TryGetValue(handleUUID, out handle))
  565. {
  566. if (handle != null && handle is OnTryLaucnSkill)
  567. {
  568. ret = mOnTryLaunchSkillLt.Remove(handle as OnTryLaucnSkill);
  569. mHandleMap.Remove(handleUUID);
  570. }
  571. }
  572. return ret;
  573. }
  574. //ITriggerPetSkillEvent返回true,结束下层传递
  575. public int RegistTriggerPetSkillEvent(ITriggerPetSkillEvent tg, GameSkill sk, bool listenAllSkill = false)
  576. {
  577. OnTriggerPetSkill handle = new OnTriggerPetSkill(tg, sk, listenAllSkill);
  578. mOnTriggerPetSkillLt.Add(handle);
  579. int ret = HandleUUIDCreate();
  580. mHandleMap.Add(ret, handle);
  581. return ret;
  582. }
  583. public bool UnRegistTriggerPetSkillEvent(int handleUUID)
  584. {
  585. bool ret = false;
  586. IHandle handle = null;
  587. if (mHandleMap.TryGetValue(handleUUID, out handle))
  588. {
  589. if (handle != null && handle is OnTriggerPetSkill)
  590. {
  591. ret = mOnTriggerPetSkillLt.Remove(handle as OnTriggerPetSkill);
  592. mHandleMap.Remove(handleUUID);
  593. }
  594. }
  595. return ret;
  596. }
  597. #endregion
  598. #region 释放完技能后.
  599. /// <summary>
  600. /// 注册技能释放完毕的监听.
  601. /// </summary>
  602. /// <param name="call"></param>
  603. /// <param name="sk"></param>
  604. /// <returns></returns>
  605. public int RegistLaunchSkillOver(ILaunchSkillOver call, GameSkill sk, bool listenAllSkill = false)
  606. {
  607. OnLaunchSkillOverHandler handle = new OnLaunchSkillOverHandler(call, sk, listenAllSkill);
  608. int ret = HandleUUIDCreate();
  609. mOnLaunchSkillOverLt.Add(handle);
  610. mHandleMap.Add(ret, handle);
  611. return ret;
  612. }
  613. /// <summary>
  614. /// 反注册技能释放完毕的监听.
  615. /// </summary>
  616. /// <param name="call"></param>
  617. /// <param name="sk"></param>
  618. /// <returns></returns>
  619. public bool UnRegistLaunchSkillOver(int handleUUID)
  620. {
  621. bool ret = false;
  622. IHandle handle = null;
  623. if (mHandleMap.TryGetValue(handleUUID, out handle))
  624. {
  625. if (handle != null && handle is OnLaunchSkillOverHandler)
  626. {
  627. ret = mOnLaunchSkillOverLt.Remove(handle as OnLaunchSkillOverHandler);
  628. mHandleMap.Remove(handleUUID);
  629. }
  630. }
  631. return ret;
  632. }
  633. #endregion
  634. #region 获得攻击目标.
  635. /// <summary>
  636. /// 注册获取攻击目标监听.
  637. /// </summary>
  638. /// <param name="call"></param>
  639. /// <param name="sk"></param>
  640. /// <returns></returns>
  641. public int RegistGetAtkTarget(IGetAtkTarget call, GameSkill sk, bool listenAll)
  642. {
  643. OnGetAtkTargetHandler handle = new OnGetAtkTargetHandler(call, sk, listenAll);
  644. int ret = HandleUUIDCreate();
  645. mOnGetAtkTargetLt.Add(handle);
  646. mHandleMap.Add(ret, handle);
  647. return ret;
  648. }
  649. /// <summary>
  650. /// 反注册获取攻击目标监听.
  651. /// </summary>
  652. /// <param name="call"></param>
  653. /// <param name="sk"></param>
  654. /// <returns></returns>
  655. public bool UnRegistGetAtkTarget(int handleUUID)
  656. {
  657. bool ret = false;
  658. IHandle handle = null;
  659. if (mHandleMap.TryGetValue(handleUUID, out handle))
  660. {
  661. if (handle != null && handle is OnGetAtkTargetHandler)
  662. {
  663. ret = mOnGetAtkTargetLt.Remove(handle as OnGetAtkTargetHandler);
  664. mHandleMap.Remove(handleUUID);
  665. }
  666. }
  667. return ret;
  668. }
  669. #endregion
  670. #region 注册获得技能伤害.
  671. public int RegistGetSkillDamageInfo(IGetSkillDamageInfo call, GameSkill sk, bool listenAll)
  672. {
  673. OnGetSkillDamageInfo handle = new OnGetSkillDamageInfo(call, sk, listenAll);
  674. int ret = HandleUUIDCreate();
  675. mOnGetSkillDamageInfoLt.Add(handle);
  676. mHandleMap.Add(ret, handle);
  677. return ret;
  678. }
  679. public bool UnRegistGetSkillDamageInfo(int handleUUID)
  680. {
  681. bool ret = false;
  682. IHandle handle = null;
  683. if (mHandleMap.TryGetValue(handleUUID, out handle))
  684. {
  685. if (handle != null && handle is OnGetSkillDamageInfo)
  686. {
  687. ret = mOnGetSkillDamageInfoLt.Remove(handle as OnGetSkillDamageInfo);
  688. mHandleMap.Remove(handleUUID);
  689. }
  690. }
  691. return ret;
  692. }
  693. #endregion
  694. #region 技能结束监听.
  695. /// <summary>
  696. /// 注册技能结束监听.
  697. /// </summary>
  698. /// <param name="call"></param>
  699. /// <param name="sk"></param>
  700. /// <returns></returns>
  701. public int RegistStateSkillEndEvent(IStateSkillEnd call, GameSkill sk, bool listenAllSkill)
  702. {
  703. OnStateSkillEnd handle = new OnStateSkillEnd(call, sk, listenAllSkill);
  704. int ret = HandleUUIDCreate();
  705. mOnStateSkillEndLt.Add(handle);
  706. mHandleMap.Add(ret, handle);
  707. return ret;
  708. }
  709. /// <summary>
  710. /// 取消技能结束监听.
  711. /// </summary>
  712. /// <param name="handleUUID"></param>
  713. /// <returns></returns>
  714. public bool UnRegistStateSkillEndEvent(int handleUUID)
  715. {
  716. bool ret = false;
  717. IHandle handle = null;
  718. if (mHandleMap.TryGetValue(handleUUID, out handle))
  719. {
  720. if (handle != null && handle is OnStateSkillEnd)
  721. {
  722. ret = mOnStateSkillEndLt.Remove(handle as OnStateSkillEnd);
  723. mHandleMap.Remove(handleUUID);
  724. }
  725. }
  726. return ret;
  727. }
  728. #endregion
  729. #region 计算仇恨值监听.
  730. public int RegistCalThreatValue(ICalThreadValue call, GameSkill gs, bool listenAllSkill)
  731. {
  732. OnCalThreatValue handle = new OnCalThreatValue(call, gs, listenAllSkill);
  733. int ret = HandleUUIDCreate();
  734. mOnCalThreatValueLt.Add(handle);
  735. mHandleMap.Add(ret, handle);
  736. return ret;
  737. }
  738. public bool UnRegistCalThreatValue(int handleUUID)
  739. {
  740. bool ret = false;
  741. IHandle handle = null;
  742. if (mHandleMap.TryGetValue(handleUUID, out handle))
  743. {
  744. if (handle != null && handle is OnCalThreatValue)
  745. {
  746. ret = mOnCalThreatValueLt.Remove(handle as OnCalThreatValue);
  747. mHandleMap.Remove(handleUUID);
  748. }
  749. }
  750. return ret;
  751. }
  752. #endregion
  753. #region 技能被打断监听.
  754. public int RegistSkillBlockEvent(ISkillBlockEvent call, GameSkill gs)
  755. {
  756. OnSkillBlockEvnet handle = new OnSkillBlockEvnet(call, gs, true);
  757. int ret = HandleUUIDCreate();
  758. mOnSkillBlockList.Add(handle);
  759. mHandleMap.Add(ret, handle);
  760. return ret;
  761. }
  762. public bool UnRegistSkillBlockEvent(int handleUUID)
  763. {
  764. bool ret = false;
  765. IHandle handle = null;
  766. if (mHandleMap.TryGetValue(handleUUID, out handle))
  767. {
  768. if (handle != null && handle is OnSkillBlockEvnet)
  769. {
  770. ret = mOnSkillBlockList.Remove(handle as OnSkillBlockEvnet);
  771. mHandleMap.Remove(handleUUID);
  772. }
  773. }
  774. return ret;
  775. }
  776. public int RegistAddOtherHPEvent(IAddOtherHPEvent call, GameSkill gs)
  777. {
  778. OnAddOtherHPEvnet handle = new OnAddOtherHPEvnet(call, gs);
  779. int ret = HandleUUIDCreate();
  780. mAddOtherHPList.Add(handle);
  781. mHandleMap.Add(ret, handle);
  782. return ret;
  783. }
  784. public bool UnRegistAddOtherHPEvent(int handleUUID)
  785. {
  786. bool ret = false;
  787. IHandle handle = null;
  788. if (mHandleMap.TryGetValue(handleUUID, out handle))
  789. {
  790. if (handle != null && handle is OnAddOtherHPEvnet)
  791. {
  792. ret = mAddOtherHPList.Remove(handle as OnAddOtherHPEvnet);
  793. mHandleMap.Remove(handleUUID);
  794. }
  795. }
  796. return ret;
  797. }
  798. public int RegistShareMasterDmgEvent(IShareMasterDmgEvent call, GameSkill gs)
  799. {
  800. OnShareMasterDmgEvent handle = new OnShareMasterDmgEvent(call, gs);
  801. int ret = HandleUUIDCreate();
  802. mShareMasterDmgList.Add(handle);
  803. mHandleMap.Add(ret, handle);
  804. return ret;
  805. }
  806. public bool UnRegistShareMasterDmgEvent(int handleUUID)
  807. {
  808. bool ret = false;
  809. IHandle handle = null;
  810. if (mHandleMap.TryGetValue(handleUUID, out handle))
  811. {
  812. if (handle != null && handle is OnShareMasterDmgEvent)
  813. {
  814. ret = mShareMasterDmgList.Remove(handle as OnShareMasterDmgEvent);
  815. mHandleMap.Remove(handleUUID);
  816. }
  817. }
  818. return ret;
  819. }
  820. public int RegistReduceMPEvent(IReduceOtherMpEvent call, GameSkill gs)
  821. {
  822. OnReduceOtherMpEvnet handle = new OnReduceOtherMpEvnet(call, gs);
  823. int ret = HandleUUIDCreate();
  824. mReduceMPList.Add(handle);
  825. mHandleMap.Add(ret, handle);
  826. return ret;
  827. }
  828. public bool UnRegistReduceOtherMpEvent(int handleUUID)
  829. {
  830. bool ret = false;
  831. IHandle handle = null;
  832. if (mHandleMap.TryGetValue(handleUUID, out handle))
  833. {
  834. if (handle != null && handle is OnReduceOtherMpEvnet)
  835. {
  836. ret = mReduceMPList.Remove(handle as OnReduceOtherMpEvnet);
  837. mHandleMap.Remove(handleUUID);
  838. }
  839. }
  840. return ret;
  841. }
  842. public int RegistTryAddCardBallEvent(ITryAddCardBallEvent call, CreateCardBallSource type, bool listenAll = false)
  843. {
  844. OnTryAddCardBallEvent handle = new OnTryAddCardBallEvent(call, type, listenAll);
  845. int ret = HandleUUIDCreate();
  846. mTryAddCardBallList.Add(handle);
  847. mHandleMap.Add(ret, handle);
  848. return ret;
  849. }
  850. public bool UnRegistTryAddCardBallEvent(int handleUUID)
  851. {
  852. bool ret = false;
  853. IHandle handle = null;
  854. if (mHandleMap.TryGetValue(handleUUID, out handle))
  855. {
  856. if (handle != null && handle is OnTryAddCardBallEvent)
  857. {
  858. ret = mTryAddCardBallList.Remove(handle as OnTryAddCardBallEvent);
  859. mHandleMap.Remove(handleUUID);
  860. }
  861. }
  862. return ret;
  863. }
  864. public int RegistTriggerCardSkillEvent(ITriggerCardSkillEvent call, GameSkill info, CardType cardType, bool listenAll = false)
  865. {
  866. OnTriggerCardSkillEvent handle = new OnTriggerCardSkillEvent(call, info, cardType, listenAll);
  867. int ret = HandleUUIDCreate();
  868. mTriggerCardSkillList.Add(handle);
  869. mHandleMap.Add(ret, handle);
  870. return ret;
  871. }
  872. public bool UnRegistTriggerCardSkillEvent(int handleUUID)
  873. {
  874. bool ret = false;
  875. IHandle handle = null;
  876. if (mHandleMap.TryGetValue(handleUUID, out handle))
  877. {
  878. if (handle != null && handle is OnTriggerCardSkillEvent)
  879. {
  880. ret = mTriggerCardSkillList.Remove(handle as OnTriggerCardSkillEvent);
  881. mHandleMap.Remove(handleUUID);
  882. }
  883. }
  884. return ret;
  885. }
  886. public int RegistKillOtherEvent(IOnKillOtherUnitEvent call, GameSkill info, int monsterType)
  887. {
  888. OnKillOtherUnitEvent handle = new OnKillOtherUnitEvent(call, info, monsterType);
  889. int ret = HandleUUIDCreate();
  890. mKillOtherList.Add(handle);
  891. mHandleMap.Add(ret, handle);
  892. return ret;
  893. }
  894. public bool UnRegistKillOtherEvent(int handleUUID)
  895. {
  896. bool ret = false;
  897. IHandle handle = null;
  898. if (mHandleMap.TryGetValue(handleUUID, out handle))
  899. {
  900. if (handle != null && handle is OnKillOtherUnitEvent)
  901. {
  902. ret = mKillOtherList.Remove(handle as OnKillOtherUnitEvent);
  903. mHandleMap.Remove(handleUUID);
  904. }
  905. }
  906. return ret;
  907. }
  908. #endregion
  909. #region 事件派发.
  910. /// <summary>
  911. /// 分配handleID.
  912. /// </summary>
  913. /// <returns></returns>
  914. private int HandleUUIDCreate()
  915. {
  916. return ++mHandleUUID;
  917. }
  918. /// <summary>
  919. ///攻击者监听:打到其他单位.
  920. /// </summary>
  921. /// <param name="damage"></param>
  922. /// <param name="target"></param>
  923. /// <param name="source"></param>
  924. /// <returns></returns>
  925. private float DispatchHitOtherEvent(float damage, XmdsVirtual target, AttackSource source,
  926. ref XmdsVirtual.AtkResult result, DamageType damageType)
  927. {
  928. if (this.mUnit.IsActive)
  929. {
  930. float sourceDmg = damage;
  931. bool isEndDispatch = false;
  932. for (int i = mOnHitOtherLt.Count - 1; i >= 0; --i)
  933. {
  934. OnHitHandler hitend = mOnHitOtherLt[i];
  935. //伤害单一注册判断
  936. if (!hitend.ListenAllSkill && hitend.m_skill != null && source.Attack != null)
  937. {
  938. XmdsAttackProperties atkProp = source.Attack.Properties as XmdsAttackProperties;
  939. if (atkProp.SkillTemplateID != hitend.m_skill.SkillID)
  940. {
  941. continue;
  942. }
  943. }
  944. damage = hitend.m_hit.Invoke(damage, target, this, source, ref result, damageType, hitend.m_skill, ref isEndDispatch);
  945. //#if JSG_DMG_LOG
  946. // this.CheckAndPrintDmgWarn("DispatchHitOtherEvent", this, target, sourceDmg, damage, source);
  947. //#endif
  948. if (isEndDispatch)
  949. {
  950. break;
  951. }
  952. }
  953. }
  954. return damage;
  955. }
  956. // private void CheckAndPrintDmgWarn(string flag, XmdsVirtual attacker, XmdsVirtual hitter, float sourceDmg, float finalDmg, AttackSource source)
  957. // {
  958. // if(source == null || source.Attack == null || source.Attack.Properties.GetAttackID() == XmdsBattleSkill.DefaultSkillScriptID)
  959. // {
  960. // return;
  961. // }
  962. // int checkValue = (source != null && source.Attack != null && source.Attack.Properties.GetAttackID() / 100 == 1104)
  963. // ? attacker.mUnit.CurrentHP : attacker.MirrorProp.GetFinalAttack(hitter == null ? false : hitter.mUnit.IsMonster);
  964. // if (finalDmg / sourceDmg > 5.0f || finalDmg / checkValue > 60)
  965. // {
  966. // log.Warn(flag + ", dmg: " + (int)finalDmg + ", src: " + (int)sourceDmg + ", attackerAtk: " + attacker.MirrorProp.MaxAttack + ", "
  967. // + attacker.MirrorProp.MaxMonsterAttack + ", atkHP:" + mUnit.CurrentHP
  968. // + ", AttackInfo:[" + attacker.mUnit.Info.ID + ", UUID: " + attacker.mUnit.PlayerUUID
  969. // + "], hitterInfo:[" + hitter.mUnit.Info.ID + ", UUID: " + hitter.mUnit.PlayerUUID + ", " + JSGModule.GetAttackSourceDes(source));
  970. // }
  971. // }
  972. /// <summary>
  973. ///受击者监听:受到伤害.
  974. /// </summary>
  975. /// <param name="damage"></param>
  976. /// <param name="attacker"></param>
  977. /// <param name="source"></param>
  978. /// skill - 造成伤害的技能信息,可能为空
  979. /// <returns></returns>
  980. private float DispatchHitDamageEvent(float damage, XmdsVirtual attacker, AttackSource source,
  981. ref XmdsVirtual.AtkResult result, DamageType damageType)
  982. {
  983. if (this.mUnit.IsActive && mOnHitDamageLt.Count > 0)
  984. {
  985. float sourceDmg = damage;
  986. bool isEndDispatch = false;
  987. for (int i = mOnHitDamageLt.Count - 1; i >= 0; --i)
  988. {
  989. if(i < 0 || i >= mOnHitDamageLt.Count)
  990. {
  991. int buffID = source.FromBuff == null ? 0 : source.FromBuff.ID;
  992. int spellID = source.FromSpell == null ? 0 : source.FromSpell.ID;
  993. log.Warn("DispatchHitDamageEvent监听改变: " + i + ", " + mOnHitDamageLt.Count + ", BuffID: " + buffID + ", spellID: " + spellID + ", "
  994. + this.mUnit.PlayerUUID);
  995. break;
  996. }
  997. OnHitHandler hitend = mOnHitDamageLt[i];
  998. if(!hitend.ListenAllSkill && hitend.m_skill != null && source.Attack != null)
  999. {
  1000. XmdsAttackProperties atkProp = source.Attack.Properties as XmdsAttackProperties;
  1001. if (atkProp.SkillTemplateID != hitend.m_skill.SkillID)
  1002. {
  1003. continue;
  1004. }
  1005. }
  1006. damage = hitend.m_hit.Invoke(damage, this, attacker, source, ref result, damageType, hitend.m_skill, ref isEndDispatch);
  1007. //#if JSG_DMG_LOG
  1008. // this.CheckAndPrintDmgWarn("DispatchHitDamageEvent", attacker, this, sourceDmg, damage, source);
  1009. //#endif
  1010. if (isEndDispatch)
  1011. {
  1012. break;
  1013. }
  1014. }
  1015. }
  1016. return CUtils.CastInt(damage);//四舍五入
  1017. }
  1018. /// <summary>
  1019. /// 派发技能成功释放事件.
  1020. /// </summary>
  1021. /// <param name="costEnergy"></param>
  1022. /// <param name="attacker"></param>
  1023. /// <param name="state"></param>
  1024. /// <returns></returns>
  1025. private int DispatchLaunchsSkillOverEvent(XmdsVirtual launcher, CommonAI.Zone.Instance.InstanceUnit.SkillState state)
  1026. {
  1027. if (launcher.mUnit.IsActive)
  1028. {
  1029. for (int i = 0; i < mOnLaunchSkillOverLt.Count; i++)
  1030. {
  1031. OnLaunchSkillOverHandler hitend = mOnLaunchSkillOverLt[i];
  1032. if (hitend.mListenAll || hitend.m_skill == null)
  1033. {
  1034. hitend.m_hand.Invoke(hitend.m_skill, launcher, state);
  1035. }
  1036. else if (hitend.m_skill.SkillID == state.ID)
  1037. {
  1038. hitend.m_hand.Invoke(hitend.m_skill, launcher, state);
  1039. }
  1040. }
  1041. }
  1042. return 0;
  1043. }
  1044. /// <summary>
  1045. /// 派发技能造成伤害事件.
  1046. /// </summary>
  1047. /// <param name="hitter"></param>
  1048. /// <param name="source"></param>
  1049. /// <param name="result"></param>
  1050. /// <returns></returns>
  1051. private int DispatchCalDamageEvent(XmdsVirtual hitter, AttackSource source, ref AtkResult result)
  1052. {
  1053. //特殊情况单位是技能触发伤害,则单位必须活着,如果是spell或BUFF无视单位自身状态.
  1054. XmdsAttackProperties prop = (source.Attack.Properties as XmdsAttackProperties);
  1055. if (this.mUnit.IsActive == false && prop.SkillTemplateID != XmdsCommonServer.Plugin.XmdsSkillTemplate.Skills.XmdsBattleSkill.DefaultSkillScriptID)
  1056. {
  1057. //单位已死亡,技能造成的伤害不算.
  1058. return 0;
  1059. }
  1060. int damage = 0;
  1061. if(prop.SkillTemplateID == XmdsCommonServer.Plugin.XmdsSkillTemplate.Skills.XmdsBattleSkill.DefaultSkillScriptID)
  1062. {
  1063. XmdsBattleSkill.mDefDamgageHandler.m_cal.Invoke(this, hitter, source, XmdsBattleSkill.mDefDamgageHandler.m_skill, ref result, ref damage);
  1064. FormatLog(CommonLang.Log.LoggerLevel.INFO, "--【{0}】对目标【{1}】使用技能【{2}】效果 = 【{3}】", this.mInfo.Name, hitter.mInfo.Name, prop.SkillTemplateID, damage);
  1065. }
  1066. else if (prop.SkillTemplateID > 0)
  1067. {
  1068. bool isFind = false;
  1069. for (int i = mOnCalDamageLt.Count - 1; i >= 0; --i)
  1070. {
  1071. OnCalDmageHandler hand = mOnCalDamageLt[i];
  1072. //技能ID匹配时才执行回调.
  1073. if (hand.skillDamageID == prop.SkillTemplateID || hand.m_skill.SkillID == prop.SkillTemplateID)
  1074. {
  1075. isFind = true;
  1076. bool isEnd = hand.m_cal.Invoke(this, hitter, source, hand.m_skill, ref result, ref damage);
  1077. FormatLog(CommonLang.Log.LoggerLevel.INFO, "【{0}】对目标【{1}】使用技能【{2}】效果 = 【{3}】", this.mInfo.Name, hitter.mInfo.Name, prop.SkillTemplateID, damage);
  1078. if (isEnd) { break; }
  1079. }
  1080. }
  1081. if(!isFind)
  1082. {
  1083. log.Error("配置监听事件异常--场景:" + this.mUnit.Parent.GetSceneID() +", 伤害ID:" + prop.SkillTemplateID + ", 异常信息:" +
  1084. (source.FromBuff == null ? "not buff" : "buff:" + source.FromBuff.ID) +(source.FromSkill == null ? ", not skill" : ", skill:" + source.FromSkill.ID)
  1085. + (source.FromSpell == null ? ", not spell" : ", spell:" + source.FromSpell.ID) + ", 单位ID:" + this.mUnit.Info.ID + ", 技能监听:"
  1086. + mOnCalDamageLt.Count + ", 血量:" + this.mUnit.CurrentHP + ", 状态:" + this.mUnit.IsActive + ", " + this.GetDamageListens());
  1087. }
  1088. }
  1089. else if(prop.SkillTemplateID == 0)
  1090. {
  1091. log.Error("配置监听事件为0, 场景:" + this.mUnit.Parent.GetSceneID() + ", " + prop.SkillTemplateID + ", " + (source.FromBuff == null ? "not buff" : "buff:" + source.FromBuff.ID) +
  1092. (source.FromSkill == null ? ", not skill" : ", skill:" + source.FromSkill.ID) + (source.FromSpell == null ? ", not spell" : ", spell:" + source.FromSpell.ID));
  1093. }
  1094. return damage;
  1095. }
  1096. private string GetDamageListens()
  1097. {
  1098. string dmgList = "";
  1099. for (int i = mOnCalDamageLt.Count - 1; i >= 0; --i)
  1100. {
  1101. dmgList = dmgList + mOnCalDamageLt[i].skillDamageID + "#";
  1102. }
  1103. return dmgList;
  1104. }
  1105. /// <summary>
  1106. /// 分发BUFF相关事件.
  1107. /// </summary>
  1108. /// <param name="buff"></param>
  1109. /// <param name="type"></param>
  1110. /// <param name="result"></param>
  1111. /// <returns></returns>
  1112. private bool DispatchBuffEvent(InstanceUnit.BuffState buff, BuffEventType type, string result)
  1113. {
  1114. for (int i = mOnBuffEventLt.Count - 1; i >= 0; --i)
  1115. {
  1116. OnBuffEventHandler tg = mOnBuffEventLt[i];
  1117. if (tg.m_type == type)
  1118. {
  1119. tg.m_tg.Invoke(this, buff, result, tg.m_skill);
  1120. }
  1121. }
  1122. return true;
  1123. }
  1124. /// <summary>
  1125. /// 派发获得攻击单位事件.
  1126. /// </summary>
  1127. /// <param name="unit"></param>
  1128. /// <returns></returns>
  1129. private XmdsVirtual DispatchGetAtkUnitEvent(XmdsVirtual unit)
  1130. {
  1131. XmdsVirtual ret = unit;
  1132. if (this.mUnit.IsActive)
  1133. {
  1134. for (int i = mOnGetAtkTargetLt.Count - 1; i >= 0; --i)
  1135. {
  1136. OnGetAtkTargetHandler hitend = mOnGetAtkTargetLt[i];
  1137. ret = hitend.m_hand.Invoke(unit, hitend.m_skill);
  1138. }
  1139. }
  1140. return ret;
  1141. }
  1142. /// <summary>
  1143. /// 玩家离开怪物范围,mOnGetAtkTargetLt清掉
  1144. /// </summary>
  1145. /// <param name="unit"></param>
  1146. /// <returns></returns>
  1147. public void forceRemoveAtkTarget()
  1148. {
  1149. mOnGetAtkTargetLt.Clear();
  1150. }
  1151. /// <summary>
  1152. /// 派发技能伤害参数事件.
  1153. /// </summary>
  1154. /// <param name="skillDamagePer"></param>
  1155. /// <param name="skillDamageMod"></param>
  1156. /// <param name="attacker"></param>
  1157. /// <param name="hitter"></param>
  1158. /// <param name="source"></param>
  1159. public void DispatchSkillDamageEvent(XmdsVirtual attacker,XmdsVirtual hitter, AttackSource source)
  1160. {
  1161. for (int i = mOnGetSkillDamageInfoLt.Count - 1; i >= 0; --i)
  1162. {
  1163. OnGetSkillDamageInfo hitend = mOnGetSkillDamageInfoLt[i];
  1164. hitend.m_hand.Invoke(attacker, hitter, ref source, hitend.m_skill);
  1165. }
  1166. }
  1167. /// <summary>
  1168. /// 派发技能结束事件.
  1169. /// </summary>
  1170. /// <param name="owner"></param>
  1171. /// <param name="state"></param>
  1172. private void DispatchStateSkillEndEvent(XmdsVirtual owner, InstanceUnit.StateSkill state)
  1173. {
  1174. for (int i = 0; i < mOnStateSkillEndLt.Count; i++)
  1175. {
  1176. OnStateSkillEnd hitend = mOnStateSkillEndLt[i];
  1177. if (hitend.mListenAll || hitend.m_skill == null)
  1178. {
  1179. hitend.m_hand.Invoke(owner, state, hitend.m_skill);
  1180. }
  1181. else if (hitend.m_skill.SkillID == state.SkillData.ID)
  1182. {
  1183. hitend.m_hand.Invoke(owner, state, hitend.m_skill);
  1184. }
  1185. }
  1186. }
  1187. /// <summary>
  1188. /// 分发技能施放事件.
  1189. /// </summary>
  1190. /// <param name="st"></param>
  1191. private void DispatchTryLaunchSkillEvent(ref InstanceUnit.SkillState skill, ref bool result, ref InstanceUnit.LaunchSkillParam param)
  1192. {
  1193. bool ret = true;
  1194. for (int i = 0; i < mOnTryLaunchSkillLt.Count; i++)
  1195. {
  1196. OnTryLaucnSkill hitend = mOnTryLaunchSkillLt[i];
  1197. if (hitend.mListenAll || hitend.m_skill == null || hitend.m_skill.SkillID == skill.ID) //是否监听所有技能.
  1198. {
  1199. ret = hitend.m_hand.Invoke(hitend.m_skill, ref skill, this, ref param);
  1200. if (ret == false)
  1201. {
  1202. break;
  1203. }
  1204. }
  1205. }
  1206. result = ret;
  1207. }
  1208. /// <summary>
  1209. /// 分发宠物给人的技能施放事件.
  1210. /// </summary>
  1211. /// <param name="st"></param>
  1212. public bool DispatchTriggerPetSkillEvent(ref InstanceUnit.SkillState skill, ref InstanceUnit.LaunchSkillParam param)
  1213. {
  1214. for (int i = 0; i < mOnTriggerPetSkillLt.Count; i++)
  1215. {
  1216. OnTriggerPetSkill hitend = mOnTriggerPetSkillLt[i];
  1217. if (hitend.mListenAll || hitend.m_skill == null|| hitend.m_skill.SkillID == skill.ID) //是否监听所有技能.
  1218. {
  1219. if (hitend.m_hand.Invoke(hitend.m_skill, ref skill, this, ref param))
  1220. {
  1221. return true;
  1222. }
  1223. }
  1224. }
  1225. return false;
  1226. }
  1227. /// <summary>
  1228. /// 派发是否能添加BUFF事件.k
  1229. /// </summary>
  1230. /// <param name="template"></param>
  1231. /// <param name="hitter"></param>
  1232. /// <param name="result"></param>
  1233. private void DispatchTryAddBuffEvent(ref BuffTemplate template, XmdsVirtual hitter, ref bool result)
  1234. {
  1235. bool ret = true;
  1236. for (int i = mOnTryAddBuffLt.Count - 1; i >= 0; --i)
  1237. {
  1238. OnTryAddBuff hitend = mOnTryAddBuffLt[i];
  1239. ret = hitend.m_hand.Invoke(ref template, this, hitter, hitend.m_skill);
  1240. if (ret == false)
  1241. {
  1242. break;
  1243. }
  1244. }
  1245. result = ret;
  1246. }
  1247. /// <summary>
  1248. /// 派发移除buff
  1249. /// </summary>
  1250. /// <param name="template"></param>
  1251. /// <param name="hitter"></param>
  1252. /// <param name="result"></param>
  1253. private void DispatchRemoveBuffEvent(BuffTemplate template, XmdsVirtual player, BuffRemoveType type)
  1254. {
  1255. for (int i = mOnRemoveBuffLt.Count - 1; i >= 0; --i)
  1256. {
  1257. OnRemoveBuff hitend = mOnRemoveBuffLt[i];
  1258. if(hitend.mListenAll || hitend.buffID == template.ID)
  1259. {
  1260. if (hitend.m_hand.Invoke(ref template, this, type))
  1261. {
  1262. return;
  1263. }
  1264. }
  1265. }
  1266. }
  1267. /// <summary>
  1268. /// 派发添加BUFF事件.k
  1269. /// </summary>
  1270. /// <param name="template"></param>
  1271. /// <param name="hitter"></param>
  1272. /// <param name="result"></param>
  1273. //private void DispatchSendBuffEvent(BuffTemplate template, XmdsVirtual hitter)
  1274. // {
  1275. // for (int i = mOnSendBuffEvent.Count - 1; i >= 0; --i)
  1276. // {
  1277. // OnSendBuffEvent hitend = mOnSendBuffEvent[i];
  1278. // if(hitend.listenBuffID == 0 || hitend.listenBuffID == template.ID)
  1279. // {
  1280. // hitend.m_hand.Invoke(template, this, hitter);
  1281. // }
  1282. // }
  1283. // }
  1284. /** 分发技能被打断事件(暂时只有移动) */
  1285. public void DispatchSkillBlockEvent(InstanceUnit.StateSkill skill, InstanceUnit.State newState)
  1286. {
  1287. for (int i = mOnSkillBlockList.Count - 1; i >= 0; --i)
  1288. {
  1289. OnSkillBlockEvnet hitend = mOnSkillBlockList[i];
  1290. if (hitend.m_skill == null || skill.SkillData.TemplateID == hitend.m_skill.SkillID)
  1291. {
  1292. if(hitend.m_hand.Invoke(this, skill, newState))
  1293. {
  1294. break;
  1295. }
  1296. }
  1297. }
  1298. }
  1299. /** 分发加血事件 */
  1300. public void DispatchAddOtherHPEvent(int hp, InstanceUnit hitter, out int finalHP)
  1301. {
  1302. finalHP = hp;
  1303. for (int i = mAddOtherHPList.Count - 1; i >= 0; --i)
  1304. {
  1305. OnAddOtherHPEvnet hitend = mAddOtherHPList[i];
  1306. if (hitend.m_hand.Invoke(hp, this.mUnit, hitter, out finalHP))
  1307. {
  1308. break;
  1309. }
  1310. }
  1311. }
  1312. /** 分发宠物承担主人伤害事件 */
  1313. public int DispatchShareMasterDmgEvent(int shareDmg, InstanceUnit sender)
  1314. {
  1315. bool isEndDispatch = false;
  1316. for (int i = mShareMasterDmgList.Count - 1; i >= 0; --i)
  1317. {
  1318. OnShareMasterDmgEvent hitend = mShareMasterDmgList[i];
  1319. shareDmg = hitend.m_hand.Invoke(shareDmg, sender, this.mUnit, hitend.m_skill, ref isEndDispatch);
  1320. if (isEndDispatch)
  1321. {
  1322. break;
  1323. }
  1324. }
  1325. return shareDmg;
  1326. }
  1327. /** 分发扣定力事件 */
  1328. public void DispatchAddMPEvent(int mp, InstanceUnit hitter, out int finalMP, AttackSource source)
  1329. {
  1330. finalMP = mp;
  1331. for (int i = mReduceMPList.Count - 1; i >= 0; --i)
  1332. {
  1333. OnReduceOtherMpEvnet hitend = mReduceMPList[i];
  1334. if (hitend.m_hand.Invoke(mp, this.mUnit, hitter, out finalMP, source))
  1335. {
  1336. break;
  1337. }
  1338. }
  1339. }
  1340. /** 分发获得卡牌珠事件 */
  1341. public bool DispatchTryGetCardBallEvent(XmdsVirtual player, CreateCardBallSource type, CardType cardType)
  1342. {
  1343. for (int i = mTryAddCardBallList.Count - 1; i >= 0; --i)
  1344. {
  1345. OnTryAddCardBallEvent hitend = mTryAddCardBallList[i];
  1346. if (hitend.mListenAll || hitend.mType == type)
  1347. {
  1348. if(!hitend.m_hand.Invoke(this, type, cardType))
  1349. {
  1350. return false;
  1351. }
  1352. }
  1353. }
  1354. return true;
  1355. }
  1356. /** 分发释放卡牌技能事件 */
  1357. public bool DispatchTriggerCardSkillEvent(XmdsVirtual player, XmdsVirtual hitter, CardType cardType, int sameNums)
  1358. {
  1359. for (int i = mTriggerCardSkillList.Count - 1; i >= 0; --i)
  1360. {
  1361. OnTriggerCardSkillEvent hitend = mTriggerCardSkillList[i];
  1362. if (hitend.mListenAll || hitend.mPointCardType == cardType)
  1363. {
  1364. if (!hitend.m_hand.Invoke(this, hitter, hitend.m_skill, cardType, sameNums))
  1365. {
  1366. return false;
  1367. }
  1368. }
  1369. }
  1370. return true;
  1371. }
  1372. /** 分发释放卡牌技能事件 */
  1373. public bool DispatchKillOtherEvent(IVirtualUnit attacker, IVirtualUnit deader)
  1374. {
  1375. for (int i = mKillOtherList.Count - 1; i >= 0; --i)
  1376. {
  1377. OnKillOtherUnitEvent hitend = mKillOtherList[i];
  1378. if (deader.GetMaType() >= hitend.maType)
  1379. {
  1380. if (!hitend.m_hand.Invoke(attacker as XmdsVirtual, deader as XmdsVirtual, hitend.m_skill))
  1381. {
  1382. return false;
  1383. }
  1384. }
  1385. }
  1386. return true;
  1387. }
  1388. public void SetSkillActive(int skillTemplateID, bool active, bool pause_on_deactive = false)
  1389. {
  1390. if (this.mSkillHelper != null && this.mSkillHelper.mActiveSkills != null)
  1391. {
  1392. for (int i = 0; i < this.mSkillHelper.mActiveSkills.Count; i++)
  1393. {
  1394. UnitSkill skillInfo = this.mSkillHelper.mActiveSkills[i];
  1395. if(skillInfo != null && skillInfo.SkillID == skillTemplateID)
  1396. {
  1397. skillInfo.IsActive = active;
  1398. }
  1399. }
  1400. }
  1401. }
  1402. /// <summary>
  1403. /// 监听重定向spell.
  1404. /// </summary>
  1405. /// <param name="spt"></param>
  1406. private void DispatchTrySendSpellEvent(LaunchSpell launch, ref SpellTemplate spt, out JSGCreateSpellData createData, ref float startX, ref float startY)
  1407. {
  1408. createData = null;
  1409. for (int i = mOnTrySendSpellLt.Count - 1; i >= 0; --i)
  1410. {
  1411. OnTrySendSpell hitend = mOnTrySendSpellLt[i];
  1412. // 填了技能id,就只发送技能id=法术id的法术
  1413. bool process = hitend.mListenAll;
  1414. if(!process)
  1415. {
  1416. process = (hitend.mListenSpellId > 0) ? (hitend.mListenSpellId == launch.SpellID) : (hitend.m_skill.SkillID == spt.TemplateID);
  1417. }
  1418. if (process)
  1419. {
  1420. if(createData == null)
  1421. {
  1422. createData = new JSGCreateSpellData();
  1423. }
  1424. hitend.m_hand.Invoke(hitend.m_skill, this, launch, ref spt, ref createData, ref startX, ref startY);
  1425. }
  1426. }
  1427. }
  1428. /// <summary>
  1429. /// 监听spell释放完毕
  1430. /// </summary>
  1431. /// <param name="spt"></param>
  1432. public void DispatchSendSpellOverEvent(LaunchSpell launch, SpellTemplate spt, float startX, float startY)
  1433. {
  1434. for (int i = mSendSpellOverLt.Count - 1; i >= 0; --i)
  1435. {
  1436. OnSendSpellOverEvent hitend = mSendSpellOverLt[i];
  1437. // 填了技能id,就只发送技能id=法术id的法术
  1438. if (hitend.mListenAll || hitend.mListSpellId == spt.TemplateID)
  1439. {
  1440. hitend.m_hand.Invoke(launch, this, spt, hitend.m_skill, startX, startY);
  1441. }
  1442. }
  1443. }
  1444. private void DispatchCalThreatValueEvent(XmdsVirtual hitter, AttackSource source, ref AtkResult result)
  1445. {
  1446. for (int i = 0; i < mOnCalThreatValueLt.Count; i++)
  1447. {
  1448. OnCalThreatValue hitend = mOnCalThreatValueLt[i];
  1449. if (hitend.mListenAll || hitend.m_skill == null || hitend.m_skill.SkillID == ((source.Attack.Properties) as XmdsAttackProperties).SkillTemplateID)
  1450. {
  1451. hitend.m_hand.Invoke(this, hitter, source, hitend.m_skill, ref result);
  1452. }
  1453. }
  1454. }
  1455. #endregion
  1456. /// <summary>
  1457. /// 清理注册信息.
  1458. /// </summary>
  1459. public void ClearRegistEvent()
  1460. {
  1461. mHandleMap.Clear();
  1462. mOnHitOtherLt.Clear();
  1463. mOnHitDamageLt.Clear();
  1464. mOnBuffEventLt.Clear();
  1465. mOnCalDamageLt.Clear();
  1466. mOnLaunchSkillOverLt.Clear();
  1467. mOnGetAtkTargetLt.Clear();
  1468. mOnGetSkillDamageInfoLt.Clear();
  1469. mOnStateSkillEndLt.Clear();
  1470. mOnTryAddBuffLt.Clear();
  1471. //mOnSendBuffEvent.Clear();
  1472. mOnTrySendSpellLt.Clear();
  1473. mSendSpellOverLt.Clear();
  1474. mOnTryLaunchSkillLt.Clear();
  1475. mOnTriggerPetSkillLt.Clear();
  1476. mOnCalThreatValueLt.Clear();
  1477. mOnSkillBlockList.Clear();
  1478. mAddOtherHPList.Clear();
  1479. this.mOnRemoveBuffLt.Clear();
  1480. this.mTryAddCardBallList.Clear();
  1481. this.mReduceMPList.Clear();
  1482. this.mTriggerCardSkillList.Clear();
  1483. this.mShareMasterDmgList.Clear();
  1484. this.mKillOtherList.Clear();
  1485. mHandleUUID = 0;
  1486. }
  1487. /// <summary>
  1488. /// 删除技能相关事件.
  1489. /// </summary>
  1490. /// <param name="skillID"></param>
  1491. public void RemoveEventBySkillID(int skillID)
  1492. {
  1493. try
  1494. {
  1495. using (var removeList = ListObjectPool<int>.AllocAutoRelease())
  1496. {
  1497. foreach (KeyValuePair<int, IHandle> pair in mHandleMap)
  1498. {
  1499. if (pair.Value != null && pair.Value.m_skill != null && skillID == pair.Value.m_skill.SkillID)
  1500. {
  1501. removeList.Add(pair.Key);
  1502. }
  1503. }
  1504. for (int i = 0; i < removeList.Count; i++)
  1505. {
  1506. RemoveEventByUUID(removeList[i]);
  1507. }
  1508. }
  1509. }
  1510. catch (Exception error)
  1511. {
  1512. throw new Exception(error.StackTrace);
  1513. }
  1514. }
  1515. private void RemoveEventByUUID(int uuid)
  1516. {
  1517. IHandle handle = null;
  1518. if (mHandleMap.TryGetValue(uuid, out handle))
  1519. {
  1520. bool result = false;
  1521. if (handle is OnHitHandler)
  1522. {
  1523. bool result1 = UnRegistOnHitOther(uuid);
  1524. bool result2 = UnRegistOnHitDamage(uuid);
  1525. result = result1 | result2;
  1526. }
  1527. else if (handle is OnBuffEventHandler)
  1528. {
  1529. result = UnRegistBuffEvent(uuid);
  1530. }
  1531. else if (handle is OnCalDmageHandler)
  1532. {
  1533. result = UnRegistCalDamage(uuid);
  1534. }
  1535. else if (handle is OnLaunchSkillOverHandler)
  1536. {
  1537. result = UnRegistLaunchSkillOver(uuid);
  1538. }
  1539. else if (handle is OnGetAtkTargetHandler)
  1540. {
  1541. result = UnRegistGetAtkTarget(uuid);
  1542. }
  1543. else if (handle is OnGetSkillDamageInfo)
  1544. {
  1545. result = UnRegistGetSkillDamageInfo(uuid);
  1546. }
  1547. else if(handle is OnStateSkillEnd)
  1548. {
  1549. result = UnRegistStateSkillEndEvent(uuid);
  1550. }
  1551. else if (handle is OnTryAddBuff)
  1552. {
  1553. result = UnRegistTryAddBuffEvent(uuid);
  1554. }
  1555. else if(handle is OnRemoveBuff)
  1556. {
  1557. result = UnRegistRemoveBuffEvent(uuid);
  1558. }
  1559. else if(handle is OnSendSpellOverEvent)
  1560. {
  1561. result = UnRegistSendSpellOverEvent(uuid);
  1562. }
  1563. else if (handle is OnTrySendSpell)
  1564. {
  1565. result = UnRegistTrySendSpellEvent(uuid);
  1566. }
  1567. else if (handle is OnTryLaucnSkill)
  1568. {
  1569. result = UnRegistTryLaunchSkillEvent(uuid);
  1570. }
  1571. else if (handle is OnTriggerPetSkill)
  1572. {
  1573. result = UnRegistTriggerPetSkillEvent(uuid);
  1574. }
  1575. else if (handle is OnCalThreatValue)
  1576. {
  1577. result = UnRegistCalThreatValue(uuid);
  1578. }
  1579. else if(handle is OnSkillBlockEvnet)
  1580. {
  1581. result = UnRegistSkillBlockEvent(uuid);
  1582. }
  1583. else if(handle is OnAddOtherHPEvnet)
  1584. {
  1585. result = UnRegistAddOtherHPEvent(uuid);
  1586. }
  1587. else if(handle is OnReduceOtherMpEvnet)
  1588. {
  1589. result = UnRegistReduceOtherMpEvent(uuid);
  1590. }
  1591. else if(handle is OnTryAddCardBallEvent)
  1592. {
  1593. result = UnRegistTryAddCardBallEvent(uuid);
  1594. }
  1595. else if(handle is OnTriggerCardSkillEvent)
  1596. {
  1597. result = UnRegistTriggerCardSkillEvent(uuid);
  1598. }
  1599. else if(handle is OnShareMasterDmgEvent)
  1600. {
  1601. result = UnRegistShareMasterDmgEvent(uuid);
  1602. }
  1603. else if (handle is OnKillOtherUnitEvent)
  1604. {
  1605. result = UnRegistKillOtherEvent(uuid);
  1606. }
  1607. else
  1608. {
  1609. log.Error("RemoveEventByUUID not process type: " + handle);
  1610. }
  1611. }
  1612. }
  1613. }
  1614. }