ZoneObject.Unit.cs 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841
  1. using CommonAI.RTS;
  2. using CommonLang.Vector;
  3. using CommonAI.Zone;
  4. using CommonAI.Zone.Attributes;
  5. using CommonAI.Zone.Helper;
  6. using CommonLang;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using CommonAI.Zone.Formula;
  12. using System.Collections;
  13. using CommonAI.ZoneClient.Agent;
  14. namespace CommonAI.ZoneClient
  15. {
  16. public partial class ZoneUnit : ZoneObject
  17. {
  18. public readonly SyncUnitInfo SyncInfo;
  19. public readonly UnitInfo Info;
  20. public readonly bool IsAttackRangeIncludeBodySize;
  21. // Status
  22. private int mHP;
  23. private int mMP;
  24. private int mSP;
  25. private int mMaxHP;
  26. private int mMaxMP;
  27. private int mMaxSP;
  28. private float mMoveSpeedSEC;
  29. private float mFastCastRate;
  30. private int mMoney;
  31. private string mName;
  32. private string mDisplayName;
  33. public string TemplateName { get { return Info.Name; } }
  34. public int TemplateID { get { return Info.ID; } }
  35. public override string Name { get { return mName; } }
  36. public override string DisplayName { get { return mDisplayName; } }
  37. public float BodySize { get { return Info.BodySize; } }
  38. public float BodyHitSize { get { return Info.BodyHitSize; } }
  39. public override float RadiusSize { get { return BodySize; } }
  40. public string Alias { get { return SyncInfo.Alias; } }
  41. public int Force { get { return SyncInfo.Force; } }
  42. public int HP { get { return mHP; } }
  43. public int MP { get { return mMP; } }
  44. public int SP { get { return mSP; } }
  45. public int MaxHP { get { return mMaxHP; } }
  46. public int MaxMP { get { return mMaxMP; } }
  47. public int MaxSP { get { return mMaxSP; } }
  48. public float MoveSpeedSEC { get { return mMoveSpeedSEC; } }
  49. public float TurnSpeedSEC { get { return mTurnSpeedSEC; } set { mTurnSpeedSEC = value; } }
  50. public float FastCastRate { get { return mFastCastRate; } }
  51. public int Money { get { return mMoney; } }
  52. public string PlayerUUID { get { return SyncInfo.PlayerUUID; } }
  53. public int Level { get { return SyncInfo.Level; } }
  54. public int Dummy_0 { get; private set; }
  55. public int Dummy_1 { get; private set; }
  56. public int Dummy_2 { get; private set; }
  57. public int Dummy_3 { get; private set; }
  58. public int Dummy_4 { get; private set; }
  59. public int Dummy_5 { get; private set; }
  60. public bool IsTurning
  61. {
  62. get { return mDirectionChange != mDirection; }
  63. }
  64. override public float Direction
  65. {
  66. get { return mDirection; }
  67. internal set
  68. {
  69. mDirectionChange = value;
  70. if (Info.UType == UnitInfo.UnitType.TYPE_BUILDING)
  71. {
  72. mDirection = value;
  73. }
  74. }
  75. }
  76. public float ServerDirection { get { return mDirectionChange; } }
  77. public override float X { get { return mLocalPos.X; } }
  78. public override float Y { get { return mLocalPos.Y; } }
  79. public override bool TouchObj { get { return (mTouchObj) && (CurrentState != UnitActionStatus.Dead) && (mHP > 0); } }
  80. public override bool TouchMap { get { return mTouchMap; } }
  81. public bool IsStaticBlockable { get { return mIsStaticBlockable; } }
  82. virtual public bool IsActive { get { return (HP > 0); } }
  83. private bool mTouchObj;
  84. private bool mTouchMap;
  85. private bool mIsStaticBlockable;
  86. protected float mDirectionChange;
  87. protected float mTurnSpeedSEC;
  88. protected Vector2 mLocalPos = new Vector2();
  89. protected SyncPosEvent.UnitState mRemoteState;
  90. private State<UnitActionStatus> mState = new State<UnitActionStatus>(UnitActionStatus.Idle);
  91. private State<byte> mSubState = new State<byte>(0);
  92. protected HashMap<string, object> mEnvironmentVarMap = new HashMap<string, object>();
  93. private IVirtualClientUnit mVirtual;
  94. //新增技能Move标记(本地预演)
  95. protected bool mIsSkillMove;
  96. public IVirtualClientUnit Virtual { get { return mVirtual; } }
  97. public UnitActionStatus CurrentState
  98. {
  99. get { return mState.Value; }
  100. }
  101. public byte CurrentSubState
  102. {
  103. get { return mSubState.Value; }
  104. }
  105. public ZoneUnit(UnitInfo info, SyncUnitInfo syn, ZoneLayer parent, AddUnitEvent add)
  106. : base(syn.ObjectID, parent)
  107. {
  108. this.SyncInfo = syn;
  109. this.mName = syn.Name;
  110. this.mDisplayName = TemplateManager.Factory.ToClientDisplayName(info, syn);
  111. this.Info = info;
  112. this.IsAttackRangeIncludeBodySize = parent.Templates.CFG.OBJECT_ATTACK_RANGE_INCLUDE_BODYSIZE;
  113. this.mPos.SetX(syn.x);
  114. this.mPos.SetY(syn.y);
  115. this.mMoveSpeedSEC = info.MoveSpeedSEC;
  116. this.mTurnSpeedSEC = float.IsNaN(info.TurnSpeedSEC) ? Templates.CFG.UNIT_TURN_SPEED_SEC : info.TurnSpeedSEC;
  117. this.mFastCastRate = 0;
  118. this.mLocalPos.SetX(syn.x);
  119. this.mLocalPos.SetY(syn.y);
  120. this.mDirection = this.mDirectionChange = syn.direction;
  121. this.mIsStaticBlockable = syn.IsStaticBlockable;
  122. this.mTouchObj = syn.IsTouchObj;
  123. this.mTouchMap = syn.IsTouchMap;
  124. this.mState.ChangeState((UnitActionStatus)syn.status);
  125. this.mSubState.ChangeState(syn.sub_status);
  126. this.mRemoteState.UnitMainState = (UnitActionStatus)syn.status;
  127. this.mRemoteState.UnitSubState = syn.sub_status;
  128. switch (Info.UType)
  129. {
  130. case UnitInfo.UnitType.TYPE_PET:
  131. case UnitInfo.UnitType.TYPE_TRIGGER:
  132. mTouchObj = false;
  133. break;
  134. case UnitInfo.UnitType.TYPE_BUILDING:
  135. mTouchObj = (info.BodySize > 0);
  136. break;
  137. }
  138. DoSync(syn.fields);
  139. InitSkills();
  140. //this.mVirtual = TemplateManager.Factory.CreateClientUnitVirtual(this);
  141. }
  142. public void SendPlayPetTeleport()
  143. {
  144. Parent.SendAction(new PlayPetTeleportAction());
  145. }
  146. protected override void Disposing()
  147. {
  148. base.Disposing();
  149. this.clearEvents();
  150. /*if (mVirtual != null)
  151. {
  152. mVirtual.OnDispose(this);
  153. }
  154. this.mVirtual = null;*/
  155. this.mBuffStatus.Clear();
  156. this.mChantingSkill = null;
  157. this.mCurrentSkillAction = null;
  158. this.mDamageTime = null;
  159. this.mHitFlyState = null;
  160. this.mLastLaunchSkill = null;
  161. this.mPickEvent = null;
  162. this.mEnvironmentVarMap.Clear();
  163. this.mSkillStatus.Clear();
  164. }
  165. protected internal override void OnAdded()
  166. {
  167. /*if (mVirtual != null)
  168. {
  169. mVirtual.OnInit(this);
  170. }*/
  171. this.SyncBuffStatus(SyncInfo.CurrentBuffStatus);
  172. base.OnAdded();
  173. }
  174. //--------------------------------------------------------------------------------
  175. #region State
  176. public override void SetClientLocalCurrentState(UnitActionStatus state, object evt)
  177. {
  178. this.SetCurrentState(state);
  179. }
  180. protected void SetCurrentState(ref SyncPosEvent.UnitState pos)
  181. {
  182. this.SetCurrentState(pos.UnitMainState, pos.UnitSubState, null);
  183. }
  184. protected void SetCurrentState(UnitActionStatus state)
  185. {
  186. this.SetCurrentState(state, CurrentSubState, null);
  187. }
  188. protected void SetCurrentState(UnitActionStatus state, object evt)
  189. {
  190. this.SetCurrentState(state, CurrentSubState, evt);
  191. }
  192. protected void SetCurrentState(UnitActionStatus state, byte substate, object evt)
  193. {
  194. //不能移动切入,状态置成Idle(不应该有互斥状态存在 跑和不能移动)
  195. if (state == UnitActionStatus.Move && (substate & (byte)UnitActionSubStatus.CanNotMove) != 0)
  196. {
  197. state = UnitActionStatus.Idle;
  198. }
  199. if (mState.ChangeState(state))
  200. {
  201. if (mOnActionChanged != null)
  202. {
  203. mOnActionChanged.Invoke(this, mState.Value, evt);
  204. }
  205. }
  206. SetCurrentSubState(substate);
  207. }
  208. protected void SetCurrentSubState(byte substate)
  209. {
  210. if (mSubState.ChangeState(substate))
  211. {
  212. if (mOnActionSubStatusChanged != null)
  213. {
  214. mOnActionSubStatusChanged.Invoke(this, mSubState.Value, null);
  215. }
  216. }
  217. }
  218. #endregion
  219. //--------------------------------------------------------------------------------
  220. override internal protected void Update()
  221. {
  222. int intervalMS = Parent.CurrentIntervalMS;
  223. if (mHitFlyState != null && mHitFlyState.Update(intervalMS))
  224. {
  225. mHitFlyState = null;
  226. }
  227. UpdatePos(intervalMS);
  228. UpdateDamage(intervalMS);
  229. UpdateSkills(intervalMS);
  230. UpdateBuffs(intervalMS);
  231. UpdatePickEvent(intervalMS);
  232. }
  233. protected internal override void UpdateAI()
  234. {
  235. int intervalMS = Parent.CurrentIntervalMS;
  236. updateSkillAction(intervalMS);
  237. }
  238. protected internal virtual void UpdatePos(int intervalMS)
  239. {
  240. if (mDirection != mDirectionChange)
  241. {
  242. mDirection = MoveHelper.DirectionChange(
  243. mDirectionChange,
  244. mDirection,
  245. mTurnSpeedSEC,
  246. intervalMS);
  247. }
  248. if (Parent.ActorSyncMode != SyncMode.ForceByServer)
  249. {
  250. if (!FixPos(intervalMS, mLocalPos, mPos))
  251. {
  252. if(CurrentState == UnitActionStatus.Move && mRemoteState.UnitMainState != UnitActionStatus.Move)
  253. {
  254. this.SetCurrentState(ref mRemoteState);
  255. }
  256. }
  257. else
  258. {
  259. //if(this is ZoneActor)
  260. // CommonLang.Log.ClientLog.LogWarning(">>UpdatePos:{0},{1}-->{2},{3}", mLocalPos.X, mLocalPos.Y, mPos.X, mPos.Y);
  261. }
  262. }
  263. }
  264. public override void ForceSyncPos(float x, float y)
  265. {
  266. //YXJDebug.logWarning("{0}>>ForceSyncPos:{1},{2}", Name, x, y);
  267. this.mPos.SetX(x);
  268. this.mPos.SetY(y);
  269. this.mLocalPos.SetX(x);
  270. this.mLocalPos.SetY(y);
  271. }
  272. public override void SyncPos(ref SyncPosEvent.UnitState pos)
  273. {
  274. this.mRemoteState = pos;
  275. if (Parent.ActorSyncMode == SyncMode.ForceByServer)
  276. {
  277. this.SetCurrentState(ref mRemoteState);
  278. }
  279. else
  280. {
  281. var rst = mRemoteState;
  282. if (CurrentState == UnitActionStatus.Move && mRemoteState.UnitMainState == UnitActionStatus.Idle)
  283. {
  284. if (IsNeedFixPos(mLocalPos, mPos))
  285. {
  286. rst.UnitMainState = UnitActionStatus.Move;
  287. }
  288. }
  289. this.SetCurrentState(ref rst);
  290. }
  291. }
  292. public override void SyncPos(ref SyncPosEvent.UnitPos pos)
  293. {
  294. bool bMoved = mPos.X != pos.X || mPos.Y != pos.Y;
  295. base.mPos.SetX(pos.X);
  296. base.mPos.SetY(pos.Y);
  297. this.mDirectionChange = pos.Direction;
  298. this.mDirection = MoveHelper.DirectionChange(
  299. mDirectionChange,
  300. mDirection,
  301. mTurnSpeedSEC,
  302. Parent.CurrentIntervalMS);
  303. if (Parent.IsSyncZ) { this.Z = pos.Z; }
  304. if (Parent.ActorSyncMode == SyncMode.ForceByServer)
  305. {
  306. //YXJDebug.logWarning(">>{0}>syncPos:{0},{1}-->forceByServerMode", Name, pos.X, pos.Y);
  307. mLocalPos.SetX(pos.X);
  308. mLocalPos.SetY(pos.Y);
  309. }
  310. else
  311. {
  312. var rst = mRemoteState;
  313. if (CurrentState == UnitActionStatus.Move && rst.UnitMainState == UnitActionStatus.Idle)
  314. {
  315. rst.UnitMainState = UnitActionStatus.Move;
  316. }
  317. else if(bMoved && CurrentState == UnitActionStatus.Idle && rst.UnitMainState == UnitActionStatus.Idle && rst.UnitSubState == 0)
  318. {
  319. //新创建的单位,丢失了move状态信息,打个补丁
  320. rst.UnitMainState = UnitActionStatus.Move;
  321. }
  322. else if(rst.UnitMainState == UnitActionStatus.Skill)
  323. {
  324. if ((rst.UnitSubState & (byte)UnitActionSubStatus.ChargeAtkIdle) != 0)
  325. {
  326. //YXJDebug.logDebug(">>下发SyncPosEvent的状态不对(蓄力idle中移动)");
  327. }
  328. else if((rst.UnitSubState & (byte)UnitActionSubStatus.Mocking) != 0)
  329. {
  330. }
  331. else
  332. {
  333. //YXJDebug.logWarning(">>{0}>skill状态中syncPos, curState:{1}/{2}-->{3}/{4}", Name, (int)CurrentState, (int)CurrentSubState, (int)mRemoteState.UnitMainState, (int)mRemoteState.UnitSubState);
  334. }
  335. }
  336. //YXJDebug.logWarning(">>{0}>UnitsyncPos, curState:{1}/{2}-->{3}/{4}, x:{5},y:{6}", Name, (int)CurrentState, (int)CurrentSubState, (int)mRemoteState.UnitMainState, (int)mRemoteState.UnitSubState, pos.X, pos.Y);
  337. this.SetCurrentState(ref rst);
  338. }
  339. }
  340. /// <summary>
  341. /// 修正本地坐标//
  342. /// </summary>
  343. public bool FixPos(int intervalMS, Vector2 local_pos, IVector2 remote_pos)
  344. {
  345. float fdistance = MathVector.getDistance(local_pos, remote_pos);
  346. if (fdistance > 0)
  347. {
  348. float dspeed = MoveHelper.GetDistance(intervalMS, MoveSpeedSEC);
  349. if (fdistance >= Parent.AsyncUnitPosModifyMaxRange)
  350. {
  351. local_pos.SetX(remote_pos.X);
  352. local_pos.SetY(remote_pos.Y);
  353. return true;
  354. }
  355. else if (fdistance <= dspeed)
  356. {
  357. //local_pos.x = remote_pos.X;
  358. //local_pos.y = remote_pos.Y;
  359. return false;
  360. }
  361. else if (CurrentState == UnitActionStatus.Move)
  362. {
  363. float db = dspeed;
  364. MathVector.moveTo(local_pos, remote_pos.X, remote_pos.Y, db);
  365. return true;
  366. }
  367. else
  368. {
  369. float db = dspeed * fdistance;
  370. MathVector.moveTo(local_pos, remote_pos.X, remote_pos.Y, db);
  371. return true;
  372. }
  373. }
  374. return false;
  375. }
  376. /// <summary>
  377. /// 是否需要修正坐标
  378. /// </summary>
  379. /// <returns></returns>
  380. public bool IsNeedFixPos(Vector2 local_pos, IVector2 remote_pos)
  381. {
  382. float fdistance = MathVector.getDistance(local_pos, remote_pos);
  383. return fdistance >= Parent.MinStep;
  384. }
  385. /// <summary>
  386. ///
  387. /// </summary>
  388. /// <param name="direction"></param>
  389. /// <param name="smooth">是否慢慢转身</param>
  390. public void SetDirection(float direction, bool smooth = true)
  391. {
  392. if (smooth)
  393. {
  394. mDirectionChange = direction;
  395. }
  396. else
  397. {
  398. mDirectionChange = direction;
  399. mDirection = direction;
  400. }
  401. }
  402. public float GetDeadTimeCD()
  403. {
  404. if (mDeadTime != null)
  405. {
  406. return mDeadTime.Percent;
  407. }
  408. return 0;
  409. }
  410. override internal protected void DoEvent(ObjectEvent e)
  411. {
  412. if (e is UnitDamageEvent)
  413. {
  414. DoDamage(e as UnitDamageEvent);
  415. }
  416. else if (e is UnitLaunchSkillEvent)
  417. {
  418. DoLaunchSkill(e as UnitLaunchSkillEvent);
  419. }
  420. else if (e is UnitSkillActionChangeEvent)
  421. {
  422. DoChangeAction(e as UnitSkillActionChangeEvent);
  423. }
  424. else if (e is UnitDeadEvent)
  425. {
  426. DoDead(e as UnitDeadEvent);
  427. }
  428. else if (e is UnitLaunchBuffEvent)
  429. {
  430. DoLaunchBuff(e as UnitLaunchBuffEvent);
  431. }
  432. else if(e is BuffDataNotify)
  433. {
  434. SyncBuffOverlayLevel(e as BuffDataNotify);
  435. }
  436. else if (e is SyncUnitBuffState)
  437. {
  438. DoRemoveOverlayLevelBuff(e as SyncUnitBuffState);
  439. }
  440. else if (e is UnitStopBuffEvent)
  441. {
  442. DoStopBuff(e as UnitStopBuffEvent);
  443. }
  444. else if (e is UnitFieldChangedEvent)
  445. {
  446. DoSync(e as UnitFieldChangedEvent);
  447. }
  448. else if (e is UnitStartPickObjectEvent)
  449. {
  450. DoStartPick(e as UnitStartPickObjectEvent);
  451. }
  452. else if (e is UnitStopPickObjectEvent)
  453. {
  454. DoStopPick(e as UnitStopPickObjectEvent);
  455. }
  456. else if (e is UnitJumpEvent)
  457. {
  458. DoJump(e as UnitJumpEvent);
  459. }
  460. else if (e is UnitForceSyncPosEvent)
  461. {
  462. DoForceSyncPosEvent(e as UnitForceSyncPosEvent);
  463. }
  464. else if (e is UnitChantSkillEvent)
  465. {
  466. DoUnitChantSkillEvent(e as UnitChantSkillEvent);
  467. }
  468. else if (e is UnitSyncMultiTimeLine)
  469. {
  470. DoUnitSyncMultiTimeLine(e as UnitSyncMultiTimeLine);
  471. }
  472. //----------------------- player ----------------------//
  473. else if (e is PlayerCDEvent)
  474. {
  475. DoSkillCDChanged(e as PlayerCDEvent);
  476. }
  477. else if (e is PlayerSkillChangedEvent)
  478. {
  479. DoSkillChanged(e as PlayerSkillChangedEvent);
  480. }
  481. else if (e is PlayerSkillAddedEvent)
  482. {
  483. DoSkillAdded(e as PlayerSkillAddedEvent);
  484. }
  485. else if (e is PlayerSkillRemovedEvent)
  486. {
  487. DoSkillRemoved(e as PlayerSkillRemovedEvent);
  488. }
  489. else if (e is PlayerSkillTimeChangedEvent)
  490. {
  491. DoPlayerSkillTimeChangedEvent(e as PlayerSkillTimeChangedEvent);
  492. }
  493. else if (e is PlayerSyncEnvironmentVarEvent)
  494. {
  495. DoSyncUnitVarEvent(e as PlayerSyncEnvironmentVarEvent);
  496. }
  497. else if (e is PlayerSkillStopEvent)
  498. {
  499. DoPlayerSkillStopEvent(e as PlayerSkillStopEvent);
  500. }
  501. else if (e is PlayerScriptCommandEvent)
  502. {
  503. DoPlayerScriptCommandEvent(e as PlayerScriptCommandEvent);
  504. }
  505. else if (e is PlayerSkillActiveChangedEvent)
  506. {
  507. DoPlayerSkillActiveChangedEvent(e as PlayerSkillActiveChangedEvent);
  508. }
  509. //----------------------- player ----------------------//
  510. //新增技能层数的协议
  511. else if (e is PlayerSkillUseTimeChangedEvent)
  512. {
  513. DoPlayerSkillUseTimeChangedEvent(e as PlayerSkillUseTimeChangedEvent);
  514. }
  515. else if (e is UnitStealthInfo)
  516. {
  517. DoUnitStealthInfo(e as UnitStealthInfo);
  518. }
  519. }
  520. protected virtual void DoUnitStealthInfo(UnitStealthInfo e)
  521. {
  522. if (mOnSetStealtState != null)
  523. mOnSetStealtState(e.stealth, e.flag);
  524. }
  525. protected virtual void DoForceSyncPosEvent(UnitForceSyncPosEvent e)
  526. {
  527. //YXJDebug.logWarning(">{0}:{1}>>DoForceSyncPosEvent:{2},{3}, state:{4},{5}", ObjectID,Name, e.X, e.Y, e.UnitMainState, e.UnitSubState);
  528. if(this.Parent != null && this.Parent.IsSceneDujie() && e.UnitMainState == (byte)UnitActionStatus.Move)
  529. {
  530. //YXJDebug.logWarning(">IgnoreForceSyncPos_u@move: {0}{1}, state:{2},{3}", ObjectID, Name, e.UnitMainState, e.UnitSubState);
  531. return;
  532. }
  533. if (!mIsSkillMove)
  534. {
  535. mLocalPos.SetX(e.X);
  536. mLocalPos.SetY(e.Y);
  537. }
  538. mPos.SetX(e.X);
  539. mPos.SetY(e.Y);
  540. mDirection = mDirectionChange = e.Direction;
  541. mRemoteState.UnitMainState = (UnitActionStatus)e.UnitMainState;
  542. mRemoteState.UnitSubState = e.UnitSubState;
  543. this.SetCurrentState((UnitActionStatus)e.UnitMainState, e.UnitSubState, e);
  544. }
  545. protected virtual void DoSync(UnitFieldChangedEvent syn)
  546. {
  547. if ((syn.mask & UnitFieldChangedEvent.MASK_HP) != 0)
  548. {
  549. if (mHP != syn.currentHP)
  550. {
  551. int old = mHP;
  552. this.mHP = syn.currentHP;
  553. if (mOnHPChanged != null)
  554. {
  555. mOnHPChanged.Invoke(this, old, syn.currentHP);
  556. }
  557. }
  558. }
  559. if ((syn.mask & UnitFieldChangedEvent.MASK_MP) != 0)
  560. {
  561. if (mMP != syn.currentMP)
  562. {
  563. int old = mMP;
  564. this.mMP = syn.currentMP;
  565. if (mOnMPChanged != null)
  566. {
  567. mOnMPChanged.Invoke(this, old, syn.currentMP);
  568. }
  569. }
  570. }
  571. if ((syn.mask & UnitFieldChangedEvent.MASK_MAX_HP) != 0)
  572. {
  573. if (this.mMaxHP != syn.maxHP)
  574. {
  575. int old = mMaxHP;
  576. this.mMaxHP = syn.maxHP;
  577. if (mOnMaxHPChanged != null)
  578. {
  579. mOnMaxHPChanged.Invoke(this, old, syn.maxHP);
  580. }
  581. }
  582. }
  583. if ((syn.mask & UnitFieldChangedEvent.MASK_MAX_MP) != 0)
  584. {
  585. if (this.mMaxMP != syn.maxMP)
  586. {
  587. int old = mMaxMP;
  588. this.mMaxMP = syn.maxMP;
  589. if (mOnMaxMPChanged != null)
  590. {
  591. mOnMaxMPChanged.Invoke(this, old, syn.maxMP);
  592. }
  593. }
  594. }
  595. if ((syn.mask & UnitFieldChangedEvent.MASK_SP) != 0)
  596. {
  597. this.mSP = syn.currentSP;
  598. }
  599. if ((syn.mask & UnitFieldChangedEvent.MASK_MAX_SP) != 0)
  600. {
  601. this.mMaxSP = syn.maxSP;
  602. }
  603. if ((syn.mask & UnitFieldChangedEvent.MASK_SPEED) != 0) { this.mMoveSpeedSEC = syn.currentSpeed; }
  604. if ((syn.mask & UnitFieldChangedEvent.MASK_FCR) != 0) { this.mFastCastRate = syn.currentFCR; }
  605. if ((syn.mask & UnitFieldChangedEvent.MASK_MONEY) != 0)
  606. {
  607. if (mMoney != syn.currentMoney)
  608. {
  609. int old = this.mMoney;
  610. this.mMoney = syn.currentMoney;
  611. if (mOnMoneyChanged != null)
  612. {
  613. mOnMoneyChanged.Invoke(this, old, syn.currentMoney);
  614. }
  615. }
  616. }
  617. if ((syn.mask & UnitFieldChangedEvent.MASK_LEVEL) != 0) { this.SyncInfo.Level = syn.level; }
  618. if ((syn.mask & UnitFieldChangedEvent.MASK_DUMMY_0) != 0) { this.Dummy_0 = syn.dummy_0; }
  619. if ((syn.mask & UnitFieldChangedEvent.MASK_DUMMY_1) != 0) { this.Dummy_1 = syn.dummy_1; }
  620. if ((syn.mask & UnitFieldChangedEvent.MASK_DUMMY_2) != 0) { this.Dummy_2 = syn.dummy_2; }
  621. if ((syn.mask & UnitFieldChangedEvent.MASK_DUMMY_3) != 0) { this.Dummy_3 = syn.dummy_3; }
  622. if ((syn.mask & UnitFieldChangedEvent.MASK_DUMMY_4) != 0) { this.Dummy_4 = syn.dummy_4; }
  623. if ((syn.mask & UnitFieldChangedEvent.MASK_DUMMY_5) != 0) { this.Dummy_5 = syn.dummy_5; }
  624. }
  625. protected virtual void DoSyncUnitVarEvent(PlayerSyncEnvironmentVarEvent e)
  626. {
  627. mEnvironmentVarMap[e.Key] = e.Value;
  628. }
  629. protected virtual void DoPlayerScriptCommandEvent(PlayerScriptCommandEvent e)
  630. {
  631. if (mOnScriptCommand != null)
  632. {
  633. mOnScriptCommand.Invoke(this, e.message);
  634. }
  635. }
  636. //--------------------------------------------------------------------------------
  637. /// <summary>
  638. /// 获得当前单位服务端可同步环境变量
  639. /// </summary>
  640. /// <param name="key"></param>
  641. /// <returns></returns>
  642. public object GetEnvironmentVar(string key)
  643. {
  644. return mEnvironmentVarMap.Get(key);
  645. }
  646. /// <summary>
  647. /// 获得当前单位服务端可同步环境变量列表
  648. /// </summary>
  649. /// <param name="key"></param>
  650. /// <returns></returns>
  651. public IEnumerable<string> ListEnvironmentVars()
  652. {
  653. return mEnvironmentVarMap.Keys;
  654. }
  655. //--------------------------------------------------------------------------------
  656. //--------------------------------------------------------------------------------
  657. #region Delegate
  658. public enum SkillOption
  659. {
  660. Init,
  661. Reset,
  662. Add,
  663. Remove,
  664. ActiveChange
  665. }
  666. public delegate void OnSetStealtStateHandler(byte stealth, short flag);
  667. public delegate void OnSkillChangedHandler(SkillOption op, ZoneUnit unit, int baseSkillID, params int[] skills);
  668. public delegate void OnActionStatusChangedHandler(ZoneUnit unit, UnitActionStatus status, object evt);
  669. //新增子状态
  670. public delegate void OnActionSubStatusChangedHandler(ZoneUnit unit, byte status, object evt);
  671. public delegate void OnMoneyChangedHandler(ZoneUnit unit, int oldMoney, int newMoney);
  672. //public delegate void OnChantSkillHandler(ZoneUnit unit, SkillState skill, UnitChantSkillEvent evt);
  673. public delegate void OnChantSkillHandler(ZoneUnit unit, UnitChantSkillEvent evt, TimeExpire<SkillTemplate> timeExpire);
  674. public delegate void OnLaunchSkillHandler(ZoneUnit unit, SkillState skill, UnitLaunchSkillEvent evt);
  675. public delegate void OnHPChangedHandler(ZoneUnit unit, int oldHP, int newHP);
  676. public delegate void OnMPChangedHandler(ZoneUnit unit, int oldMP, int newMP);
  677. public delegate void OnMaxHPChangedHandler(ZoneUnit unit, int oldMaxHP, int newMaxHP);
  678. public delegate void OnMaxMPChangedHandler(ZoneUnit unit, int oldMaxMP, int newMaxMP);
  679. public delegate void OnStartPickObjectHandler(ZoneUnit unit, TimeExpire<UnitStartPickObjectEvent> start);
  680. public delegate void OnStopPickObjectHandler(ZoneUnit unit, UnitStopPickObjectEvent stop);
  681. public delegate void OnSkillActionChangedHandler(ZoneUnit unit, SkillState skill, byte index);
  682. public delegate void OnBuffAddedHandler(ZoneUnit unit, BuffState buff);
  683. public delegate void OnBuffChangedHandler(ZoneUnit unit, BuffState buff);
  684. public delegate void OnBuffRemovedHandler(ZoneUnit unit, BuffState buff);
  685. public delegate void OnRemoveBuffByOverlayLevelHandler(ZoneUnit unit, BuffState buff);
  686. public delegate void OnScriptCommandHandler(ZoneUnit unit, string msg);
  687. public delegate void OnSkillActionStartHandler(ZoneUnit unit, ISkillAction action);
  688. //客户端技能预演事件
  689. public delegate void OnClientSkillSimulationHandler(ZoneUnit unit, SimulationSkillEnum type);
  690. private OnSetStealtStateHandler mOnSetStealtState;
  691. private OnSkillChangedHandler mOnSkillChanged;
  692. private OnActionStatusChangedHandler mOnActionChanged;
  693. //新增子状态
  694. private OnActionSubStatusChangedHandler mOnActionSubStatusChanged;
  695. private OnMoneyChangedHandler mOnMoneyChanged;
  696. private OnChantSkillHandler mOnChantSkill;
  697. private OnLaunchSkillHandler mOnLaunchSkill;
  698. private OnHPChangedHandler mOnHPChanged;
  699. private OnMPChangedHandler mOnMPChanged;
  700. private OnMaxHPChangedHandler mOnMaxHPChanged;
  701. private OnMaxMPChangedHandler mOnMaxMPChanged;
  702. private OnStartPickObjectHandler mOnStartPickObject;
  703. private OnStopPickObjectHandler mOnStopPickObject;
  704. private OnSkillActionChangedHandler mOnSkillActionChanged;
  705. private OnBuffAddedHandler mOnBuffAdded;
  706. private OnBuffRemovedHandler mOnBuffRemoved;
  707. private OnBuffChangedHandler mOnBuffChanged;
  708. private OnRemoveBuffByOverlayLevelHandler mOnRemoveBuffByOverlayLeveled;
  709. private OnScriptCommandHandler mOnScriptCommand;
  710. private OnSkillActionStartHandler mOnSkillActionStart;
  711. private OnClientSkillSimulationHandler mOnClientSkillSimulation;
  712. private void clearEvents()
  713. {
  714. this.mOnSetStealtState = null;
  715. this.mOnSkillChanged = null;
  716. this.mOnActionChanged = null;
  717. this.mOnMoneyChanged = null;
  718. this.mOnChantSkill = null;
  719. this.mOnLaunchSkill = null;
  720. this.mOnHPChanged = null;
  721. this.mOnMPChanged = null;
  722. this.mOnMaxHPChanged = null;
  723. this.mOnMaxMPChanged = null;
  724. this.mOnStartPickObject = null;
  725. this.mOnStopPickObject = null;
  726. this.mOnSkillActionChanged = null;
  727. this.mOnBuffAdded = null;
  728. this.mOnBuffChanged = null;
  729. this.mOnBuffRemoved = null;
  730. this.mOnScriptCommand = null;
  731. this.mOnSkillActionStart = null;
  732. this.mOnRemoveBuffByOverlayLeveled = null;
  733. this.mOnClientSkillSimulation = null;
  734. }
  735. [EventTriggerDescAttribute("草丛隐身状态改变触发")]
  736. public event OnSetStealtStateHandler OnSetStealtState { add { mOnSetStealtState += value; } remove { mOnSetStealtState -= value; } }
  737. [EventTriggerDescAttribute("单位持有技能发生变化时触发")]
  738. public event OnSkillChangedHandler OnSkillChanged { add { mOnSkillChanged += value; } remove { mOnSkillChanged -= value; } }
  739. [EventTriggerDescAttribute("单位状态发生变化时触发")]
  740. public event OnActionStatusChangedHandler OnActionChanged { add { mOnActionChanged += value; } remove { mOnActionChanged -= value; } }
  741. [EventTriggerDescAttribute("单位子状态发生变化时触发")]
  742. public event OnActionSubStatusChangedHandler OnActionSubStatusChanged { add { mOnActionSubStatusChanged += value; } remove { mOnActionSubStatusChanged -= value; } }
  743. [EventTriggerDescAttribute("单位金币发生变化时触发")]
  744. public event OnMoneyChangedHandler OnMoneyChanged { add { mOnMoneyChanged += value; } remove { mOnMoneyChanged -= value; } }
  745. [EventTriggerDescAttribute("单位开始吟唱时触发")]
  746. public event OnChantSkillHandler OnChantSkill { add { mOnChantSkill += value; } remove { mOnChantSkill -= value; } }
  747. [EventTriggerDescAttribute("单位释放技能时触发")]
  748. public event OnLaunchSkillHandler OnLaunchSkill { add { mOnLaunchSkill += value; } remove { mOnLaunchSkill -= value; } }
  749. [EventTriggerDescAttribute("HP变化")]
  750. public event OnHPChangedHandler OnHPChanged { add { mOnHPChanged += value; } remove { mOnHPChanged -= value; } }
  751. [EventTriggerDescAttribute("MP变化")]
  752. public event OnMPChangedHandler OnMPChanged { add { mOnMPChanged += value; } remove { mOnMPChanged -= value; } }
  753. [EventTriggerDescAttribute("MaxHP变化")]
  754. public event OnMaxHPChangedHandler OnMaxHPChanged { add { mOnMaxHPChanged += value; } remove { mOnMaxHPChanged -= value; } }
  755. [EventTriggerDescAttribute("MaxMP变化")]
  756. public event OnMaxMPChangedHandler OnMaxMPChanged { add { mOnMaxMPChanged += value; } remove { mOnMaxMPChanged -= value; } }
  757. [EventTriggerDescAttribute("单位开始检取物品")]
  758. public event OnStartPickObjectHandler OnStartPickObject { add { mOnStartPickObject += value; } remove { mOnStartPickObject -= value; } }
  759. [EventTriggerDescAttribute("单位完成/结束检取物品")]
  760. public event OnStopPickObjectHandler OnStopPickObject { add { mOnStopPickObject += value; } remove { mOnStopPickObject -= value; } }
  761. [EventTriggerDescAttribute("单位技能动作发生变化")]
  762. public event OnSkillActionChangedHandler OnSkillActionChanged { add { mOnSkillActionChanged += value; } remove { mOnSkillActionChanged -= value; } }
  763. [EventTriggerDescAttribute("单位添加BUFF")]
  764. public event OnBuffAddedHandler OnBuffAdded { add { mOnBuffAdded += value; } remove { mOnBuffAdded -= value; } }
  765. [EventTriggerDescAttribute("单位BUFF状态改变")]
  766. public event OnBuffChangedHandler OnBuffChanged { add { mOnBuffChanged += value; } remove { mOnBuffChanged -= value; } }
  767. [EventTriggerDescAttribute("单位移除BUFF")]
  768. public event OnBuffRemovedHandler OnBuffRemoved { add { mOnBuffRemoved += value; } remove { mOnBuffRemoved -= value; } }
  769. [EventTriggerDescAttribute("移除层buff(剑雨新增)")]
  770. public event OnRemoveBuffByOverlayLevelHandler OnRemoveBuffByOverlayLevel { add { mOnRemoveBuffByOverlayLeveled += value; } remove { mOnRemoveBuffByOverlayLeveled -= value; } }
  771. [EventTriggerDescAttribute("服务端通知客户端执行指定脚本代码")]
  772. public event OnScriptCommandHandler OnScriptCommand { add { mOnScriptCommand += value; } remove { mOnScriptCommand -= value; } }
  773. [EventTriggerDescAttribute("技能动作开始")]
  774. public event OnSkillActionStartHandler OnSkillActionStart { add { mOnSkillActionStart += value; } remove { mOnSkillActionStart -= value; } }
  775. [EventTriggerDescAttribute("客户端技能模拟")]
  776. public event OnClientSkillSimulationHandler OnClickSkillSimulationEvent { add { mOnClientSkillSimulation += value; } remove { mOnClientSkillSimulation -= value; } }
  777. #endregion
  778. }
  779. }