InstanceUnit.API.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. using CommonAI.Data;
  2. using CommonAI.Zone.Formula;
  3. using CommonAI.Zone.Helper;
  4. using CommonAI.ZoneClient;
  5. using CommonAI.ZoneServer.JSGModule;
  6. using CommonLang.Property;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Diagnostics;
  10. using System.Text;
  11. namespace CommonAI.Zone.Instance
  12. {
  13. partial class InstanceUnit
  14. {
  15. //-----------------------------------------------------------------------------------------------------------
  16. #region _sync_fields_
  17. protected readonly SyncUnitInfo mSyncInfo;
  18. private UnitFieldChangedEvent mSyncFields;
  19. private int m_dummy_0, m_dummy_1, m_dummy_2, m_dummy_3, m_dummy_4, m_dummy_5, m_dummy_6;
  20. //是否触发过破碎效果
  21. private bool isTriggerBroken = false;
  22. public void SetMaxHP(int value, bool auto_update_hp = false)
  23. {
  24. if (__mCurrentHP.SetMax(value, auto_update_hp))
  25. {
  26. syncFields(UnitFieldChangedEvent.MASK_HP | UnitFieldChangedEvent.MASK_MAX_HP);
  27. }
  28. }
  29. [DescAttribute("最大血量")]
  30. public int MaxHP
  31. {
  32. get { return __mCurrentHP.Max; }
  33. set
  34. {
  35. if (__mCurrentHP.SetMax(value, true))
  36. {
  37. syncFields(UnitFieldChangedEvent.MASK_HP | UnitFieldChangedEvent.MASK_MAX_HP);
  38. }
  39. }
  40. }
  41. [DescAttribute("最大能量")]
  42. public int MaxMP
  43. {
  44. get { return __mCurrentMP.Max; }
  45. set
  46. {
  47. if (__mCurrentMP.SetMax(value, true))
  48. {
  49. syncFields(UnitFieldChangedEvent.MASK_MP | UnitFieldChangedEvent.MASK_MAX_MP);
  50. }
  51. }
  52. }
  53. [DescAttribute("当前血量")]
  54. public int CurrentHP
  55. {
  56. get { return __mCurrentHP.Value; }
  57. set
  58. {
  59. if (!IsDead() && __mCurrentHP.SetValue(value))
  60. {
  61. syncFields(UnitFieldChangedEvent.MASK_HP);
  62. }
  63. }
  64. }
  65. [DescAttribute("当前能量")]
  66. public int CurrentMP
  67. {
  68. get { return __mCurrentMP.Value; }
  69. set
  70. {
  71. if (!IsDead() && __mCurrentMP.SetValue(value))
  72. {
  73. syncFields(UnitFieldChangedEvent.MASK_MP);
  74. }
  75. }
  76. }
  77. [DescAttribute("当前血量百分比")]
  78. public float CurrentHP_Pct { get { return __mCurrentHP.Value * 100f / __mCurrentHP.Max; } }
  79. [DescAttribute("当前能量百分比")]
  80. public float CurrentMP_Pct { get { return __mCurrentMP.Value * 100f / __mCurrentMP.Max; } }
  81. [DescAttribute("当前金币")]
  82. public int CurrentMoney
  83. {
  84. get { return mMoney; }
  85. set
  86. {
  87. if (mMoney != value)
  88. {
  89. int add = value - mMoney;
  90. mMoney = value;
  91. syncFields(UnitFieldChangedEvent.MASK_MONEY);
  92. Parent.cb_unitGotMoneyCallBack(this, add);
  93. }
  94. }
  95. }
  96. [DescAttribute("当前等级")]
  97. public int Level
  98. {
  99. get { return mLevel; }
  100. set
  101. {
  102. if (mLevel != value)
  103. {
  104. mLevel = value;
  105. syncFields(UnitFieldChangedEvent.MASK_LEVEL);
  106. }
  107. }
  108. }
  109. [DescAttribute("单位职业")]
  110. public int UnitPro()
  111. {
  112. return (int)this.Virtual.GetUnitPro();
  113. }
  114. [DescAttribute("性别0-男1-女")]
  115. public int UnitSex()
  116. {
  117. return (int)this.Virtual.GetUnitSex();
  118. }
  119. [DescAttribute("玩家职业")]
  120. public int PlayerPro()
  121. {
  122. if (this.IsPlayer)
  123. {
  124. return (int)this.Virtual.GetUnitPro();
  125. }
  126. return 0;
  127. }
  128. private void DoAddHP(int hp)
  129. {
  130. if (!IsDead())
  131. {
  132. if (__mCurrentHP.Add(hp))
  133. {
  134. syncFields(UnitFieldChangedEvent.MASK_HP);
  135. // 触发破碎效果
  136. if (this.Info.HitBreakPrecent > 0 && !this.isTriggerBroken)
  137. {
  138. int precent = (int)((double)this.CurrentHP / this.MaxHP * 100);
  139. if (precent <= this.Info.HitBreakPrecent)
  140. {
  141. //Console.WriteLine("触发破碎");
  142. this.isTriggerBroken = true;
  143. UnitHitBreak hitBreak = new UnitHitBreak(this.ID);
  144. this.Parent.queueObjectEvent(this, hitBreak);
  145. }
  146. }
  147. }
  148. }
  149. }
  150. private void DoAddMP(int mp, bool force = false)
  151. {
  152. if (IsDead() || (mp < 0 && !this.Virtual.IsCanReduceMP(force)))
  153. {
  154. return;
  155. }
  156. if (__mCurrentMP.Add(mp))
  157. {
  158. syncFields(UnitFieldChangedEvent.MASK_MP);
  159. //进入破定状态
  160. if (__mCurrentMP.Value == 0 && this.CurrentActionStatus != UnitActionStatus.BreakShield)
  161. {
  162. this.changeState(new StateBreakShield(this), true);
  163. }
  164. //System.Console.WriteLine("更新定力值:" + this.Info.Name + ", " + __mCurrentMP.Value);
  165. }
  166. }
  167. public void AddSP(int st)
  168. {
  169. // if (!IsDead)
  170. // {
  171. // if (__mCurrentSP.Add(st))
  172. // {
  173. // syncFields(UnitFieldChangedEvent.MASK_SP);
  174. // }
  175. // }
  176. }
  177. public int AddHP(int hp, InstanceUnit sender, bool sendHit = true, AttackSource source = null)
  178. {
  179. int finalHP = ReduceHP(-hp, sender, sendHit);
  180. //排除怪物回血
  181. #if JSG_DMG_LOG
  182. int atkPropID = (source == null || source.Attack == null || source.Attack.Properties == null) ? 0 : source.Attack.Properties.GetAttackID();
  183. if (atkPropID != 9999901 && (finalHP < -100000000 || finalHP > 100000000) && !(this.IsMonster && hp == this.MaxHP))
  184. {
  185. string stackInfo = new StackTrace().ToString();
  186. log.Error("伤害异常: " + finalHP + ", ID" + this.Info.ID + ", " + (sender == null ? "-1" : sender.PlayerUUID)
  187. + JSGModule.GetAttackSourceDes(source) + ", " + stackInfo);
  188. }
  189. #endif
  190. return finalHP;
  191. }
  192. public void AddHP_Pct(float percent, InstanceUnit sender)
  193. {
  194. AddHP((int)(percent / 100f * MaxHP), sender);
  195. }
  196. /// <summary>
  197. /// 直接设置移动速度
  198. /// </summary>
  199. /// <param name="speed"></param>
  200. public void SetMoveSpeed(float speed)
  201. {
  202. if (speed < 0)
  203. {
  204. speed = 0;
  205. }
  206. if (speed != __mCurrentMoveSpeedSEC)
  207. {
  208. __mCurrentMoveSpeedSEC = speed;
  209. syncFields(UnitFieldChangedEvent.MASK_SPEED);
  210. }
  211. }
  212. /// <summary>
  213. /// 直接设置攻速
  214. /// </summary>
  215. /// <param name="speed"></param>
  216. public void SetAttackSpeed(int speed)
  217. {
  218. if (speed <= 0)
  219. {
  220. speed = GlobalData.DEFAULT_ATTACK_SPEED;
  221. }
  222. if (speed != __mCurrentAttackSpeed)
  223. {
  224. __mCurrentAttackSpeed = speed;
  225. }
  226. }
  227. public int GetAttackSpeed()
  228. {
  229. return this.__mCurrentAttackSpeed;
  230. }
  231. /// <summary>
  232. /// 直接设置当前技能cd减少
  233. /// </summary>
  234. /// <param name="value"></param>
  235. public void SetSkillCdReduce(float value)
  236. {
  237. if (value < 0)
  238. {
  239. value = 0;
  240. }
  241. if (value != __mCurrentSkillCdReduce)
  242. {
  243. __mCurrentSkillCdReduce = value;
  244. syncFields(UnitFieldChangedEvent.MASK_SKILL_CD_ACC);
  245. }
  246. }
  247. /// <summary>
  248. /// 直接设置受到控制效果的持续时间减少
  249. /// </summary>
  250. /// <param name="value"></param>
  251. public void SetControledTimeReduce(float value)
  252. {
  253. if (value < 0)
  254. {
  255. value = 0;
  256. }
  257. if (value != __mCurrentControledTimeReduce)
  258. {
  259. __mCurrentControledTimeReduce = value;
  260. syncFields(UnitFieldChangedEvent.MASK_CONTROLED_ACC);
  261. }
  262. }
  263. public void SetControledTimeAdd(float value)
  264. {
  265. if (value < 0)
  266. {
  267. value = 0;
  268. }
  269. if (value != __mControledTimeAdd)
  270. {
  271. __mControledTimeAdd = value;
  272. syncFields(UnitFieldChangedEvent.MASK_CONTROLED_ACC);
  273. }
  274. }
  275. /// <summary>
  276. /// 设置所有技能动作速度加成
  277. /// </summary>
  278. /// <param name="rate"></param>
  279. public void SetSkillActionSpeedRate(float rate)
  280. {
  281. if (rate < 0)
  282. {
  283. rate = 0;
  284. }
  285. if (rate != __mSkillActionSpeedRate)
  286. {
  287. __mSkillActionSpeedRate = rate;
  288. }
  289. }
  290. /** 是否满血 */
  291. public bool IsFullHP()
  292. {
  293. return this.CurrentHP == this.MaxHP;
  294. }
  295. /// <summary>
  296. /// 设置当前快速施法速度(基准0)(1是1倍速)
  297. /// </summary>
  298. /// <param name="fcr"></param>
  299. public void SetFastCastRate(float fcr)
  300. {
  301. if (mFastCastRate != fcr)
  302. {
  303. mFastCastRate = fcr;
  304. syncFields(UnitFieldChangedEvent.MASK_FCR);
  305. }
  306. }
  307. public int Dummy_0
  308. {
  309. get { return m_dummy_0; }
  310. set
  311. {
  312. if (m_dummy_0 != value)
  313. {
  314. m_dummy_0 = value;
  315. syncFields(UnitFieldChangedEvent.MASK_DUMMY_0);
  316. }
  317. }
  318. }
  319. public int Dummy_1
  320. {
  321. get { return m_dummy_1; }
  322. set
  323. {
  324. if (m_dummy_1 != value)
  325. {
  326. m_dummy_1 = value;
  327. syncFields(UnitFieldChangedEvent.MASK_DUMMY_1);
  328. }
  329. }
  330. }
  331. public int Dummy_2
  332. {
  333. get { return m_dummy_2; }
  334. set
  335. {
  336. if (m_dummy_2 != value)
  337. {
  338. m_dummy_2 = value;
  339. syncFields(UnitFieldChangedEvent.MASK_DUMMY_2);
  340. }
  341. }
  342. }
  343. public int Dummy_3
  344. {
  345. get { return m_dummy_3; }
  346. set
  347. {
  348. if (m_dummy_3 != value)
  349. {
  350. m_dummy_3 = value;
  351. syncFields(UnitFieldChangedEvent.MASK_DUMMY_3);
  352. }
  353. }
  354. }
  355. public int Dummy_4
  356. {
  357. get { return m_dummy_4; }
  358. set
  359. {
  360. if (m_dummy_4 != value)
  361. {
  362. m_dummy_4 = value;
  363. syncFields(UnitFieldChangedEvent.MASK_DUMMY_4);
  364. }
  365. }
  366. }
  367. public int Dummy_5
  368. {
  369. get { return m_dummy_5; }
  370. set
  371. {
  372. if (m_dummy_5 != value)
  373. {
  374. m_dummy_5 = value;
  375. syncFields(UnitFieldChangedEvent.MASK_DUMMY_5);
  376. }
  377. }
  378. }
  379. public void syncFields(uint mask)
  380. {
  381. if (mSyncFields == null)
  382. {
  383. mSyncFields = new UnitFieldChangedEvent();
  384. }
  385. mSyncFields.mask |= mask;
  386. }
  387. private void updateSyncFields()
  388. {
  389. if (mSyncFields != null)
  390. {
  391. GenSyncFields(mSyncFields);
  392. queueEvent(mSyncFields);
  393. mSyncFields = null;
  394. }
  395. }
  396. public void GenSyncFields(UnitFieldChangedEvent sync)
  397. {
  398. sync.currentHP = __mCurrentHP.Value;
  399. sync.currentMP = __mCurrentMP.Value;
  400. sync.maxHP = __mCurrentHP.Max;
  401. sync.maxMP = __mCurrentMP.Max;
  402. sync.maxSP = 0;
  403. sync.currentSP = 0;
  404. sync.currentSpeed = __mCurrentMoveSpeedSEC;
  405. sync.currentFCR = mFastCastRate;
  406. sync.currentMoney = mMoney;
  407. sync.level = mLevel;
  408. sync.dummy_0 = m_dummy_0;
  409. sync.dummy_1 = m_dummy_1;
  410. sync.dummy_2 = m_dummy_2;
  411. sync.dummy_3 = m_dummy_3;
  412. sync.dummy_4 = m_dummy_4;
  413. sync.dummy_5 = m_dummy_5;
  414. }
  415. public override SyncObjectInfo GenSyncInfo(bool net)
  416. {
  417. return GenSyncUnitInfo(net);
  418. }
  419. public SyncUnitInfo GenSyncUnitInfo(bool net = false)
  420. {
  421. mSyncInfo.status = (byte)CurrentActionStatus;
  422. mSyncInfo.sub_status = (byte)CurrentActionSubstate;
  423. mSyncInfo.sub_flag = mSubStateExt;
  424. mSyncInfo.Force = mForce;
  425. mSyncInfo.Level = mLevel;
  426. mSyncInfo.x = X;
  427. mSyncInfo.y = Y;
  428. mSyncInfo.direction = this.Direction;
  429. if (net)
  430. {
  431. mSyncInfo.CurrentBuffStatus = this.GetCurrentBuffStatus();
  432. mSyncInfo.fields.mask = UnitFieldChangedEvent.MASK_ALL;
  433. GenSyncFields(mSyncInfo.fields);
  434. }
  435. return mSyncInfo;
  436. }
  437. /// <summary>
  438. /// 设置单位显示信息
  439. /// </summary>
  440. /// <param name="visible_data"></param>
  441. public void SetVisibleInfo(IUnitVisibleData visible_data)
  442. {
  443. mSyncInfo.VisibleInfo = visible_data;
  444. }
  445. public void SetDiaplayerName(String name)
  446. {
  447. if (mSyncInfo.VisibleInfo != null)
  448. {
  449. mSyncInfo.VisibleInfo.setVisibleName(name);
  450. }
  451. this.mSyncInfo.Name = name;
  452. }
  453. public override String GetTemplateData()
  454. {
  455. return "Unit:" + this.mInfo.ID;
  456. }
  457. //设置自动拾取范围
  458. public virtual void SetAutoPickRange(int value) { }
  459. #endregion
  460. //-----------------------------------------------------------------------------------------------------------
  461. #region script_support
  462. public string get_name()
  463. {
  464. return mName;
  465. }
  466. public int get_force()
  467. {
  468. return mForce;
  469. }
  470. public int get_level()
  471. {
  472. return mLevel;
  473. }
  474. public bool is_dead()
  475. {
  476. return IsDead();
  477. }
  478. public bool is_enable()
  479. {
  480. return Enable;
  481. }
  482. public bool is_paused()
  483. {
  484. return IsPaused;
  485. }
  486. public bool is_none_block()
  487. {
  488. return IsNoneBlock;
  489. }
  490. public bool is_none_skill()
  491. {
  492. return IsNoneSkill;
  493. }
  494. public uint get_id()
  495. {
  496. return ID;
  497. }
  498. public UnitInfo get_info()
  499. {
  500. return mInfo;
  501. }
  502. public Random get_random()
  503. {
  504. return RandomN;
  505. }
  506. public float get_x()
  507. {
  508. return X;
  509. }
  510. public float get_y()
  511. {
  512. return Y;
  513. }
  514. public float get_direction()
  515. {
  516. return Direction;
  517. }
  518. public float set_direction(float d)
  519. {
  520. this.faceTo(d);
  521. return d;
  522. }
  523. public string get_unit_tag()
  524. {
  525. return UnitTag;
  526. }
  527. public string set_unit_tag(string str)
  528. {
  529. UnitTag = str;
  530. return str;
  531. }
  532. public int get_max_hp()
  533. {
  534. return MaxHP;
  535. }
  536. public int set_max_hp(int max)
  537. {
  538. MaxHP = max;
  539. return max;
  540. }
  541. public int get_max_mp()
  542. {
  543. return MaxMP;
  544. }
  545. //public int set_max_mp(int mp)
  546. //{
  547. // MaxMP = mp;
  548. // return mp;
  549. //}
  550. public int get_current_hp()
  551. {
  552. return __mCurrentHP.Value;
  553. }
  554. public int set_current_hp(int hp)
  555. {
  556. CurrentHP = hp;
  557. return hp;
  558. }
  559. public int get_current_mp()
  560. {
  561. return __mCurrentMP.Value;
  562. }
  563. //public int set_current_mp(int mp)
  564. //{
  565. // CurrentMP = mp;
  566. // return mp;
  567. //}
  568. public int set_level(int lv)
  569. {
  570. Level = lv;
  571. return lv;
  572. }
  573. //public void add_mp(int mp)
  574. //{
  575. // AddMP(mp);
  576. //}
  577. public void add_hp(int hp)
  578. {
  579. AddHP(hp, this);
  580. }
  581. public void add_sp(int sp)
  582. {
  583. AddSP(sp);
  584. }
  585. public void add_buff(int buffID)
  586. {
  587. AddBuff(buffID);
  588. }
  589. public void clear_buff()
  590. {
  591. clearBuffs();
  592. }
  593. public void use_item(int itemTemplateID)
  594. {
  595. ItemTemplate item = Templates.getItem(itemTemplateID);
  596. if (item != null)
  597. {
  598. UseItem(item);
  599. }
  600. }
  601. #endregion
  602. }
  603. }