InstanceUnit.cs 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CommonAI.RTS;
  5. using CommonLang.Vector;
  6. using CommonAI.Zone;
  7. using CommonAI.Zone.Instance;
  8. using CommonAI.RTS.Manhattan;
  9. using CommonLang;
  10. using CommonLang.Log;
  11. using CommonAI.Zone.Formula;
  12. using CommonAI.ZoneClient;
  13. using CommonAI.Zone.Helper;
  14. using CommonLang.Property;
  15. using CommonAI.Zone.Attributes;
  16. using CommonAI.Zone.EventTrigger;
  17. using CommonAI.Zone.Instance.Helper;
  18. using CommonAI.Data;
  19. using static CommonAI.Zone.UnitInfo;
  20. using CommonAI.data;
  21. namespace CommonAI.Zone.Instance
  22. {
  23. abstract public partial class InstanceUnit : InstanceZoneObject
  24. {
  25. private readonly UnitInfo mInfo;
  26. private readonly DropItemGenerator mDropItems;
  27. /// <summary>
  28. /// 统计信息
  29. /// </summary>
  30. public IUnitStatistic Statistic { get; private set; }
  31. //最后一次受伤时间
  32. public long mLastDamageTime;
  33. //最后一次攻击事件
  34. public long mLastHitOtherTime;
  35. //上一次处理死亡回调时间
  36. public long mProcessDeadCallbackTime;
  37. private IFormula mFormula = TemplateManager.Factory.Formula;
  38. private IVirtualUnit mUnitVirtual;
  39. private readonly string mName;
  40. private int mForce = 0;
  41. private int mAlliesForce = 0; // 服务器对战情况下,有盟友服务器
  42. private int mLevel = 0;
  43. private int mMoney = 0;
  44. private readonly bool mIsAttackRangeIncludeBodySize;
  45. // 当前HP
  46. private readonly RangeValue __mCurrentHP;
  47. // 当前MP
  48. private readonly RangeValue __mCurrentMP;
  49. // 当前移动速度加成
  50. private float __mCurrentMoveSpeedSEC = 0;
  51. // 攻速
  52. private int __mCurrentAttackSpeed = 10000;
  53. // 当前技能速度加成
  54. private float __mSkillActionSpeedRate = 0;
  55. // 当前快速施法速度
  56. private float mFastCastRate = 0;
  57. /// <summary>
  58. /// 当前单位是否地图阻挡
  59. /// </summary>
  60. private bool mIntersectMap = false;
  61. /// <summary>
  62. /// 当前单位是否单位阻挡
  63. /// </summary>
  64. private bool mIntersectObj = false;
  65. // 当前技能cd减少
  66. private float __mCurrentSkillCdReduce;
  67. // 控制减速,韧性
  68. private float __mCurrentControledTimeReduce;
  69. // 控制增幅
  70. private float __mControledTimeAdd;
  71. /// 单位最后死亡时间
  72. private long mDeadTime = 0;
  73. //游戏服标记字段,怪物死亡的时候,回传给游戏服
  74. public int gameServerFlag = 0;
  75. //回血
  76. public int recoverHP = 0;
  77. //随从最后一次瞬移时间
  78. public long petTeleportTime = 0;
  79. //最后一次返回召回随从操作频繁时间
  80. public long lastTeleportTime = 0;
  81. //绑定攻击玩家
  82. private string mBindAttackPlayerId;
  83. //主人id
  84. private long mRemoveSelfTime;
  85. private InstanceUnit mBindMaster;
  86. /// <summary>
  87. /// 自动恢复计数器
  88. /// </summary>
  89. private TimeInterval<int> mRecoveryTime = null;
  90. public InstanceUnit(InstanceZone zone, UnitInfo uinfo, string name, int force, int level, bool is_static_block = false, int alliesForce = 0)
  91. : base(zone, is_static_block)
  92. {
  93. this.mInfo = (UnitInfo)uinfo.Clone();
  94. this.mName = string.IsNullOrEmpty(name) ? "" : name;
  95. this.mIsAttackRangeIncludeBodySize = zone.Templates.CFG.OBJECT_ATTACK_RANGE_INCLUDE_BODYSIZE;
  96. this.mForce = force;
  97. this.mAlliesForce = alliesForce;
  98. this.mLevel = level;
  99. this.mIntersectMap = true;
  100. this.mIntersectObj = !Templates.CFG.OBJECT_NONE_TOUCH && (mInfo.BodySize > 0);
  101. this.mSyncInfo = new SyncUnitInfo(zone.IsHalfSync);
  102. this.mSyncInfo.Name = mName;
  103. this.mSyncInfo.TemplateID = mInfo.ID;
  104. this.__mCurrentHP = new RangeValue(mInfo.HealthPoint, 0, mInfo.HealthPoint);
  105. this.__mCurrentMP = new RangeValue(mInfo.ManaPoint, 0, mInfo.ManaPoint);
  106. this.__mCurrentMoveSpeedSEC = mInfo.MoveSpeedSEC;
  107. this.mDropItems = new DropItemGenerator(uinfo.DropItemsSet);
  108. this.mTriggerHelper = new UnitTriggerHelper(this);
  109. if (mInfo.IdleRecover && mInfo.RecoveryIntervalMS > 0)
  110. {
  111. this.mRecoveryTime = new TimeInterval<int>(mInfo.RecoveryIntervalMS);
  112. this.recoverHP = Info.HealthRecoveryPoint;
  113. }
  114. this.InitTimeLines();
  115. this.InitBagSlots();
  116. this.InitSkills(mInfo.BaseSkillID, mInfo.Skills.ToArray());
  117. this.Statistic = this.CreateUnitStatistic();
  118. this.mUnitVirtual = TemplateManager.Factory.CreateUnitVirtual(this);
  119. }
  120. public override bool IsNeedProcessDead()
  121. {
  122. return this.mProcessDeadTime == 0;
  123. }
  124. protected override void Disposing()
  125. {
  126. //if(this.IsMonster && (this.mProcessDeadTime == 0 || this.CurrentHP > 0 || this.mProcessDeadTime == 0))
  127. //{
  128. // log.Info("单位Disposing:" + this.Parent.UUID + ", " + this.Parent.GetSceneID() + ", " + this.ID + ", " + this.CurrentHP + "," +
  129. // this.IsMonster + ", " + mProcessDeadTime);
  130. //}
  131. if (mUnitVirtual != null)
  132. {
  133. mUnitVirtual.OnDispose(this);
  134. }
  135. base.Disposing();
  136. this.clearBindEvents();
  137. this.clearSkills();
  138. this.clearBuffs();
  139. this.clearItemSlots();
  140. this.clearTriggers();
  141. }
  142. protected override void onAdded(bool pointLv)
  143. {
  144. if (this.mUnitVirtual != null)
  145. {
  146. this.mUnitVirtual.OnInit(this, pointLv);
  147. if (this.mRecoveryTime != null && this.Info.UType == UnitType.TYPE_MONSTER)
  148. {
  149. this.recoverHP = Info.HealthRecoveryPoint == 0 ? (int)(this.MaxHP * 0.005f) : Info.HealthRecoveryPoint;
  150. }
  151. }
  152. this.mSyncInfo.ObjectID = base.ID;
  153. this.mSyncInfo.IsTouchObj = this.mIntersectObj;
  154. this.mSyncInfo.IsTouchMap = this.mIntersectMap;
  155. this.mSyncInfo.IsStaticBlockable = this.IsStaticBlockable;
  156. this.mSyncInfo.fateType = (byte)this.Virtual.GetUnitFateType();
  157. if (mInfo.SpawnTimeMS > 0)
  158. {
  159. this.SetInvincibleTimeMS(mInfo.SpawnTimeMS);
  160. }
  161. if (this.mInfo.InventoryList != null)
  162. {
  163. foreach (InventoryItem item in mInfo.InventoryList)
  164. {
  165. ItemTemplate temp = Templates.getItem(item.ItemTemplateID);
  166. if (temp != null)
  167. {
  168. AddItemToEmptyInventory(temp, item.Count);
  169. }
  170. }
  171. }
  172. if (mInfo.Events != null)
  173. {
  174. foreach (int evt_id in mInfo.Events)
  175. {
  176. this.BindUnitEvent(evt_id);
  177. }
  178. }
  179. if (mOnAdded != null)
  180. {
  181. mOnAdded.Invoke(this);
  182. }
  183. }
  184. protected override void onRemoved()
  185. {
  186. if (mOnRemoved != null)
  187. {
  188. mOnRemoved.Invoke(this);
  189. }
  190. foreach (UnitEventTriggerCollection uc in mBindEvents.Values)
  191. {
  192. uc.Dispose();
  193. }
  194. mBindEvents.Clear();
  195. if (Info.RemovedEffect != null)
  196. {
  197. Parent.queueEvent(new AddEffectEvent(this.ID, X, Y, Direction, Info.RemovedEffect));
  198. }
  199. }
  200. public void BindAttackPlayer(string playerId)
  201. {
  202. this.mBindAttackPlayerId = playerId;
  203. }
  204. public string GetAttackPlayer()
  205. {
  206. return this.mBindAttackPlayerId;
  207. }
  208. public void BindMasterId(int masterId)
  209. {
  210. InstanceUnit master = this.Parent.getUnitByID(masterId);
  211. if(master == null)
  212. {
  213. log.Error("BindMasterId找不到单位:" + this.Parent.GetSceneID() + ", " + masterId);
  214. return;
  215. }
  216. if(this.mBindMaster != null)
  217. {
  218. log.Error("BindMasterId重复:" + this.Info.ID + ", " + master.PlayerUUID);
  219. return;
  220. }
  221. this.mBindMaster = master;
  222. }
  223. //--------------------------------------------------------------------------
  224. /// <summary>
  225. /// 扩展功能绑定接口
  226. /// </summary>
  227. public IVirtualUnit Virtual { get { return mUnitVirtual; } }
  228. /// <summary>
  229. /// 扩展数据
  230. /// </summary>
  231. public virtual IUnitProperties Properties { get { return mInfo.Properties; } }
  232. //--------------------------------------------------------------------------
  233. //--------------------------------------------------------------------------
  234. public UnitInfo Info { get { return mInfo; } }
  235. public string Name { get { return mName; } }
  236. public string Alias { get { return mSyncInfo.Alias; } set { if (value != null) { mSyncInfo.Alias = value; } } }
  237. public int Force { get { return mForce; } protected set { mForce = value; } }
  238. public int AlliesForce { get { return mAlliesForce; } protected set { mAlliesForce = value; } }
  239. public float MoveSpeedSEC { get { return __mCurrentMoveSpeedSEC; } }
  240. public float SkillCdReduce { get { return __mCurrentSkillCdReduce; } }
  241. public float ControledTimeReduce { get { return __mCurrentControledTimeReduce; } }
  242. public float ControledTimeAdd { get { return __mControledTimeAdd; } }
  243. public float FastCastRate { get { return mFastCastRate; } }
  244. public override float BodyBlockSize { get { return mInfo.BodySize; } }
  245. public override float BodyHitSize { get { return mInfo.BodyHitSize; } }
  246. public override float BodyHeight { get { return mInfo.BodyHeight; } }
  247. public override float Weight { get { return mInfo.Weight; } }
  248. public override bool IntersectMap { get { return mIntersectMap; } }
  249. public override bool IntersectObj { get { return mIntersectObj && IsVisible; } }
  250. public override bool Moveable { get { return mInfo.IsMoveable; } }
  251. public override bool ClientVisible { get { return true; } }
  252. public override bool SyncPos { get { return true; } }
  253. public override bool IsDead (){ return __mCurrentHP.Value <= 0; }
  254. public int DeadCount { get { return Statistic.DeadCount; } }
  255. public long LastDeadTimeMS { get { return mDeadTime; } }
  256. public bool CanWhiplashDeadBody { get { return Templates.CFG.UNIT_CAN_WHIPLASH_BODY && (LastDeadTimeMS + mInfo.DeadTimeMS > Parent.PassTimeMS); } }
  257. /// <summary>
  258. /// 是否为玩家
  259. /// </summary>
  260. virtual public bool IsPlayer { get { return false; } }
  261. virtual public bool IsMonster { get { return false; } }
  262. virtual public bool IsPet { get { return false; } }
  263. //玩家或者宠物合集
  264. virtual public bool IsPlayerUnit { get { return false; } }
  265. virtual public void OnUnitDead() {}
  266. /// <summary>
  267. /// 是否中立
  268. /// </summary>
  269. virtual public bool IsNature { get { return false; } }
  270. /// <summary>
  271. /// 此单位是否能被攻击并且活着
  272. /// </summary>
  273. virtual public bool IsActive { get { return (__mCurrentHP.Value > 0) && (base.Enable)/*&& !IsInvincible && IsVisible*/; } }
  274. /// <summary>
  275. /// 此单位是否可以被打到,包括鞭尸
  276. /// </summary>
  277. virtual public bool IsAttackable { get { return (base.Enable) /*&& !IsInvincible && IsVisible*/; } }
  278. /// <summary>
  279. /// 此单位是否无技能
  280. /// </summary>
  281. public bool IsNoneSkill { get { return mSkillStatus.Count == 0; } }
  282. /// <summary>
  283. /// 技能可产生位移,或者多段由服务器决定
  284. /// </summary>
  285. virtual public bool IsSkillControllableByServer { get { return true; } }
  286. /// <summary>
  287. /// 单位是否可控
  288. /// </summary>
  289. virtual public bool IsControllable { get { return IsActive && !IsStun && CurrentActionStatus != UnitActionStatus.Damage; } }
  290. /// <summary>
  291. /// 用于显示的,单位横向数据
  292. /// </summary>
  293. public ZoneClient.IUnitVisibleData VisibleInfo { get { return mSyncInfo.VisibleInfo; } }
  294. //-----------------------------------------------------------------------------------------------------//
  295. protected virtual IUnitStatistic CreateUnitStatistic()
  296. {
  297. return new UnitStatistic(this);
  298. }
  299. //-----------------------------------------------------------------------------------------------------//
  300. #region __StateMachine__
  301. private bool is_init = false;
  302. private State current_state = null;
  303. private State next_state;
  304. private Queue<State> next_state_queue = new Queue<State>();
  305. /// <summary>
  306. /// 当前状态机
  307. /// </summary>
  308. public State CurrentState { get { return current_state; } }
  309. //状态机额外数据
  310. public long chuangongTime = 0;
  311. /// <summary>
  312. /// 下一个状态
  313. /// </summary>
  314. protected State NextState { get { return next_state; } }
  315. /// <summary>
  316. /// 死亡状态可能的状态机,一般配合<see cref="IsDead"/>使用
  317. /// </summary>
  318. public bool IsStateDead
  319. {
  320. get
  321. {
  322. if ((current_state is StateDead) ||
  323. (current_state is StateDamage) ||
  324. (current_state is StateDeadFuck) ||
  325. (current_state is StateDeadFuckFuck) ||
  326. (current_state is StateRebirth) ||
  327. (next_state is StateDead) ||
  328. (next_state is StateDamage) ||
  329. (next_state is StateDeadFuck) ||
  330. (next_state is StateDeadFuckFuck) ||
  331. (next_state is StateRebirth))
  332. {
  333. return true;
  334. }
  335. return false;
  336. }
  337. }
  338. public void queueState(State s)
  339. {
  340. next_state_queue.Enqueue(s);
  341. }
  342. public bool TryEnqueueIdleState()
  343. {
  344. if (next_state_queue.Count > 0)
  345. {
  346. return false;
  347. }
  348. next_state_queue.Enqueue(new StateIdle(this));
  349. return true;
  350. }
  351. public void queueCurrentState(State s)
  352. {
  353. if (current_state != null)
  354. {
  355. if (!changeState(s))
  356. {
  357. State.StateStopHandler onstop = new State.StateStopHandler((obj, st) =>
  358. {
  359. changeState(s);
  360. });
  361. current_state.AddStopOnce(onstop);
  362. }
  363. }
  364. else
  365. {
  366. changeState(s);
  367. }
  368. }
  369. public bool changeState(State s, bool force = false)
  370. {
  371. if (s == current_state)
  372. {
  373. return true;
  374. }
  375. if (s == next_state)
  376. {
  377. return true;
  378. }
  379. if (s.unit != this)
  380. {
  381. throw new Exception("State is not Owner unit : " + s);
  382. }
  383. if (current_state == null || current_state.onBlock(s) || force)
  384. {
  385. if (next_state == null || next_state.onBlock(s) || force)
  386. {
  387. if (next_state != null)
  388. {
  389. next_state.stop();
  390. }
  391. onNewStateBeginChange(current_state, ref s);
  392. next_state = s;
  393. return true;
  394. }
  395. }
  396. return false;
  397. }
  398. private void updateState()
  399. {
  400. //绑定主人类怪物,脱战或者主人移除自杀
  401. if(mRemoveSelfTime == 0)
  402. {
  403. if (this.mBindMaster != null && (!this.mBindMaster.IsActive || this.mBindMaster.Virtual.GetBattleStatus() <= BattleStatus.ReadyBattle))
  404. {
  405. //添加移除逻辑
  406. mRemoveSelfTime = CommonLang.CUtils.localTimeMS + 3000;
  407. }
  408. }
  409. else if(mRemoveSelfTime < CommonLang.CUtils.localTimeMS)
  410. {
  411. this.kill(null, false);
  412. }
  413. if (IsDead() && (!IsStateDead))
  414. {
  415. changeState(new StateDead(this, this, false), true);
  416. Parent.cb_unitDeadCallBack(this, this);
  417. queueEvent(new UnitDeadEvent(ID, this.ID, false, mInfo.RebirthTimeMS));
  418. }
  419. else if (next_state == null && next_state_queue.Count > 0)
  420. {
  421. // 尝试从队列中取一个状态机,有机会就执行 //
  422. while (next_state_queue.Count > 0)
  423. {
  424. State queued_state = next_state_queue.Peek();
  425. if (changeState(queued_state))
  426. {
  427. next_state_queue.Dequeue();
  428. }
  429. else { break; }
  430. }
  431. }
  432. if (next_state != null && next_state != current_state)
  433. {
  434. State old_state = current_state;
  435. if (old_state != null)
  436. {
  437. old_state.stop();
  438. }
  439. this.current_state = next_state;
  440. this.next_state = null;
  441. this.current_state.start();
  442. this.onStateChanged(old_state, current_state);
  443. if (mOnStateChanged != null)
  444. {
  445. mOnStateChanged.Invoke(this, old_state, current_state);
  446. }
  447. }
  448. if (current_state != null)
  449. {
  450. current_state.update();
  451. }
  452. UpdateTimeLines(Parent.UpdateIntervalMS);
  453. }
  454. #endregion
  455. protected virtual void onUpdateRecover()
  456. {
  457. //自动恢复
  458. if (this.recoverHP > 0 && mRecoveryTime != null && this.CurrentHP < this.MaxHP && CurrentActionStatus != UnitActionStatus.Damage
  459. && this.Virtual.GetBattleStatus() == BattleStatus.None && !IsDead())
  460. {
  461. if (mRecoveryTime.Update(Parent.UpdateIntervalMS))
  462. {
  463. AddHP(this.recoverHP, null);
  464. //AddMP(Info.ManaRecoveryPoint);
  465. }
  466. }
  467. }
  468. override protected void onUpdate(bool slowRefresh)
  469. {
  470. if (!is_init)
  471. {
  472. is_init = true;
  473. onInit();
  474. }
  475. if (!IsPaused)
  476. {
  477. updatePhysical();
  478. updateState();
  479. onUpdateRecover();
  480. updateSkills();
  481. updateBuffs();
  482. updateTriggers(slowRefresh);
  483. updateItems();
  484. if (mOnUpdate != null)
  485. {
  486. mOnUpdate.Invoke(this);
  487. }
  488. }
  489. updateSyncFields();
  490. updateSyncSkillActives();
  491. }
  492. internal void doAction(ObjectAction act)
  493. {
  494. this.onAction(act);
  495. if (mOnHandleObjectAction != null)
  496. {
  497. mOnHandleObjectAction.Invoke(this, act);
  498. }
  499. }
  500. private void doRebirth(int max_hp, int max_mp)
  501. {
  502. next_state_queue.Clear();
  503. if (this.Moveable)
  504. {
  505. this.mIntersectObj = !Templates.CFG.OBJECT_NONE_TOUCH && (mInfo.BodySize > 0);
  506. }
  507. else
  508. {
  509. this.mIntersectObj = (mInfo.BodySize > 0);
  510. }
  511. if (max_hp == 0) max_hp = this.MaxHP;
  512. if (max_mp == 0) max_mp = this.MaxMP;
  513. if (max_hp != 0) this.__mCurrentHP.SetValue(max_hp);
  514. if (max_mp != 0) this.__mCurrentMP.SetValue(max_mp);
  515. syncFields(UnitFieldChangedEvent.MASK_HP | UnitFieldChangedEvent.MASK_MP);
  516. Parent.cb_unitRebirthCallBack(this);
  517. queueEvent(new UnitRebirthEvent(ID));
  518. }
  519. public void updateContinueKills()
  520. {
  521. if (this.Statistic.continueKills < short.MaxValue)
  522. {
  523. ++this.Statistic.continueKills;
  524. }
  525. UnitContinueKillValue temp = new UnitContinueKillValue(this.ID, this.Statistic.continueKills);
  526. queueEvent(temp);
  527. }
  528. public void resetContinueKills()
  529. {
  530. this.Statistic.continueKills = 0;
  531. }
  532. private void doActivated()
  533. {
  534. next_state_queue.Clear();
  535. if (this.Moveable)
  536. {
  537. this.mIntersectObj = !Templates.CFG.OBJECT_NONE_TOUCH && (mInfo.BodySize > 0);
  538. }
  539. else
  540. {
  541. this.mIntersectObj = (mInfo.BodySize > 0);
  542. }
  543. this.addTriggers(mInfo.Triggers);
  544. Parent.cb_unitActivatedCallBack(this);
  545. }
  546. internal void doDead(InstanceUnit killer)
  547. {
  548. if(killer != null)
  549. {
  550. this.Statistic.LogDead(killer.Statistic);
  551. }
  552. this.mIntersectObj = false;
  553. this.clearBuffs();
  554. //吴永辉:5v5人物死亡后会重置技能CD 无论在哪个地图死亡都不能重置 你可能要指给黄鱼 bugid=2748
  555. //this.ClearAllSkillCD();
  556. this.resetAI();
  557. }
  558. //------------------------------------------------------------------------------------------------------//
  559. internal void callback_onActivated(InstanceZone zone)
  560. {
  561. if (this.mOnActivated != null)
  562. this.mOnActivated.Invoke(this);
  563. }
  564. internal void callback_onAttack(InstanceZone zone, InstanceUnit target, int reduceHP, AttackSource source)
  565. {
  566. if (this.mOnAttack != null)
  567. this.mOnAttack(this, target, reduceHP, source);
  568. }
  569. internal void callback_onDamage(InstanceZone zone, InstanceUnit attacker, int reduceHP, AttackSource source)
  570. {
  571. if (this.mOnDamage != null)
  572. this.mOnDamage.Invoke(this, attacker, reduceHP, source);
  573. }
  574. public long mProcessDeadTime = 0;
  575. internal void callback_onDead(InstanceZone zone, InstanceUnit attacker)
  576. {
  577. this.mProcessDeadTime = CommonLang.TimeUtil.GetTimestampMS();
  578. this.OnUnitDead();
  579. if (this.mOnDead != null)
  580. this.mOnDead.Invoke(this, attacker);
  581. }
  582. internal void callback_onRebirth(InstanceZone zone)
  583. {
  584. if (this.mOnRebirth != null)
  585. this.mOnRebirth.Invoke(this);
  586. }
  587. internal void callback_onGotInstanceItem(InstanceZone zone, InstanceItem item)
  588. {
  589. if (this.mOnGotInstanceItem != null)
  590. this.mOnGotInstanceItem.Invoke(this, item);
  591. }
  592. internal void callback_onGotInventoryItem(InstanceZone zone, ItemTemplate item)
  593. {
  594. if (this.mOnGotInventoryItem != null)
  595. this.mOnGotInventoryItem.Invoke(this, item);
  596. }
  597. internal void callback_onLostInventoryItem(InstanceZone zone, ItemTemplate item)
  598. {
  599. if (this.mOnLostInventoryItem != null)
  600. this.mOnLostInventoryItem.Invoke(this, item);
  601. }
  602. internal void callback_onUseItem(InstanceZone zone, ItemTemplate item, InstanceUnit item_creater)
  603. {
  604. if (this.mOnUseItem != null)
  605. this.mOnUseItem.Invoke(this, item, item_creater);
  606. }
  607. internal void callback_onGotBuff(InstanceZone zone, InstanceUnit.BuffState buff)
  608. {
  609. if (this.mOnGotBuff != null)
  610. this.mOnGotBuff.Invoke(this, buff);
  611. }
  612. internal void callback_onLostBuff(InstanceZone zone, InstanceUnit.BuffState buff)
  613. {
  614. if (this.mOnLostBuff != null)
  615. this.mOnLostBuff.Invoke(this, buff);
  616. }
  617. //-----------------------------------------------------------------------------------------------------//
  618. private void onInit()
  619. {
  620. syncFields(UnitFieldChangedEvent.MASK_ALL);
  621. if (mInfo.SpawnTimeMS > 0)
  622. {
  623. changeState(new StateSpawn(this, mInfo.SpawnTimeMS));
  624. }
  625. else
  626. {
  627. changeState(new StateIdle(this));
  628. doActivated();
  629. }
  630. }
  631. #region _Overrideable_
  632. /// <summary>
  633. /// 收到协议
  634. /// </summary>
  635. /// <param name="act"></param>
  636. virtual protected void onAction(ObjectAction act) { }
  637. /// <summary>
  638. /// 新的状态将要切换时回调
  639. /// </summary>
  640. virtual protected void onNewStateBeginChange(State old_state, ref State new_state) { }
  641. /// <summary>
  642. /// 状态已切换时回调
  643. /// </summary>
  644. /// <param name="old_state"></param>
  645. /// <param name="state"></param>
  646. virtual protected void onStateChanged(State old_state, State state) { }
  647. // 被攻击时回调
  648. virtual protected void onDamaged(InstanceUnit attacker, AttackSource source, int reduceHP) { }
  649. virtual protected void onDead(InstanceUnit killer) { }
  650. #endregion
  651. /// <summary>
  652. /// 单位被攻击核心函数,里面处理受击状态,死亡状态
  653. /// </summary>
  654. /// <param name="attacker"></param>
  655. /// <param name="source"></param>
  656. virtual protected internal void doHitAttack(InstanceUnit attacker, AttackSource source)
  657. {
  658. if (IsDead())
  659. {
  660. //死亡后鞭尸//
  661. if (Moveable && CanWhiplashDeadBody)
  662. {
  663. source.Begin(this);
  664. changeState(new StateDamage(this, source, attacker));
  665. }
  666. doHitAttackEndEffect(attacker, source);
  667. return;
  668. }
  669. else
  670. {
  671. if (current_state is StateDamage)
  672. {
  673. StateDamage state_damage = current_state as StateDamage;
  674. if (state_damage.IsDamageProtect)
  675. {
  676. return;
  677. }
  678. }
  679. // TODO HP //
  680. source.Begin(this);
  681. int reduceHP = mFormula.OnHit(attacker, source, this);
  682. // 统计 //
  683. this.Statistic.LogDamage(attacker.Statistic, reduceHP);
  684. reduceHP = this.AddHP(-reduceHP, attacker, !source.OutSendEvent, source);
  685. AttackProp attack = source.Attack;
  686. // Post Event //
  687. if (source.OutSendEvent)
  688. {
  689. UnitHitEvent evt = new UnitHitEvent(ID);
  690. evt.senderId = attacker.ID;
  691. evt.senderMasterId = attacker.Virtual.GetMasterID();
  692. evt.hitMasterId = this.Virtual.GetMasterID();
  693. evt.hp = reduceHP;
  694. evt.isDead = IsDead();
  695. evt.isCritical = source.Attack.MaskMustCritical;
  696. evt.effect = source.OutHitEffect;
  697. evt.SourceAttack = source.Attack;
  698. evt.client_state = source.OutClientState;
  699. if(source != null && attacker != null && source.FromSkillType == XmdsSkillType.cardSkill && this.IsMonster && attacker.IsMonster)
  700. {
  701. evt.InViewForceSend = true;
  702. }
  703. queueEvent(evt);
  704. }
  705. if (reduceHP > 0)
  706. {
  707. source.HasHitted = true;
  708. onDamaged(attacker, source, reduceHP);
  709. Parent.cb_unitDamageCallBack(this, attacker, reduceHP, source);
  710. if (IsDead())
  711. {
  712. doDeadProcess(attacker, source);
  713. return;
  714. }
  715. }
  716. // 非免控,才会有受击
  717. if (!this.IsIgnoreControl && source.OutIsDamage && Moveable)
  718. {
  719. changeState(new StateDamage(this, source, attacker));
  720. }
  721. doHitAttackEndEffect(attacker, source);
  722. return;
  723. }
  724. }
  725. /** 执行死亡处理逻辑 */
  726. private void doDeadProcess(InstanceUnit attacker, AttackSource source)
  727. {
  728. if (this.IsMonster)
  729. {
  730. if (this.mProcessDeadCallbackTime + 1000 > CommonLang.CUtils.localTimeMS)
  731. {
  732. log.Info("cb_unitDeadCallBack 跳过:" + TimeUtil.GetTimestampMS() + ", " + this.Info.ID + ", " + this.ID);
  733. return;
  734. }
  735. if(this.Virtual.GetMaType() >= 4 && this.Level > 80)
  736. {
  737. log.Info("boss死亡:" + this.mProcessDeadCallbackTime + ", 单位id=" + this.Info.ID + ", 场景Id=" +
  738. this.Parent.GetSceneID() + ", " + this.mZone.UUID + ", " + (attacker == null ? "null" : attacker.PlayerUUID));
  739. }
  740. }
  741. mDeadTime = Parent.PassTimeMS;
  742. onDead(attacker);
  743. Parent.cb_unitDeadCallBack(this, attacker);
  744. queueEvent(new UnitDeadEvent(ID, attacker.ID, source.OutIsCrush, mInfo.RebirthTimeMS));
  745. // 被击碎,秒杀 //
  746. if (source.OutIsCrush)
  747. {
  748. Parent.queueEvent(new AddEffectEvent(this.ID, X, Y, Direction, source.Attack.CrushEffect));
  749. changeState(new StateDead(this, attacker, true));
  750. }
  751. else
  752. {
  753. if (!Moveable)
  754. {
  755. changeState(new StateDead(this, attacker));
  756. }
  757. else if (source.OutHasKnockDown || source.OutHasFly)
  758. {
  759. if (!changeState(new StateDamage(this, source, attacker)))
  760. {
  761. changeState(new StateDead(this, attacker));
  762. }
  763. }
  764. else
  765. {
  766. changeState(new StateDead(this, attacker));
  767. }
  768. }
  769. doHitAttackEndEffect(attacker, source);
  770. }
  771. /// <summary>
  772. /// 死亡后自爆或者触发法术
  773. /// </summary>
  774. /// <param name="attacker"></param>
  775. /// <param name="source"></param>
  776. private void doHitAttackEndEffect(InstanceUnit attacker, AttackSource source)
  777. {
  778. if (source.Attack.Buff != null)
  779. {
  780. AddBuff(source.Attack.Buff, attacker);
  781. }
  782. if (source.Attack.Spell != null)
  783. {
  784. Parent.attackLaunchSpell(source.FromSkillType, attacker, this, source);
  785. }
  786. }
  787. // 单位获取道具
  788. protected virtual bool tryGotItem(InstanceItem item, out bool removeItem)
  789. {
  790. if (!Parent.IsVisibleAOI(this, item))
  791. {
  792. removeItem = false;
  793. return false;
  794. }
  795. if (item.Info.DropMoneyMin > 0 && item.Info.DropMoneyMax > 0)
  796. {
  797. int min = Math.Min(item.Info.DropMoneyMin, item.Info.DropMoneyMax);
  798. int max = Math.Max(item.Info.DropMoneyMin, item.Info.DropMoneyMax);
  799. int money = RandomN.Next(min, max + 1);
  800. this.CurrentMoney += money;
  801. removeItem = item.Info.RemoveOnFinishPick;
  802. return true;
  803. }
  804. if (item.Info.GotOnUse)
  805. {
  806. // 获取后立即使用 //
  807. if (UseItem(item.Info, item.ItemCreater))
  808. {
  809. removeItem = item.Info.RemoveOnFinishPick;
  810. return true;
  811. }
  812. }
  813. else
  814. {
  815. // 获取后进背包 //
  816. if (AddItemToEmptyInventory(item.Info) > 0)
  817. {
  818. removeItem = item.Info.RemoveOnFinishPick;
  819. return true;
  820. }
  821. }
  822. removeItem = false;
  823. return false;
  824. }
  825. internal bool doGotInstanceItem(InstanceItem item, out bool removeItem, out int pickTimes)
  826. {
  827. pickTimes = 0;
  828. var ret = tryGotItem(item, out removeItem);
  829. if (ret)
  830. {
  831. pickTimes = Parent.cb_unitGotInstanceItemCallBack(this, item);
  832. if (item.Info.GotEffect != null)
  833. {
  834. queueEvent(new UnitEffectEvent(ID, item.Info.GotEffect));
  835. }
  836. }
  837. return ret;
  838. }
  839. internal void doGotInventoryItem(InventorySlot slot, ItemTemplate item, int index, int count)
  840. {
  841. mFormula.OnGotInventoryItem(this, item);
  842. queueEvent(new UnitSyncInventoryItemEvent(ID, item.ID, index, slot.Count));
  843. Parent.cb_unitGotInventoryItemCallBack(this, item, count);
  844. // 添加装备Buff //
  845. if (item.EquipBuffs != null)
  846. {
  847. foreach (LaunchBuff buff in item.EquipBuffs)
  848. {
  849. AddBuff(buff, this, true);
  850. }
  851. }
  852. }
  853. internal void doLostInventoryItem(InventorySlot slot, ItemTemplate item, int index, int count)
  854. {
  855. mFormula.OnLostInventoryItem(this, item);
  856. queueEvent(new UnitSyncInventoryItemEvent(ID, item.ID, index, slot.Count));
  857. Parent.cb_unitLostInventoryItemCallBack(this, item, count);
  858. // 移除装备Buff //
  859. if (item.EquipBuffs != null)
  860. {
  861. foreach (LaunchBuff buff in item.EquipBuffs)
  862. {
  863. removeBuff(buff.BuffID);
  864. }
  865. }
  866. }
  867. // 单位获取道具
  868. internal void doGotBuff(InstanceUnit.BuffState buff)
  869. {
  870. Parent.cb_unitGotBuffCallBack(this, buff);
  871. }
  872. internal void doLostBuff(InstanceUnit.BuffState buff)
  873. {
  874. Parent.cb_unitLostBuffCallBack(this, buff);
  875. }
  876. public bool UseItem(int itemTemplateID, InstanceUnit item_creater = null)
  877. {
  878. ItemTemplate item = Templates.getItem(itemTemplateID);
  879. if (item != null)
  880. {
  881. return UseItem(item, item_creater);
  882. }
  883. return false;
  884. }
  885. public bool UseItem(ItemTemplate item, InstanceUnit item_creater = null)
  886. {
  887. if (item_creater == null)
  888. {
  889. item_creater = this;
  890. }
  891. if (tryUseItem(item, item_creater))
  892. {
  893. beginUseItem(item);
  894. // 如果关键帧绑定特效
  895. if (item.UseEffect != null)
  896. {
  897. queueEvent(new UnitEffectEvent(ID, item.UseEffect));
  898. }
  899. // 如果关键帧绑定释放法术
  900. if (item.UseSpell != null)
  901. {
  902. Parent.unitLaunchSpell(XmdsSkillType.none, item_creater, item.UseSpell, X, Y);
  903. }
  904. if (item.UseSummon != null)
  905. {
  906. Parent.unitSummonUnit(item_creater, item.UseSummon);
  907. }
  908. // 如果关键帧绑定自己释放BUFF
  909. if (item.UseBuffs != null)
  910. {
  911. foreach (LaunchBuff buff in item.UseBuffs)
  912. {
  913. this.AddBuff(buff, item_creater);
  914. }
  915. }
  916. mFormula.OnUseItem(this, item, item_creater);
  917. queueEvent(new UnitUseItemEvent(ID, item.ID));
  918. Parent.cb_unitUseItemCallBack(this, item, item_creater);
  919. Statistic.LogUseItem(item);
  920. return true;
  921. }
  922. return false;
  923. }
  924. //-----------------------------------------------------------------------------------------------------//
  925. /// <summary>
  926. /// 有伤害源的扣血
  927. /// </summary>
  928. /// <param name="hp"></param>
  929. /// <param name="attacker"></param>
  930. /// <param name="sendHit"></param>
  931. /// <param name="hitMessage"></param>
  932. public int ReduceHP(int hp, InstanceUnit attacker, bool sendHit = true, UnitHitEvent hitMessage = null,
  933. bool IngoreHealEffect = false, DamageSource dmgSrc = DamageSource.Def)
  934. {
  935. //1.目标无敌,不扣血
  936. if (IsDead() || hp == 0 || ( hp > 0 && this.IsInvincible))
  937. {
  938. return 0;
  939. }
  940. if (attacker != null)
  941. {
  942. if (hp < 0 && !IngoreHealEffect)
  943. {
  944. int healedEffect = this.Virtual.GetHealedEffect();
  945. int healEffect = (attacker.Virtual.GetUnitPro() == XmdsUnitPro.Priest) ? attacker.Virtual.GetHealEffect() : 0;
  946. if (healedEffect != 0 || healEffect != 0)
  947. {
  948. hp = CUtils.CastInt(hp * (1 + healEffect * 0.0001) * (1 + healedEffect * 0.0001));
  949. }
  950. }
  951. this.Statistic.LogDamage(attacker.Statistic, hp);
  952. }
  953. //2. 针对有发送者的伤害来源
  954. if(attacker != null)
  955. {
  956. if (hp < 0)
  957. {
  958. //2.1 传递加血事件
  959. int finalHP = hp;
  960. attacker.Virtual.DispatchAddOtherHPEvent(-hp, this, out finalHP);
  961. hp = -finalHP;
  962. //2.2 道灵对宠物加血,需要有个系数
  963. if(attacker.IsPlayer && this.IsPet && attacker.Virtual.GetUnitPro() == XmdsUnitPro.Priest)
  964. {
  965. hp = (int)(hp * XmdsConstConfig.PET_HEALD_RATIO);
  966. }
  967. }
  968. else if(this.IsPlayer)
  969. {
  970. //2.2 如果为玩家,伤害来源存在且为怪物,宠物可以分担伤害
  971. InstanceUnit petUnit = this.Virtual.GetPetUnit();
  972. if(petUnit != null)
  973. {
  974. int petShareDmg = Math.Max(1, (int)(hp * XmdsConstConfig.PET_SHARE_MASTERDMG_RATIO));
  975. hp = Math.Max(1, hp - petShareDmg);
  976. petUnit.PetShareDamage(petShareDmg, this);
  977. }
  978. }
  979. }
  980. this.DoAddHP(-hp);
  981. if (attacker != null && sendHit)
  982. {
  983. if (hitMessage == null)
  984. {
  985. hitMessage = new UnitHitEvent();
  986. }
  987. hitMessage.object_id = this.ID;
  988. hitMessage.senderId = attacker == null ? 0 : attacker.ID;
  989. hitMessage.senderMasterId = attacker == null ? 0 : attacker.Virtual.GetMasterID();
  990. hitMessage.hitMasterId = this.Virtual.GetMasterID();
  991. hitMessage.hp = hp;
  992. hitMessage.isSpecialHit = dmgSrc != DamageSource.Def;
  993. hitMessage.dmgSrc = dmgSrc;
  994. hitMessage.isDead = IsDead();
  995. queueEvent(hitMessage);
  996. }
  997. //if (IsDead())
  998. //{
  999. // changeState(new StateDead(this, attacker, false));
  1000. // Parent.cb_unitDeadCallBack(this, attacker);
  1001. // queueEvent(new UnitDeadEvent(ID, attacker == null ? 0 : attacker.ID, false, mInfo.RebirthTimeMS));
  1002. //}
  1003. return hp;
  1004. }
  1005. public void AddMP(int mp, InstanceUnit sender, bool sendMsg = true, bool force = false, AttackSource source = null)
  1006. {
  1007. if(mp == 0 || this.MaxMP <= 0)
  1008. {
  1009. return;
  1010. }
  1011. //传递扣定力事件
  1012. if (mp < 0 && sender != null)
  1013. {
  1014. int finalHP = mp;
  1015. sender.Virtual.DispatchAddMPEvent(mp, this, out finalHP, source);
  1016. mp = finalHP;
  1017. }
  1018. this.DoAddMP(mp, force);
  1019. }
  1020. public void removeFromParent()
  1021. {
  1022. Parent.RemoveObjectByID(ID);
  1023. }
  1024. public void kill(InstanceUnit killer = null, bool sendHit = true, UnitHitEvent hitMessage = null)
  1025. {
  1026. ReduceHP(this.CurrentHP, killer, sendHit, hitMessage, true);
  1027. }
  1028. virtual protected void onResetAI()
  1029. {
  1030. this.doSomething();
  1031. }
  1032. public void resetAI()
  1033. {
  1034. next_state_queue.Clear();
  1035. onResetAI();
  1036. }
  1037. public override void faceTo(float d)
  1038. {
  1039. if (Info.IsTurnable) { base.faceTo(d); }
  1040. }
  1041. public override void faceTo(float x, float y)
  1042. {
  1043. if (Info.IsTurnable) { base.faceTo(x, y); }
  1044. }
  1045. /// <summary>
  1046. /// 瞬移
  1047. /// </summary>
  1048. /// <param name="x"></param>
  1049. /// <param name="y"></param>
  1050. public void transport(float x, float y, bool setDirction = false, float direction = 0)
  1051. {
  1052. this.SetActionStatus(UnitActionStatus.Transport);
  1053. this.changeState(new StateTransport(this), true);
  1054. setPos(x, y);
  1055. if (setDirction)
  1056. {
  1057. this.faceTo(direction);
  1058. }
  1059. SendForceSync();
  1060. if (mOnRegionTransport != null)
  1061. {
  1062. mOnRegionTransport.Invoke();
  1063. }
  1064. }
  1065. //-----------------------------------------------------------------------------------------------------//
  1066. public virtual void doSomething()
  1067. {
  1068. startIdle();
  1069. }
  1070. /// <summary>
  1071. /// 单位待机
  1072. /// </summary>
  1073. public bool startIdle(bool force = false)
  1074. {
  1075. if (current_state is StateIdle)
  1076. {
  1077. }
  1078. else
  1079. {
  1080. return changeState(new StateIdle(this), force);
  1081. }
  1082. return false;
  1083. }
  1084. /// <summary>
  1085. /// 直接复活
  1086. /// </summary>
  1087. public bool startRebirth(int max_hp = 0, int max_mp = 0)
  1088. {
  1089. if (IsDead())
  1090. {
  1091. //this.DeadHide = false;
  1092. return changeState(new StateRebirth(this, max_hp, max_mp));
  1093. }
  1094. return false;
  1095. }
  1096. /// <summary>
  1097. /// 单位移动
  1098. /// </summary>
  1099. /// <param name="x"></param>
  1100. /// <param name="y"></param>
  1101. public bool startMoveTo(float x, float y)
  1102. {
  1103. return changeState(new StateMove(this, x, y));
  1104. }
  1105. /// <summary>
  1106. /// 调整射击位置
  1107. /// </summary>
  1108. /// <param name="expect_skill"></param>
  1109. /// <param name="target"></param>
  1110. /// <param name="onEndAction"></param>
  1111. public bool startAdjustLaunchSkill(SkillTemplate expect_skill, InstanceUnit target, Predicate<StateMove> onEndAction)
  1112. {
  1113. if (expect_skill.AttackKeepRange > 0 && expect_skill.AttackRange > expect_skill.AttackKeepRange)
  1114. {
  1115. float keep_range = GetSkillAttackRange(expect_skill.AttackKeepRange) + target.BodyBlockSize;
  1116. float distance = MathVector.getDistance(this.X, this.Y, target.X, target.Y);
  1117. if (distance < keep_range)
  1118. {
  1119. var half = (expect_skill.AttackRange - expect_skill.AttackKeepRange) / 2;
  1120. var md = (keep_range - distance) + (float)(RandomN.NextDouble() * half);
  1121. var target_pos = new Vector2(this.X, this.Y);
  1122. var rd = (CMath.PI_DIV_2 / 4);
  1123. var target_direction = this.Direction + CMath.PI_F - (rd / 2 + (float)(RandomN.NextDouble() * rd));
  1124. MathVector.movePolar(target_pos, target_direction, md);
  1125. if (!Parent.TryTouchMap(this, target_pos.X, target_pos.Y))
  1126. {
  1127. var back_pos = new Vector2(this.X, this.Y);
  1128. MathVector.movePolar(back_pos, target_direction, this.BodyBlockSize);
  1129. if (!Parent.TryTouchMap(this, back_pos.X, back_pos.Y))
  1130. {
  1131. var move = new StateMove(this, target_pos.X, target_pos.Y);
  1132. move.MinStepCheckCount = 0;
  1133. move.StopOnTouchMap = true;
  1134. move.EndMoveAction = onEndAction;
  1135. return this.changeState(move);
  1136. }
  1137. }
  1138. }
  1139. }
  1140. return false;
  1141. }
  1142. /// <summary>
  1143. /// 单位移动
  1144. /// </summary>
  1145. /// <param name="obj"></param>
  1146. public bool startFollowTo(InstanceZoneObject obj)
  1147. {
  1148. return changeState(new StateFollowObject(this, obj));
  1149. }
  1150. /// <summary>
  1151. /// 单位逃跑
  1152. /// </summary>
  1153. /// <param name="timeMS"></param>
  1154. /// <param name="distance"></param>
  1155. public bool startEscape(int timeMS, float distance = 0)
  1156. {
  1157. return changeState(new StateEscape(this, timeMS, distance));
  1158. }
  1159. /// <summary>
  1160. /// 和自身交互(搓炉石)
  1161. /// </summary>
  1162. /// <param name="timeMS"></param>
  1163. /// <param name="done"></param>
  1164. /// <param name="status"></param>
  1165. public StatePickObject startPickProgressSelf(int timeMS, StatePickObject.OnPickDone done, string status = null)
  1166. {
  1167. StatePickObject picking = new StatePickObject(this, this, timeMS, status, done);
  1168. changeState(picking);
  1169. return picking;
  1170. }
  1171. /// <summary>
  1172. /// 和目标交互
  1173. /// </summary>
  1174. /// <param name="item"></param>
  1175. /// <param name="timeMS"></param>
  1176. /// <param name="done"></param>
  1177. /// <param name="status"></param>
  1178. /// <returns></returns>
  1179. public StatePickObject startPickProgressObject(InstanceZoneObject item, int timeMS, StatePickObject.OnPickDone done, string status = null)
  1180. {
  1181. StatePickObject picking = new StatePickObject(this, item, timeMS, status, done);
  1182. changeState(picking);
  1183. return picking;
  1184. }
  1185. //-----------------------------------------------------------------------------------------------------------------
  1186. #region _SKILL_
  1187. //-----------------------------------------------------------------------------------------------------------------
  1188. public float GetSkillAttackRange(SkillTemplate skill, InstanceUnit targetUnit)
  1189. {
  1190. return mIsAttackRangeIncludeBodySize ? (BodyBlockSize + skill.AttackRange + targetUnit.BodyBlockSize) : skill.AttackRange;
  1191. //return mIsAttackRangeIncludeBodySize ? (BodyBlockSize + skill.AttackRange) : skill.AttackRange;
  1192. }
  1193. public float GetSkillAttackRange(SkillTemplate skill)
  1194. {
  1195. return mIsAttackRangeIncludeBodySize ? (BodyBlockSize + skill.AttackRange) : skill.AttackRange;
  1196. }
  1197. public float GetSkillAttackRange(float range)
  1198. {
  1199. return (mIsAttackRangeIncludeBodySize ? BodyBlockSize + range : range);
  1200. }
  1201. /// <summary>
  1202. /// 判断当前目标在攻击范围内
  1203. /// </summary>
  1204. /// <param name="skill"></param>
  1205. /// <param name="unit"></param>
  1206. /// <returns></returns>
  1207. public bool IsTargetInSkillRange(SkillTemplate skill, InstanceUnit unit)
  1208. {
  1209. float rg = GetSkillAttackRange(skill);
  1210. float dr = skill.AttackAngle / 2;
  1211. if (Collider.Object_HitBody_TouchFan(unit, X, Y, rg, Direction - dr, Direction + dr))
  1212. {
  1213. return true;
  1214. }
  1215. return false;
  1216. }
  1217. [Obsolete]
  1218. public List<InstanceUnit> getSkillAttackableTargets(SkillTemplate skill, AttackReason reason)
  1219. {
  1220. float rg = GetSkillAttackRange(skill);
  1221. List<InstanceUnit> list = Parent.getObjectsRoundRange<InstanceUnit>(Collider.Object_HitBody_TouchRound, X, Y, rg , this.AoiStatus);
  1222. Parent.getAttackableUnits(this, list, skill.ExpectTarget, reason, skill);
  1223. return list;
  1224. }
  1225. public void getSkillAttackableTargets(SkillTemplate skill, List<InstanceUnit> list, AttackReason reason)
  1226. {
  1227. float rg = GetSkillAttackRange(skill);
  1228. Parent.getObjectsRoundRange<InstanceUnit>(Collider.Object_HitBody_TouchRound, X, Y, rg, list, this.AoiStatus);
  1229. Parent.getAttackableUnits(this, list, skill.ExpectTarget, reason, skill);
  1230. }
  1231. /// <summary>
  1232. /// 获得可用的技能
  1233. /// </summary>
  1234. /// <param name="expect"></param>
  1235. /// <returns></returns>
  1236. public SkillState getAvailableSkill(SkillTemplate.CastTarget expect)
  1237. {
  1238. for (int si = mAllSkills.Count - 1; si >= 0; --si)
  1239. {
  1240. SkillTemplate st = mAllSkills[si];
  1241. if (st.ExpectTarget == expect)
  1242. {
  1243. SkillState sst = mSkillStatus.Get(st.GetID());
  1244. if (sst.IsActive && sst.IsDone)
  1245. {
  1246. return sst;
  1247. }
  1248. }
  1249. }
  1250. return null;
  1251. }
  1252. /** 获取当前可自动释放的技能 */
  1253. public SkillState getAvailableAutoLaunchSkill(SkillTemplate.CastTarget expect)
  1254. {
  1255. for (int si = mAllSkills.Count - 1; si >= 0; --si)
  1256. {
  1257. SkillTemplate st = mAllSkills[si];
  1258. if (st.ExpectTarget == expect)
  1259. {
  1260. SkillState sst = mSkillStatus.Get(st.GetID());
  1261. if (sst.IsActive && sst.IsDone && sst.LaunchSkill.AutoLaunch && sst.CanAutoLaunch())
  1262. {
  1263. return sst;
  1264. }
  1265. }
  1266. }
  1267. return null;
  1268. }
  1269. /// <summary>
  1270. /// 获取当前最适合攻击的目标
  1271. /// </summary>
  1272. /// <param name="skill"></param>
  1273. /// <param name="reason"></param>
  1274. /// <param name="directionChange"></param>
  1275. /// <returns></returns>
  1276. public InstanceUnit getSkillAttackableFirstTarget(SkillTemplate skill, AttackReason reason, ref bool directionChange)
  1277. {
  1278. using (var list = ListObjectPool<InstanceUnit>.AllocAutoRelease())
  1279. {
  1280. getSkillAttackableTargets(skill, list, reason);
  1281. if (list.Count > 0)
  1282. {
  1283. float rg = GetSkillAttackRange(skill);
  1284. // 检测攻击范围内的单位 //
  1285. float dr = skill.AttackAngle / 2;
  1286. for (int i = 0; i < list.Count; i++)
  1287. {
  1288. InstanceUnit u = list[i];
  1289. if (Collider.Object_HitBody_TouchFan(u, X, Y, rg, Direction - dr, Direction + dr))
  1290. {
  1291. directionChange = false;
  1292. return u;
  1293. }
  1294. }
  1295. // 优先当前朝向的目标 //
  1296. dr = CMath.PI_DIV_2;
  1297. directionChange = true;
  1298. for (int i = 0; i < list.Count; i++)
  1299. {
  1300. InstanceUnit u = list[i];
  1301. if (Collider.Object_HitBody_TouchFan(u, X, Y, rg, Direction - dr, Direction + dr))
  1302. {
  1303. return u;
  1304. }
  1305. }
  1306. // 最后选取最近的目标 //
  1307. InstanceUnit min = null;
  1308. float min_len = float.MaxValue;
  1309. for (int i = 0; i < list.Count; i++)
  1310. {
  1311. InstanceUnit u = list[i];
  1312. float len = MathVector.getDistanceSquare(u.X, u.Y, X, Y);
  1313. if (min_len > len)
  1314. {
  1315. min_len = len;
  1316. min = u;
  1317. }
  1318. }
  1319. return min;
  1320. }
  1321. }
  1322. return null;
  1323. }
  1324. public struct LaunchSkillParam
  1325. {
  1326. public uint TargetUnitID;
  1327. public Vector2 SpellTargetPos;
  1328. public bool AutoFocusNearTarget;
  1329. public bool LaunchSetDirection; // 释放时是否重新设置方向
  1330. public float direction;
  1331. public bool IsAutoLaunch; // 是否自动战斗时释放
  1332. public bool IsInGuard; // 是否是自动战斗
  1333. public LaunchSkillParam(uint targetUnitID = 0, Vector2 target_pos = null, bool autoFocusNearTarget = false,
  1334. bool LaunchSetDirection = false, float direction = 0, bool IsAutoLaunch = false, bool IsInGuard = false)
  1335. {
  1336. this.TargetUnitID = targetUnitID;
  1337. this.SpellTargetPos = target_pos;
  1338. this.AutoFocusNearTarget = autoFocusNearTarget;
  1339. this.LaunchSetDirection = LaunchSetDirection;
  1340. this.direction = direction;
  1341. this.IsAutoLaunch = IsAutoLaunch;
  1342. this.IsInGuard = IsInGuard;
  1343. }
  1344. }
  1345. public StateSkill launchSkill(SkillState ss, LaunchSkillParam param)
  1346. {
  1347. if (ss == null) return null;
  1348. StateSkill current = CurrentState as StateSkill;
  1349. if (current != null && current.SkillData.IsManuallyCancelable)
  1350. {
  1351. //如果当前技能为手动取消//
  1352. if (current.Skill.ID == ss.ID)
  1353. {
  1354. //判断停止当前技能//
  1355. if (current.IsCancelableBySkill)
  1356. {
  1357. current.block();
  1358. }
  1359. }
  1360. //手动取消技能禁止其他技能打断//
  1361. return null;
  1362. }
  1363. if (ss.TryLaunch() && mFormula.TryLaunchSkill(this, ss, ref param))
  1364. {
  1365. if(param.IsAutoLaunch && !ss.CanAutoLaunch())
  1366. {
  1367. return null;
  1368. }
  1369. //沉默不能释放其他技能//
  1370. if (IsSilent && ss != mDefaultSkill)
  1371. {
  1372. return null;
  1373. }
  1374. // 自动战斗下,释放技能要在范围内
  1375. InstanceUnit target = null;
  1376. if (ss.Data.AttackMustBeInRange)
  1377. {
  1378. target = Parent.getUnit(param.TargetUnitID);
  1379. if (!ss.checkTargetRange(target))
  1380. {
  1381. return null;
  1382. }
  1383. }
  1384. //是否在合理的攻击范围内
  1385. if(param.IsInGuard && !ss.checkTargetInAttackRange(target, param))
  1386. {
  1387. return null;
  1388. }
  1389. if (ss.GetSkillType() == XmdsSkillType.petGiveAcitve)
  1390. {
  1391. mFormula.TriggerPetSkill(this, ss, ref param);
  1392. return null;
  1393. }
  1394. StateSkill state = new StateSkill(this, ss, param, ss.ActionSpeed, (st) =>
  1395. {
  1396. overLaunchSkill(ss, st);
  1397. if (mOnLaunchSkill != null)
  1398. {
  1399. mOnLaunchSkill.Invoke(this, ss);
  1400. }
  1401. });
  1402. if (state.tryLaunch())
  1403. {
  1404. this.Virtual.SetCombatState(BattleStatus.ReadyBattle);
  1405. Parent.cb_unitLaunchSkill(this, ss);
  1406. if (changeState(state))
  1407. {
  1408. //释放成功
  1409. if (param.LaunchSetDirection)
  1410. {
  1411. //Console.WriteLine("launchSkill - 设置方向: " + param.direction + ", " + this.ID);
  1412. //this.faceTo(param.direction);
  1413. //this.SendForceSync();
  1414. }
  1415. return state;
  1416. }
  1417. }
  1418. }
  1419. return null;
  1420. }
  1421. protected virtual void overLaunchSkill(SkillState ss, StateSkill state)
  1422. {
  1423. this.AddHP(-ss.Data.CostHP, null);
  1424. this.AddMP(-ss.Data.CostMP, null);
  1425. }
  1426. /// <summary>
  1427. /// 单位释放技能
  1428. /// </summary>
  1429. public StateSkill launchSkill(int skillID, LaunchSkillParam param)
  1430. {
  1431. SkillState skill = getSkillState(skillID);
  1432. return launchSkill(skill, param);
  1433. }
  1434. /// <summary>
  1435. /// 释放随机技能,一般用于AI
  1436. /// </summary>
  1437. /// <param name="expectTarget"></param>
  1438. /// <param name="param"></param>
  1439. /// <returns></returns>
  1440. public virtual StateSkill launchRandomSkill(SkillTemplate.CastTarget expectTarget, LaunchSkillParam param)
  1441. {
  1442. StateSkill current = CurrentState as StateSkill;
  1443. if (current != null && !current.IsCancelableBySkill)
  1444. {
  1445. return null;
  1446. }
  1447. int rand = RandomN.Next(0, mAllSkills.Count);
  1448. for (int si = mAllSkills.Count - 1; si >= 0; --si)
  1449. {
  1450. SkillTemplate st = mAllSkills[CMath.cycNum(rand, si, mAllSkills.Count)];
  1451. if (st.ExpectTarget == expectTarget)
  1452. {
  1453. SkillState sst = mSkillStatus.Get(st.GetID());
  1454. if (sst.LaunchSkill.AutoLaunch && sst.TryLaunch())
  1455. {
  1456. StateSkill state = launchSkill(sst, param);
  1457. if (state != null)
  1458. {
  1459. return state;
  1460. }
  1461. }
  1462. }
  1463. }
  1464. return null;
  1465. }
  1466. public virtual StateSkill launchRandomSkillForAll(LaunchSkillParam param)
  1467. {
  1468. StateSkill current = CurrentState as StateSkill;
  1469. if (current != null && !current.IsCancelableBySkill)
  1470. {
  1471. return null;
  1472. }
  1473. int rand = RandomN.Next(0, mAllSkills.Count);
  1474. for (int si = mAllSkills.Count - 1; si >= 0; --si)
  1475. {
  1476. SkillTemplate st = mAllSkills[CMath.cycNum(rand, si, mAllSkills.Count)];
  1477. SkillState sst = mSkillStatus.Get(st.GetID());
  1478. if (sst.LaunchSkill.AutoLaunch && sst.TryLaunch())
  1479. {
  1480. StateSkill state = launchSkill(sst, param);
  1481. if (state != null)
  1482. {
  1483. return state;
  1484. }
  1485. }
  1486. }
  1487. return null;
  1488. }
  1489. /// <summary>
  1490. /// 尝试取消当前技能,打出连击
  1491. /// </summary>
  1492. /// <param name="target"></param>
  1493. /// <param name="autoFocusNearTarget"></param>
  1494. /// <returns></returns>
  1495. public virtual bool tryLaunchRandomSkillAndCancelCurrentSkill(InstanceUnit target, bool autoFocusNearTarget = false)
  1496. {
  1497. StateSkill current = CurrentState as StateSkill;
  1498. if (current != null && !current.IsChanting && current.IsCancelableBySkill)
  1499. {
  1500. LaunchSkillParam param = new LaunchSkillParam(target.ID, null, autoFocusNearTarget);
  1501. //优先多段攻击//
  1502. if (current.SkillData.IsSingleAction)
  1503. {
  1504. if (IsTargetInSkillRange(current.SkillData, target))
  1505. {
  1506. StateSkill st = launchSkill(current.SkillData.ID, param);
  1507. if (st != null)
  1508. {
  1509. return true;
  1510. }
  1511. }
  1512. }
  1513. //随机其他技能//
  1514. int rand = RandomN.Next(0, mAllSkills.Count);
  1515. for (int si = mAllSkills.Count - 1; si >= 0; --si)
  1516. {
  1517. SkillTemplate st = mAllSkills[CMath.cycNum(rand, si, mAllSkills.Count)];
  1518. if (Parent.IsAttackable(this, target, st.ExpectTarget, AttackReason.Attack, st))
  1519. {
  1520. SkillState sst = mSkillStatus.Get(st.GetID());
  1521. if (sst.LaunchSkill.AutoLaunch && IsTargetInSkillRange(st, target))
  1522. {
  1523. StateSkill state = launchSkill(sst, param);
  1524. if (state != null)
  1525. {
  1526. return true;
  1527. }
  1528. }
  1529. }
  1530. }
  1531. }
  1532. return false;
  1533. }
  1534. /// <summary>
  1535. /// 尝试在范围内找到目标释放技能,并进入StateFollowAndAttack,自己走过去打。
  1536. /// </summary>
  1537. /// <param name="range"></param>
  1538. /// <param name="skill_auto_launchable"></param>
  1539. /// <returns></returns>
  1540. public virtual bool tryFollowAndLaunchRandomSkillToTargetInRange(float range, bool skill_auto_launchable = false)
  1541. {
  1542. if (!IsNoneSkill)
  1543. {
  1544. SkillState[] skills = mSkillStatus.SkillsArray;
  1545. CUtils.RandomArray(RandomN, skills);
  1546. using (var list = ListObjectPool<InstanceUnit>.AllocAutoRelease())
  1547. {
  1548. //随机找个目标施法//
  1549. Parent.getObjectsRoundRange<InstanceUnit>(Collider.Object_Pos_IncludeInRound, X, Y, Info.GuardRange, list , this.AoiStatus);
  1550. DoAndRemoveCollection.UpdateAndRemove<InstanceUnit>(list, (InstanceUnit u) =>
  1551. {
  1552. return !u.IsActive;
  1553. });
  1554. if (list.Count == 0) { return false; }
  1555. CUtils.RandomList(Parent.RandomN, list);
  1556. foreach (SkillState skill in skills)
  1557. {
  1558. if ((!skill_auto_launchable || skill.LaunchSkill.AutoLaunch) && skill.TryLaunch())
  1559. {
  1560. for (int i = 0; i < list.Count; i++)
  1561. {
  1562. InstanceUnit u = list[i];
  1563. if (Parent.IsAttackable(this, u, skill.Data.ExpectTarget, AttackReason.Attack, skill.Data))
  1564. {
  1565. //检测是否有可释放技能//
  1566. changeState(new StateFollowAndAttack(this, u, skill.Data.ExpectTarget));
  1567. return true;
  1568. }
  1569. }
  1570. }
  1571. }
  1572. }
  1573. }
  1574. return false;
  1575. }
  1576. #endregion
  1577. //-----------------------------------------------------------------------------------------------------------------
  1578. internal void deadDropItems(int force)
  1579. {
  1580. foreach (KeyValuePair<ItemTemplate, DropItem> e in mDropItems.Drop(Parent, Parent.RandomN))
  1581. {
  1582. float x;
  1583. float y;
  1584. CMath.RandomPosInRound(RandomN, X, Y, e.Value.DropPosRange, out x, out y);
  1585. Parent.AddItem(e.Key, e.Key.Name, x, y, CMath.RandomAngle(RandomN), force, e.Key.Name, this);
  1586. }
  1587. }
  1588. protected bool tryPickObject(InstanceUnit unit)
  1589. {
  1590. if (!Parent.IsVisibleAOI(this, unit))
  1591. {
  1592. return false;
  1593. }
  1594. bool ret = true;
  1595. if (mOnTryPickUnit != null)
  1596. {
  1597. foreach (TryPickUnitHandler trypick in mOnTryPickUnit.GetInvocationList())
  1598. {
  1599. if (!trypick.Invoke(this, unit))
  1600. {
  1601. ret = false;
  1602. }
  1603. }
  1604. }
  1605. return ret;
  1606. }
  1607. public void PickUnit(InstanceUnit pickable)
  1608. {
  1609. if (tryPickObject(pickable))
  1610. {
  1611. Parent.cb_unitPickUnitCallBack(this, pickable);
  1612. if (mOnPickUnit != null)
  1613. {
  1614. mOnPickUnit.Invoke(this, pickable);
  1615. }
  1616. }
  1617. }
  1618. public CommonAI.Data.SceneType GetSceneType()
  1619. {
  1620. return mZone.SceneType;
  1621. }
  1622. //-----------------------------------------------------------------------------------------------------//
  1623. #region Environment
  1624. //-----------------------------------------------------------------------------------------------------//
  1625. private HashMap<string, EnvironmentVar> EnvironmentVarMap = new HashMap<string, EnvironmentVar>();
  1626. public void SetEnvironmentVar(string key, object value, bool syncToClient = false)
  1627. {
  1628. if (!string.IsNullOrEmpty(key))
  1629. {
  1630. EnvironmentVar var = EnvironmentVarMap.Get(key);
  1631. if (var != null)
  1632. {
  1633. if (EnvironmentVar.ALWAYS_SYNC_ENVIRONMENT_VAR || (var.SyncToClient && var.Value != value))
  1634. {
  1635. queueEvent(new PlayerSyncEnvironmentVarEvent(ID, key, value));
  1636. }
  1637. var.Value = value;
  1638. }
  1639. else
  1640. {
  1641. var = new EnvironmentVar(key, syncToClient, value);
  1642. EnvironmentVarMap.Add(key, var);
  1643. if (EnvironmentVar.ALWAYS_SYNC_ENVIRONMENT_VAR || var.SyncToClient)
  1644. {
  1645. queueEvent(new PlayerSyncEnvironmentVarEvent(ID, key, value));
  1646. }
  1647. }
  1648. }
  1649. }
  1650. public T GetEnvironmentVarAs<T>(string key)
  1651. {
  1652. if (!string.IsNullOrEmpty(key))
  1653. {
  1654. EnvironmentVar var = EnvironmentVarMap.Get(key);
  1655. if (var != null)
  1656. {
  1657. try
  1658. {
  1659. return (T)var.Value;
  1660. }
  1661. catch (Exception err)
  1662. {
  1663. log.Warn("GetEnvironmentVarAs : " + key + ", catch: " + err);
  1664. }
  1665. }
  1666. }
  1667. return default(T);
  1668. }
  1669. public int ListEnvironmentVars(List<EnvironmentVar> list)
  1670. {
  1671. list.AddRange(EnvironmentVarMap.Values);
  1672. return EnvironmentVarMap.Count;
  1673. }
  1674. public List<EnvironmentVar> ListEnvironmentVars()
  1675. {
  1676. return new List<EnvironmentVar>(EnvironmentVarMap.Values);
  1677. }
  1678. public ClientStruct.ZoneEnvironmentVar[] GetCurrentUnitVars()
  1679. {
  1680. ClientStruct.ZoneEnvironmentVar[] ret = new ClientStruct.ZoneEnvironmentVar[EnvironmentVarMap.Count];
  1681. int i = 0;
  1682. try
  1683. {
  1684. foreach (EnvironmentVar var in EnvironmentVarMap.Values)
  1685. {
  1686. ret[i].Key = var.Key;
  1687. ret[i].Value = var.Value;
  1688. ret[i].SyncToClient = var.SyncToClient;
  1689. i++;
  1690. }
  1691. }
  1692. catch(Exception e)
  1693. {
  1694. log.Warn("GetCurrentUnitVars catch: " + ret.Length + ", " + EnvironmentVarMap.Count + ", " + i + ", e: " + e);
  1695. }
  1696. return ret;
  1697. }
  1698. #endregion
  1699. //-----------------------------------------------------------------------------------------------------//
  1700. //-----------------------------------------------------------------------------------------------------//
  1701. #region SceneEvents
  1702. //-----------------------------------------------------------------------------------------------------//
  1703. private HashMap<int, UnitEventTriggerCollection> mBindEvents = new HashMap<int, UnitEventTriggerCollection>();
  1704. public void BindUnitEvent(int unit_event_id)
  1705. {
  1706. if (!mBindEvents.ContainsKey(unit_event_id))
  1707. {
  1708. UnitEventTemplate uet = Templates.getUnitEvent(unit_event_id);
  1709. if (uet != null)
  1710. {
  1711. uet = uet.Clone() as UnitEventTemplate;
  1712. UnitEventTriggerCollection bind_event = new UnitEventTriggerCollection(this);
  1713. bind_event.Bind(uet.Events);
  1714. mBindEvents.Add(unit_event_id, bind_event);
  1715. }
  1716. }
  1717. }
  1718. protected virtual void clearBindEvents()
  1719. {
  1720. foreach (var evt in mBindEvents.Values)
  1721. {
  1722. evt.Dispose();
  1723. }
  1724. mBindEvents.Clear();
  1725. }
  1726. /** 计算并获得伤害 */
  1727. public virtual void PetShareDamage(int baseDmgValue, InstanceUnit sender)
  1728. {
  1729. }
  1730. #endregion
  1731. //-----------------------------------------------------------------------------------------------------//
  1732. //-----------------------------------------------------------------------------------------------------//
  1733. }
  1734. }