InstanceUnit.cs 67 KB

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