InstancePlayer.cs 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172
  1. using CommonAI.RTS;
  2. using CommonLang.Vector;
  3. using CommonAI.Zone.Helper;
  4. using CommonAI.Zone.Formula;
  5. using CommonLang;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using CommonLang.IO;
  11. using CommonAI.Data;
  12. using CommonAI.Zone.ZoneEditor.EventTrigger;
  13. namespace CommonAI.Zone.Instance
  14. {
  15. /// <summary>
  16. /// 可自动战斗的可操作单位
  17. /// </summary>
  18. public class InstancePlayer : InstanceUnit
  19. {
  20. private readonly string mPlayerUUID;
  21. //private HashMap<string, int> mKilledPlayersID = new HashMap<string, int>();
  22. private CommonAI.ZoneClient.SyncMode mCurrentSyncMode;
  23. private bool mIsSkillControlByServer = true;
  24. //自动拾取范围
  25. protected float mAutoPickRange = XmdsConstConfig.AUTOPICK_RANGE;
  26. protected TimeInterval<int> mCheckGuard;
  27. protected HashMap<string, QuestData> mQuests = new HashMap<string, QuestData>();
  28. protected UnitLaunchSkillAction mWaitingSkill;
  29. protected StatePlayerControlMove mControlMove;
  30. protected StatePlayerUpdateMove mUpdateMove;
  31. protected StateFollowAndAttack mFocusTarget;
  32. protected StateFollowAndPickItem mFocusPickItem;
  33. protected StatePlayerAttackTo mAttackTo;
  34. public virtual bool isTeamMemberAndFollow()
  35. {
  36. return false;
  37. }
  38. public override string PlayerUUID
  39. {
  40. get { return mPlayerUUID; }
  41. }
  42. public string ClientID { get; set; }
  43. public bool IsGuard { get; set; }
  44. public bool IsReady { get; private set; }
  45. public override bool IsPlayer { get { return true; } }
  46. public override bool IntersectObj { get { return (Templates.CFG.PLAYER_NONE_TOUCH) ? false : base.IntersectObj; } }
  47. public override bool IsSkillControllableByServer { get { return mIsSkillControlByServer; } }
  48. public CommonAI.ZoneClient.SyncMode ClientSyncMode { get { return mCurrentSyncMode; } }
  49. public bool IsRobot { get; set; }
  50. public InstancePlayer(InstanceZone zone, UnitInfo info, string name, int force, int level, int alliesForce)
  51. : base(zone, info, name, force, level, false, alliesForce)
  52. {
  53. this.mPlayerUUID = string.IsNullOrEmpty(name) ? "" : name;
  54. this.mSyncInfo.PlayerUUID = mPlayerUUID;
  55. this.mControlMove = new StatePlayerControlMove(this);
  56. this.mUpdateMove = new StatePlayerUpdateMove(this);
  57. this.mCheckGuard = new TimeInterval<int>(Templates.CFG.AI_VIEW_TRIGGER_CHECK_TIME_MS);
  58. }
  59. protected override void Disposing()
  60. {
  61. /*
  62. mControlMove = null;
  63. mUpdateMove = null;
  64. mFocusTarget = null;
  65. mFocusPickItem = null;
  66. mAttackTo = null;
  67. */
  68. base.Disposing();
  69. }
  70. /// <summary>
  71. /// 联网模式,断开连接。
  72. /// </summary>
  73. public virtual void OnDisconnected() { }
  74. /// <summary>
  75. /// 联网模式,重新连接。
  76. /// </summary>
  77. public virtual void OnReconnected(UnitInfo temp, int force, int level, Vector2 enterPos) { }
  78. public virtual ZoneClient.LockActorEvent GenLockActorEvent(string displayName, float inRange, float outRange, int updateInterval)
  79. {
  80. // 准备发送当前场景信息 //
  81. var loc = new ZoneClient.LockActorEvent();
  82. loc.ServerUpdateInterval = updateInterval;
  83. loc.ClientSyncObjectRange = inRange;
  84. loc.ClientSyncObjectOutRange = outRange;
  85. loc.UnitData = IOUtil.CloneIExternalizable<ZoneClient.SyncUnitInfo>(TemplateManager.MessageCodec, this.GenSyncUnitInfo(true));
  86. loc.UnitData.Name = displayName;
  87. loc.UnitData.x = this.X;
  88. loc.UnitData.y = this.Y;
  89. loc.GameServerProp = CUtils.TryClone(this.Info.Properties);
  90. loc.Skills = this.GetSkillEvent();
  91. loc.UnitData.CurrentBuffStatus = this.GetCurrentBuffStatus();
  92. loc.CurrentSkillStatus = this.GetCurrentSkillStatus();
  93. loc.CurrentItemStatus = this.GetCurrentItemStatus();
  94. loc.CurrentPlayerVars = this.GetCurrentUnitVars();
  95. loc.CurrentZoneVars = Parent.GetCurrentZoneVars();
  96. return loc;
  97. }
  98. protected override void onUpdateRecover()
  99. {
  100. base.onUpdateRecover();
  101. }
  102. override protected void onResetAI()
  103. {
  104. this.cleanFocus();
  105. this.doSomething();
  106. }
  107. protected override void onAdded(bool pointLv)
  108. {
  109. base.onAdded(pointLv);
  110. this.doSomething();
  111. }
  112. // override protected void onDead(InstanceUnit attacker)
  113. // {
  114. // if (attacker is IPlayerUnit)
  115. // {
  116. // var killer = attacker as IPlayerUnit;
  117. // killer.PutKillPlayer(this.PlayerUUID);
  118. // }
  119. // }
  120. override protected void onUpdate(bool slowRefresh)
  121. {
  122. base.onUpdate(slowRefresh);
  123. this.updateGuard();
  124. this.updateCurrentSkill();
  125. this.updateAttackTo();
  126. }
  127. protected virtual void updateCurrentSkill()
  128. {
  129. if (CurrentState is StateSkill)
  130. {
  131. var current = CurrentState as StateSkill;
  132. if (mWaitingSkill != null && current.IsCancelableBySkill)
  133. {
  134. doLaunchSkill(mWaitingSkill);
  135. }
  136. else if (IsGuard)
  137. {
  138. if ((mFocusTarget != null))
  139. {
  140. tryLaunchRandomSkillAndCancelCurrentSkill(mFocusTarget.TargetUnit, true);
  141. }
  142. }
  143. }
  144. }
  145. protected virtual void updateGuard()
  146. {
  147. if (mFocusTarget != null && !mFocusTarget.IsActive)
  148. {
  149. mFocusTarget = null;
  150. }
  151. if (mFocusPickItem != null && !mFocusPickItem.IsActive)
  152. {
  153. mFocusPickItem = null;
  154. }
  155. if (IsGuard)
  156. {
  157. // 旋风斩贴近目标 //
  158. if (mFocusTarget != null && CurrentState is StateSkill)
  159. {
  160. var state = CurrentState as StateSkill;
  161. if (state.IsControlMoveable && !state.unit.IsCannotMove)
  162. {
  163. state.setMoveTo(mFocusTarget.Target.X, mFocusTarget.Target.Y);
  164. }
  165. }
  166. // 没目标定期检测目标 //
  167. if ((mFocusTarget == null) && (mFocusPickItem == null))
  168. {
  169. if (mCheckGuard.Update(Parent.UpdateIntervalMS))
  170. {
  171. var item = findGuardPickItem();
  172. if (item != null)
  173. {
  174. doFocusPickItem(item);
  175. return;
  176. }
  177. var enemy = findGuardTarget(SkillTemplate.CastTarget.Enemy, AttackReason.Look);
  178. if (enemy != null)
  179. {
  180. doFocusAttack(enemy, SkillTemplate.CastTarget.Enemy);
  181. return;
  182. }
  183. var alias = findGuardTarget(SkillTemplate.CastTarget.AlliesIncludeSelf, AttackReason.Look);
  184. if (alias != null)
  185. {
  186. doFocusAttack(alias, SkillTemplate.CastTarget.AlliesIncludeSelf);
  187. return;
  188. }
  189. }
  190. }
  191. }
  192. }
  193. protected virtual void updateAttackTo()
  194. {
  195. if (mAttackTo != null)
  196. {
  197. if (mAttackTo.IsDone)
  198. {
  199. mAttackTo = null;
  200. }
  201. else if (!mAttackTo.IsAttack)
  202. {
  203. cleanFocus();
  204. }
  205. }
  206. }
  207. public override void doSomething()
  208. {
  209. if (mWaitingSkill != null && CurrentState is StateSkill)
  210. {
  211. if (doLaunchSkill(mWaitingSkill))
  212. {
  213. return;
  214. }
  215. }
  216. else if (IsGuard)
  217. {
  218. if (mFocusPickItem != null && mFocusPickItem.IsActive)
  219. {
  220. changeState(mFocusPickItem);
  221. return;
  222. }
  223. else
  224. {
  225. mFocusPickItem = null;
  226. }
  227. if (mFocusTarget != null && mFocusTarget.IsActive)
  228. {
  229. if (Parent.IsAttackable(this, mFocusTarget.TargetUnit, SkillTemplate.CastTarget.AlliesIncludeSelf, AttackReason.Attack, Info))
  230. {
  231. mFocusTarget = null;
  232. }
  233. else
  234. {
  235. changeState(mFocusTarget);
  236. return;
  237. }
  238. }
  239. else
  240. {
  241. mFocusTarget = null;
  242. }
  243. if (mAttackTo != null && !mAttackTo.IsDone)
  244. {
  245. changeState(mAttackTo);
  246. return;
  247. }
  248. }
  249. base.doSomething();
  250. }
  251. public virtual InstanceUnit findGuardTarget(SkillTemplate.CastTarget expect = SkillTemplate.CastTarget.Enemy, AttackReason reason = AttackReason.Look)
  252. {
  253. InstanceUnit min = null;
  254. if (getAvailableSkill(expect) != null)
  255. {
  256. float min_len = float.MaxValue;
  257. Parent.ForEachNearObjects(this.X, this.Y, this.Info.GuardRange, (InstanceUnit u, ref bool cancel) =>
  258. {
  259. if (Parent.IsAttackable(this, u, expect, reason, Info))
  260. {
  261. float len = MathVector.getDistanceSquare(u.X, u.Y, this.X, this.Y);
  262. if (min_len > len)
  263. {
  264. min_len = len;
  265. min = u;
  266. }
  267. }
  268. });
  269. }
  270. return min;
  271. }
  272. public virtual StateFollowAndAttack doFocusAttack(InstanceUnit target, SkillTemplate.CastTarget expect_target = SkillTemplate.CastTarget.Enemy)
  273. {
  274. if ((mAttackTo == null || mAttackTo.IsAttack) && Parent.IsAttackable(this, target, expect_target, AttackReason.Tracing, Info))
  275. {
  276. if (mFocusTarget != null)
  277. {
  278. if (mFocusTarget.TargetUnit != target)
  279. {
  280. mFocusTarget = new StateFollowAndAttack(this, target, expect_target, true);
  281. if (changeState(mFocusTarget))
  282. {
  283. queueEvent(new PlayerFocuseTargetEvent(this.ID, target.ID, expect_target));
  284. }
  285. }
  286. }
  287. else
  288. {
  289. mFocusTarget = new StateFollowAndAttack(this, target, expect_target, true);
  290. if (changeState(mFocusTarget))
  291. {
  292. queueEvent(new PlayerFocuseTargetEvent(this.ID, target.ID, expect_target));
  293. }
  294. }
  295. }
  296. else
  297. {
  298. mFocusTarget = null;
  299. }
  300. return mFocusTarget;
  301. }
  302. //可被自动拾取的,是那种没有进度条的
  303. public virtual InstanceItem findGuardPickItem()
  304. {
  305. InstanceItem min = null;
  306. float min_len = float.MaxValue;
  307. Parent.ForEachNearObjects(this.X, this.Y, this.mAutoPickRange, (InstanceItem u, ref bool cancel) =>
  308. {
  309. if (u.IsPickable(this))
  310. {
  311. float len = MathVector.getDistanceSquare(u.X, u.Y, this.X, this.Y);
  312. if (min_len > len)
  313. {
  314. min_len = len;
  315. min = u;
  316. }
  317. }
  318. });
  319. return min;
  320. }
  321. public virtual StateFollowAndPickItem doFocusPickItem(InstanceItem target, bool doPick = true)
  322. {
  323. if (mAttackTo == null || mAttackTo.IsAttack)
  324. {
  325. if (mFocusPickItem != null)
  326. {
  327. if (mFocusPickItem.Target != target)
  328. {
  329. StateFollowAndPickItem focusPickItem = new StateFollowAndPickItem(this, target, doPick);
  330. if (changeState(focusPickItem))
  331. {
  332. mFocusPickItem = focusPickItem;
  333. queueEvent(new PlayerFocuseTargetEvent(this.ID, target.ID, SkillTemplate.CastTarget.NA));
  334. }
  335. }
  336. }
  337. else
  338. {
  339. StateFollowAndPickItem focusPickItem = new StateFollowAndPickItem(this, target, doPick);
  340. if (changeState(focusPickItem))
  341. {
  342. mFocusPickItem = focusPickItem;
  343. queueEvent(new PlayerFocuseTargetEvent(this.ID, target.ID, SkillTemplate.CastTarget.NA));
  344. }
  345. }
  346. }
  347. else
  348. {
  349. mFocusPickItem = null;
  350. }
  351. return mFocusPickItem;
  352. }
  353. protected virtual void cleanFocus()
  354. {
  355. mFocusPickItem = null;
  356. mFocusTarget = null;
  357. }
  358. // internal void PutKillPlayer(string killed)
  359. // {
  360. // int count = 0;
  361. // if (mKilledPlayersID.TryGetValue(killed, out count))
  362. // {
  363. // mKilledPlayersID.Put(killed, count + 1);
  364. // }
  365. // else
  366. // {
  367. // mKilledPlayersID.Put(killed, 1);
  368. // }
  369. // }
  370. //--------------------------------------------------------------------------------------
  371. public virtual bool doRequest(ActorRequest req)
  372. {
  373. if (req is UnitGetStatisticRequest)
  374. {
  375. doGetStatisticRequest(req as UnitGetStatisticRequest);
  376. return true;
  377. }
  378. return false;
  379. }
  380. //设置自动拾取范围
  381. public override void SetAutoPickRange(int value)
  382. {
  383. this.mAutoPickRange = value;
  384. }
  385. protected override void onAction(ObjectAction act)
  386. {
  387. //log.Info("------<onAction: " + act.ToString());
  388. if (!IsDead())
  389. {
  390. if (act is UnitMoveAction)
  391. {
  392. doMove(act as UnitMoveAction);
  393. }
  394. else if (act is UnitAxisAction)
  395. {
  396. doAxis(act as UnitAxisAction);
  397. }
  398. else if (act is UnitFaceToAction)
  399. {
  400. doFaceTo(act as UnitFaceToAction);
  401. }
  402. else if (act is UnitStopMoveAction)
  403. {
  404. doStopMove(act as UnitStopMoveAction);
  405. }
  406. else if (act is UnitLaunchSkillAction)
  407. {
  408. doLaunchSkill(act as UnitLaunchSkillAction);
  409. }
  410. else if (act is UnitUseItemAction)
  411. {
  412. doUseItem(act as UnitUseItemAction);
  413. }
  414. else if (act is UnitPickObjectAction)
  415. {
  416. doPickObject(act as UnitPickObjectAction);
  417. }
  418. else if (act is UnitUpdatePosAction)
  419. {
  420. doUnitUpdatePos(act as UnitUpdatePosAction);
  421. }
  422. else if (act is UnitCancelBuffAction)
  423. {
  424. doCancelBuff(act as UnitCancelBuffAction);
  425. }
  426. else if (act is UnitSetSubStateAction)
  427. {
  428. doUnitSetSubStateAction(act as UnitSetSubStateAction);
  429. }
  430. else if (act is PlayPetTeleportAction)
  431. {
  432. doPetTeleportAction(act as PlayPetTeleportAction);
  433. }
  434. }
  435. if (act is UnitReadAction)
  436. {
  437. doReady(act as UnitReadAction);
  438. }
  439. else if (act is UnitGuardAction)
  440. {
  441. doGuard(act as UnitGuardAction);
  442. }
  443. else if (act is UnitFollowAction)
  444. {
  445. doFollow(act as UnitFollowAction);
  446. }
  447. else if (act is UnitAttackToAction)
  448. {
  449. doAttackTo(act as UnitAttackToAction);
  450. }
  451. else if (act is UnitFocuseTargetAction)
  452. {
  453. doFocusTarget(act as UnitFocuseTargetAction);
  454. }
  455. else if (act is ChatAction)
  456. {
  457. doChat(act as ChatAction);
  458. }
  459. else if (act is UnitSetSyncModeAction)
  460. {
  461. doSetSyncMode(act as UnitSetSyncModeAction);
  462. }
  463. else if (act is UnitGetStatisticRequest)
  464. {
  465. doGetStatisticRequest(act as UnitGetStatisticRequest);
  466. }
  467. }
  468. #region PlayerActions
  469. protected virtual void doReady(UnitReadAction act)
  470. {
  471. if (IsReady == false)
  472. {
  473. IsReady = true;
  474. Parent.cb_playerReady(this);
  475. }
  476. }
  477. protected virtual void doMove(UnitMoveAction ma)
  478. {
  479. if (CurrentState is StateSkill)
  480. {
  481. StateSkill ss = CurrentState as StateSkill;
  482. ss.setMoveTo(new Vector2(ma.x, ma.y));
  483. }
  484. else
  485. {
  486. cleanFocus();
  487. startMoveTo(ma.x, ma.y);
  488. }
  489. }
  490. protected virtual void doAxis(UnitAxisAction ma)
  491. {
  492. if (CurrentState is StateSkill)
  493. {
  494. ma.dx *= 100f;
  495. ma.dy *= 100f;
  496. StateSkill ss = CurrentState as StateSkill;
  497. if (!ma.IsZero)
  498. {
  499. if (ss.IsCancelableByMove)
  500. {
  501. cleanFocus();
  502. if (this.mWaitingSkill != null)
  503. {
  504. doLaunchSkill(this.mWaitingSkill);
  505. }
  506. else if (mCurrentSyncMode != ZoneClient.SyncMode.MoveByClient_PreSkillByClient)
  507. {
  508. this.mControlMove.Action = ma;
  509. ss.block(mControlMove);
  510. }
  511. else
  512. {
  513. ss.block(mUpdateMove);
  514. }
  515. }
  516. else
  517. {
  518. this.mControlMove.Action = ma;
  519. Vector2 moveto = new Vector2(X + ma.dx, Y + ma.dy);
  520. ss.setMoveTo(moveto);
  521. }
  522. }
  523. else
  524. {
  525. ss.setMoveTo(null);
  526. }
  527. }
  528. else if (mCurrentSyncMode != ZoneClient.SyncMode.MoveByClient_PreSkillByClient)
  529. {
  530. cleanFocus();
  531. if (!ma.IsZero)
  532. {
  533. this.mControlMove.Action = ma;
  534. changeState(mControlMove);
  535. }
  536. else
  537. {
  538. doSomething();
  539. }
  540. }
  541. }
  542. protected virtual void doFaceTo(UnitFaceToAction ufa)
  543. {
  544. if (CurrentActionStatus == UnitActionStatus.Idle || CurrentActionStatus == UnitActionStatus.Move)
  545. {
  546. this.faceTo(ufa.Direction);
  547. }
  548. }
  549. protected virtual void doStopMove(UnitStopMoveAction act)
  550. {
  551. cleanFocus();
  552. if (CurrentState is StateSkill)
  553. {
  554. StateSkill ss = CurrentState as StateSkill;
  555. ss.setMoveTo(null);
  556. }
  557. else if (CurrentState is StateMove || CurrentState is StatePlayerControlMove)
  558. {
  559. doSomething();
  560. base.SetActionStatus(UnitActionStatus.Idle);
  561. }
  562. }
  563. protected virtual bool doLaunchSkill(UnitLaunchSkillAction sk)
  564. {
  565. var launched = launchSkill(sk.SkillID, new LaunchSkillParam(
  566. sk.TargetObjID,
  567. sk.SpellTargetPos,
  568. sk.IsAutoFocusNearTarget,
  569. sk.SyncDirection,
  570. sk.Direction));
  571. if (launched == null)
  572. {
  573. //Console.WriteLine("UnitLaunchSkillAction - 1");
  574. if (CurrentState is StateSkill)
  575. {
  576. var state = CurrentState as StateSkill;
  577. if (state.SkillData.ID != sk.SkillID || (state.SkillData.IsSingleAction && state.Skill.GetSkillType() != XmdsSkillType.normalAtk))
  578. {
  579. //缓存释放技能指令//
  580. mWaitingSkill = sk;
  581. }
  582. }
  583. return false;
  584. }
  585. else
  586. {
  587. //一旦释放成功,释放指令//\
  588. //Console.WriteLine("UnitLaunchSkillAction - 2");
  589. mWaitingSkill = null;
  590. return true;
  591. }
  592. }
  593. protected virtual void doGetStatisticRequest(UnitGetStatisticRequest req)
  594. {
  595. UnitGetStatisticResponse resp = new UnitGetStatisticResponse();
  596. if (req.RequestObjectsID != null)
  597. {
  598. for (int i = 0; i < req.RequestObjectsID.Length; i++)
  599. {
  600. InstanceUnit u = Parent.getUnit(req.RequestObjectsID[i]);
  601. if (u != null)
  602. {
  603. var data = u.Statistic.ToUnitStatisticData();
  604. resp.Statistics.Put(req.RequestObjectsID[i], data);
  605. }
  606. }
  607. }
  608. Parent.sendActorResponse(this, req, resp);
  609. }
  610. protected virtual void doFocusTarget(UnitFocuseTargetAction focus)
  611. {
  612. if (IsGuard)
  613. {
  614. mAttackTo = null;
  615. InstanceZoneObject src = Parent.getObject<InstanceZoneObject>(focus.targetUnitID);
  616. if ((src is InstanceUnit))
  617. {
  618. if (!IsNoneSkill && ((src as InstanceUnit).IsActive))
  619. {
  620. doFocusAttack(src as InstanceUnit);
  621. }
  622. }
  623. else if ((src is InstanceItem))
  624. {
  625. if (src.Enable)
  626. {
  627. doFocusPickItem(src as InstanceItem);
  628. }
  629. }
  630. else
  631. {
  632. cleanFocus();
  633. }
  634. }
  635. }
  636. protected virtual void doAttackTo(UnitAttackToAction act)
  637. {
  638. if (!act.attack)
  639. {
  640. cleanFocus();
  641. }
  642. mAttackTo = new StatePlayerAttackTo(this, act.targetX, act.targetY, act.attack);
  643. changeState(mAttackTo);
  644. }
  645. protected virtual void doUseItem(UnitUseItemAction use)
  646. {
  647. UseInventoryItem(use.Index, use.Count);
  648. }
  649. protected virtual void doPickObject(UnitPickObjectAction pick)
  650. {
  651. InstanceZoneObject obj = Parent.getObject<InstanceZoneObject>(pick.PickableObjectID);
  652. if (obj is InstanceItem)
  653. {
  654. InstanceItem item = obj as InstanceItem;
  655. item.PickItem(this);
  656. }
  657. else if (obj is InstanceUnit)
  658. {
  659. InstanceUnit unit = obj as InstanceUnit;
  660. this.PickUnit(unit);
  661. }
  662. }
  663. protected virtual void doChat(ChatAction chat)
  664. {
  665. ChatEvent send = new ChatEvent(chat.To);
  666. send.FromPlayerUUID = this.PlayerUUID;
  667. send.Message = chat.Message;
  668. switch (chat.To)
  669. {
  670. case ChatMessageType.PlayerToPlayer:
  671. InstancePlayer target = Parent.getPlayerByUUID(chat.TargetPlayerUUID);
  672. if (target != null)
  673. {
  674. send.ToPlayerUUID = target.PlayerUUID;
  675. Parent.queueEvent(send);
  676. }
  677. break;
  678. case ChatMessageType.PlayerToForce:
  679. send.Force = this.Force;
  680. Parent.queueEvent(send);
  681. break;
  682. case ChatMessageType.PlayerToAll:
  683. Parent.queueEvent(send);
  684. break;
  685. }
  686. }
  687. protected virtual void doUnitUpdatePos(UnitUpdatePosAction act)
  688. {
  689. //Console.WriteLine("-------------------UnitUpdatePosAction : " + TimeUtil.GetTimestampMS() + ", " + act.x + ", " + act.y + " \t \t" + act.d);
  690. if (mCurrentSyncMode == ZoneClient.SyncMode.MoveByClient_PreSkillByClient && !this.IsCannotMove)
  691. {
  692. //mWaitingSkill = null;
  693. mUpdateMove.SetPos(act);
  694. if (CurrentState is StateSkill)
  695. {
  696. var ss = CurrentState as StateSkill;
  697. ss.doUpdatePosByClient(act);
  698. //服务器判断下,蓄力阶段才同步客户端蓄力状态
  699. if (ss.CurrentActionIndex < ss.SkillData.ActionQueue.Count &&
  700. ss.SkillData.ActionQueue[ss.CurrentActionIndex].SigleActionType == ActionEnum.chargeAtk)
  701. {
  702. if (act.st == UnitActionStatus.ChargeAtkMove)
  703. {
  704. this.RemoveActionSubState(UnitActionSubStatus.ChargeAtkIdle);
  705. this.AddActionSubState(UnitActionSubStatus.ChargeAtkMove);
  706. }
  707. else if (act.st == UnitActionStatus.ChargeAtkIdle)
  708. {
  709. this.RemoveActionSubState(UnitActionSubStatus.ChargeAtkMove);
  710. this.AddActionSubState(UnitActionSubStatus.ChargeAtkIdle);
  711. }
  712. }
  713. }
  714. else if (CurrentState is StatePickObject)
  715. {
  716. if (act.st == UnitActionStatus.Move)
  717. {
  718. this.faceTo(act.d);
  719. this.setPos(act.x, act.y, this.IntersectMap);
  720. changeState(mUpdateMove);
  721. }
  722. }
  723. else if (CurrentState is StateDamage || CurrentState is StateDead || CurrentState is IStateNoneControllable)
  724. {
  725. }
  726. else if (CurrentActionStatus == UnitActionStatus.DaZuo || CurrentActionStatus == UnitActionStatus.DaZuoRecoveryAttr ||
  727. CurrentActionStatus == UnitActionStatus.Idle || CurrentActionStatus == UnitActionStatus.Move)
  728. {
  729. //changestate在帧中切换状态,这里提前判断下一个动作能否转向
  730. bool canChangeDircetion = true;
  731. StateSkill nextSkill = this.NextState as StateSkill;
  732. if (nextSkill != null && nextSkill.Skill != null)
  733. {
  734. UnitActionData action = nextSkill.Skill.GetCurAction();
  735. if(action != null && !action.IsControlFaceable)
  736. {
  737. canChangeDircetion = false;
  738. }
  739. }
  740. if (canChangeDircetion)
  741. {
  742. this.faceTo(act.d);
  743. }
  744. this.setPos(act.x, act.y, this.IntersectMap);
  745. if (act.st == UnitActionStatus.Idle)
  746. {
  747. doSomething();
  748. }
  749. else if (act.st == UnitActionStatus.Move)
  750. {
  751. changeState(mUpdateMove);
  752. }
  753. //Console.WriteLine("st=" + act.d);
  754. }
  755. }
  756. }
  757. protected virtual void doGuard(UnitGuardAction act)
  758. {
  759. if (this.IsGuard != act.guard)
  760. {
  761. var IsInCancelingGuard = this.IsGuard;
  762. this.IsGuard = act.guard;
  763. this.mIsSkillControlByServer = IsGuard || (mCurrentSyncMode != ZoneClient.SyncMode.MoveByClient_PreSkillByClient);
  764. if (IsGuard == false)
  765. {
  766. mAttackTo = null;
  767. cleanFocus();
  768. }
  769. else
  770. {
  771. mCheckGuard.Reset();
  772. }
  773. resetAI();
  774. if (NextState == null && IsInCancelingGuard && CurrentState is StateSkill)
  775. {
  776. TryEnqueueIdleState();
  777. }
  778. //通知待机状态\
  779. //if (act.forceNotify)
  780. {
  781. this.Virtual.doEvent(JSGCustomOpType.UpdateAutoBattleFlag);
  782. }
  783. }
  784. }
  785. protected virtual void doFollow(UnitFollowAction act)
  786. {
  787. this.mIsSkillControlByServer = act.follow || (mCurrentSyncMode != ZoneClient.SyncMode.MoveByClient_PreSkillByClient);
  788. //this.mIsSkillControlByServer = (mCurrentSyncMode != ZoneClient.SyncMode.MoveByClient_PreSkillByClient);
  789. }
  790. protected virtual void doSetSyncMode(UnitSetSyncModeAction act)
  791. {
  792. this.mCurrentSyncMode = act.Mode;
  793. this.mIsSkillControlByServer = IsGuard || (mCurrentSyncMode != ZoneClient.SyncMode.MoveByClient_PreSkillByClient);
  794. }
  795. protected virtual void doCancelBuff(UnitCancelBuffAction act)
  796. {
  797. BuffState bs = this.GetBuffByID(act.BuffID);
  798. if (bs != null && bs.Data.IsCancelBySelf)
  799. {
  800. this.removeBuff(act.BuffID, BuffState.EndResult_ByClientRemoved);
  801. }
  802. }
  803. protected virtual void doUnitSetSubStateAction(UnitSetSubStateAction act)
  804. {
  805. base.AddActionSubState((UnitActionSubStatus)(act.UnitSubState));
  806. }
  807. protected virtual void doPetTeleportAction(PlayPetTeleportAction act)
  808. {
  809. InstanceUnit petUnit = this.Virtual.GetPetUnit();
  810. if (petUnit != null)
  811. {
  812. if (petUnit.petTeleportTime < CommonLang.CUtils.CurrentTimeMS)
  813. {
  814. petUnit.petTeleportTime = CommonLang.CUtils.CurrentTimeMS+10*1000;
  815. petUnit.lastTeleportTime = CommonLang.CUtils.CurrentTimeMS+3*1000; //3秒之后开始返回
  816. //获取玩家当前坐标
  817. float x = this.get_x();
  818. float y = this.get_y();
  819. petUnit.setPos(this.get_x(), this.get_y(), this.IntersectMap);
  820. petUnit.faceTo(this.get_direction());
  821. State s = new PetLockState(petUnit);
  822. petUnit.changeState(s);
  823. }
  824. else
  825. {
  826. if (petUnit.lastTeleportTime < CommonLang.CUtils.CurrentTimeMS)
  827. {
  828. petUnit.lastTeleportTime = CommonLang.CUtils.CurrentTimeMS+3*1000; //3秒之后开始返回
  829. this.Virtual.SendMsgToClient(CommonAI.XmdsConstConfig.TIPS_CALL_BACK_BTN);
  830. }
  831. }
  832. }
  833. }
  834. #endregion
  835. // --------------------------------------------------------------------------------------
  836. #region PlayerQuests
  837. public virtual void InitQuestData(ICollection<QuestData> datas)
  838. {
  839. foreach (QuestData q in datas)
  840. {
  841. if (q.QuestID != null)
  842. {
  843. mQuests.Put(q.QuestID, q);
  844. }
  845. }
  846. }
  847. internal QuestData doQuestAccepted(string quest)
  848. {
  849. if (!string.IsNullOrEmpty(quest))
  850. {
  851. QuestData qd = new QuestData(quest);
  852. qd.State = QuestState.Accepted;
  853. mQuests.Put(quest, qd);
  854. return qd;
  855. }
  856. return null;
  857. }
  858. internal QuestData doQuestCommitted(string quest)
  859. {
  860. QuestData qd = mQuests.RemoveByKey(quest);
  861. if (qd != null)
  862. {
  863. qd.State = QuestState.Commited;
  864. onQuestCommitted(qd);
  865. }
  866. return qd;
  867. }
  868. /// <summary>
  869. /// 当任务完成时,子类覆盖的方法被调用
  870. /// </summary>
  871. /// <param name="qd"></param>
  872. protected virtual void onQuestCommitted(QuestData qd) { }
  873. internal QuestData doQuestDropped(string quest)
  874. {
  875. QuestData qd = mQuests.RemoveByKey(quest);
  876. if (qd != null)
  877. {
  878. qd.State = QuestState.Uncharted;
  879. }
  880. return qd;
  881. }
  882. internal QuestData doQuestStatusChanged(string quest, string key, string value)
  883. {
  884. QuestData qd = mQuests.Get(quest);
  885. if (qd != null)
  886. {
  887. qd.Attributes.Put(key, value);
  888. }
  889. return qd;
  890. }
  891. public virtual bool IsQuestAccepted(string quest)
  892. {
  893. QuestData qd = mQuests.Get(quest);
  894. if (qd != null)
  895. {
  896. string ret;
  897. if (qd.Attributes.TryGetValue("state", out ret))
  898. {
  899. return ret == "0";
  900. }
  901. return qd.State == QuestState.Accepted;
  902. }
  903. return false;
  904. }
  905. public virtual string GetQuestStatus(string quest, string key)
  906. {
  907. QuestData qd = mQuests.Get(quest);
  908. if (qd != null)
  909. {
  910. string value;
  911. if (qd.Attributes.TryGetValue(key, out value))
  912. {
  913. return value;
  914. }
  915. }
  916. return null;
  917. }
  918. public virtual QuestData GetQuest(string quest)
  919. {
  920. return mQuests.Get(quest);
  921. }
  922. #endregion
  923. //--------------------------------------------------------------------------------------
  924. /// <summary>
  925. /// 更新坐标移动状态
  926. /// </summary>
  927. public class StatePlayerUpdateMove : State
  928. {
  929. private UnitUpdatePosAction act;
  930. public bool IsPosChanged
  931. {
  932. get
  933. {
  934. if (act != null)
  935. {
  936. return act.x != unit.X || act.y != unit.Y;
  937. }
  938. return false;
  939. }
  940. }
  941. public StatePlayerUpdateMove(InstancePlayer unit)
  942. : base(unit)
  943. {
  944. }
  945. public void SetPos(UnitUpdatePosAction act)
  946. {
  947. // TODO 检测作弊
  948. this.act = act;
  949. }
  950. public override bool onBlock(State new_state)
  951. {
  952. return true;
  953. }
  954. protected override void onStart()
  955. {
  956. unit.SetActionStatus(UnitActionStatus.Move);
  957. }
  958. protected override void onUpdate()
  959. {
  960. unit.SetActionStatus(UnitActionStatus.Move);
  961. }
  962. protected override void onStop()
  963. {
  964. }
  965. }
  966. //--------------------------------------------------------------------------------------
  967. /// <summary>
  968. /// 摇杆控制移动状态
  969. /// </summary>
  970. protected class StatePlayerControlMove : State
  971. {
  972. private float mDirection;
  973. private UnitAxisAction mAction;
  974. public UnitAxisAction Action
  975. {
  976. get { return mAction; }
  977. set
  978. {
  979. mAction = value;
  980. mDirection = MathVector.getDegree(value.dx, value.dy);
  981. }
  982. }
  983. public float Direction
  984. {
  985. get { return mDirection; }
  986. }
  987. public StatePlayerControlMove(InstancePlayer unit)
  988. : base(unit)
  989. {
  990. }
  991. public override bool onBlock(State new_state)
  992. {
  993. return true;
  994. }
  995. protected override void onStart()
  996. {
  997. unit.SetActionStatus(UnitActionStatus.Move);
  998. }
  999. protected override void onUpdate()
  1000. {
  1001. unit.faceTo(mDirection);
  1002. unit.moveBlockTo(unit.Direction, unit.MoveSpeedSEC, zone.UpdateIntervalMS);
  1003. unit.SetActionStatus(UnitActionStatus.Move);
  1004. }
  1005. protected override void onStop()
  1006. {
  1007. }
  1008. }
  1009. //--------------------------------------------------------------------------------------
  1010. protected class StatePlayerAttackTo : State
  1011. {
  1012. private TargetPos target;
  1013. private MoveAI moveAI;
  1014. private bool is_attack;
  1015. public bool IsAttack { get { return is_attack; } }
  1016. public bool IsDone { get { return target == null; } }
  1017. public StatePlayerAttackTo(InstancePlayer unit, float tx, float ty, bool attack)
  1018. : base(unit)
  1019. {
  1020. this.target = new TargetPos(tx, ty);
  1021. this.is_attack = attack;
  1022. }
  1023. public override bool onBlock(State new_state)
  1024. {
  1025. return true;
  1026. }
  1027. override protected void onStart()
  1028. {
  1029. this.moveAI = new MoveAI(unit, true, 0);
  1030. this.moveAI.IsNoWayAutoFindNear = false; ;
  1031. if (target != null)
  1032. {
  1033. this.moveAI.FindPath(target);
  1034. unit.SetActionStatus(UnitActionStatus.Move);
  1035. }
  1036. else
  1037. {
  1038. unit.SetActionStatus(UnitActionStatus.Idle);
  1039. }
  1040. }
  1041. override protected void onUpdate()
  1042. {
  1043. if (target == null)
  1044. {
  1045. unit.doSomething();
  1046. }
  1047. else
  1048. {
  1049. var result = this.moveAI.Update();
  1050. if (result.HasFlag(MoveResult.MOVE_RESULT_ARRIVED))
  1051. {
  1052. do_stop();
  1053. }
  1054. else if (result.HasFlag(MoveResult.MOVE_RESULT_MIN_STEP) && result.HasFlag(MoveResult.MOVE_RESULT_NO_WAY))
  1055. {
  1056. do_stop();
  1057. }
  1058. else if (result.HasFlag(MoveResult.MOVE_RESULT_BLOCK_OBJ))
  1059. {
  1060. if (CMath.includeRoundPoint(unit.X, unit.Y, unit.BodyBlockSize, target.X, target.Y))
  1061. {
  1062. do_stop();
  1063. }
  1064. else if (result.obj != null && CMath.includeRoundPoint(result.obj.X, result.obj.Y, result.obj.BodyBlockSize, target.X, target.Y))
  1065. {
  1066. do_stop();
  1067. }
  1068. }
  1069. }
  1070. }
  1071. protected override void onStop()
  1072. {
  1073. }
  1074. private void do_stop()
  1075. {
  1076. target = null;
  1077. unit.doSomething();
  1078. }
  1079. class TargetPos : IPositionObject
  1080. {
  1081. public float Direction { get; set; }
  1082. public float RadiusSize { get; set; }
  1083. public float X { get; set; }
  1084. public float Y { get; set; }
  1085. public TargetPos(float tx, float ty)
  1086. {
  1087. this.X = tx;
  1088. this.Y = ty;
  1089. }
  1090. }
  1091. }
  1092. }
  1093. }