ZoneObject.Player.cs 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463
  1. using CommonAI.RTS;
  2. using CommonLang.Vector;
  3. using CommonAI.Zone;
  4. using CommonAI.Zone.Helper;
  5. using CommonLang;
  6. using System;
  7. using System.Collections.Generic;
  8. using CommonAI.Zone.Attributes;
  9. using CommonAI.ZoneClient.Agent;
  10. using CommonLang.Log;
  11. namespace CommonAI.ZoneClient
  12. {
  13. public class ZoneActor : ZoneUnit
  14. {
  15. protected Logger log = LoggerFactory.GetLogger("CommonAI");
  16. public override float X { get { return mLocalPos.X; } }
  17. public override float Y { get { return mLocalPos.Y; } }
  18. public override bool TouchObj
  19. {
  20. get
  21. {
  22. if (Parent.Templates.CFG.PLAYER_NONE_TOUCH)
  23. return false;
  24. return base.TouchObj;
  25. }
  26. }
  27. /// <summary>
  28. /// 单位释放技能时,自动朝向锁定敌人
  29. /// </summary>
  30. public bool IsSkillAutoFocusTarget { get; set; }
  31. /// <summary>
  32. /// 当前是否为自动战斗
  33. /// </summary>
  34. public bool IsGuard { get; set; }
  35. /// <summary>
  36. /// 当前是否为自动跟随
  37. /// </summary>
  38. public bool IsFollow { get; set; }
  39. //标识是否处于被嘲讽中
  40. protected bool mIsMocking = false;
  41. //标识点击了技能按钮,等待服务器下发的DoForceSyncPosEvent中
  42. //此期间会停止响应移动操作
  43. //protected int mIsWaittingSkillLaunch = 0;
  44. /// <summary>
  45. /// 选中的目标单位
  46. /// </summary>
  47. public uint TargetUnitID { get { return (mFocusTarget != null) ? mFocusTarget.targetUnitID : 0; } }
  48. public PlayerFocuseTargetEvent LastFocusTarget { get { return mFocusTarget; } }
  49. /// <summary>
  50. /// 进入场景推送过来的数据
  51. /// </summary>
  52. public LockActorEvent LoginData { get { return mLoginData; } }
  53. public UnitActionStatus RemoteStatus
  54. {
  55. get { return mRemoteState.UnitMainState; }
  56. }
  57. private readonly LockActorEvent mLoginData;
  58. // private TimeInterval<int> mCheckGuard;
  59. private SyncMode mCurrentSyncMode;
  60. private SyncPosEvent.UnitPos mRemoteSyncPos;
  61. //private SyncPosEvent.UnitState mRemoteSyncState;
  62. private UnitAxisAction mSendAxis;
  63. private bool mSendAxisSmoothTurn = false;
  64. private Vector2 mSendFaceTo;
  65. private UnitUpdatePosAction mSendPos;
  66. private readonly UnitUpdatePosAction mLastSendPos = new UnitUpdatePosAction();
  67. private readonly float mMinStepSEC;
  68. private PlayerFocuseTargetEvent mFocusTarget;
  69. public ZoneActor(UnitInfo unit, LockActorEvent info, ZoneLayer parent)
  70. : base(unit, info.UnitData, parent, null)
  71. {
  72. this.mMinStepSEC = Templates.CFG.OBJECT_MOVE_TO_MIN_STEP_SEC;
  73. //this.mCheckGuard = new TimeInterval<int>(Templates.CFG.AI_VIEW_TRIGGER_CHECK_TIME_MS);
  74. this.mLoginData = info;
  75. this.ResetItems();
  76. if (info.CurrentPlayerVars != null)
  77. {
  78. foreach (CommonAI.ZoneClient.ClientStruct.ZoneEnvironmentVar var in info.CurrentPlayerVars)
  79. {
  80. mEnvironmentVarMap[var.Key] = var.Value;
  81. }
  82. }
  83. }
  84. protected override void Disposing()
  85. {
  86. this.clearAgents();
  87. this.clearSkillAction();
  88. base.Disposing();
  89. //this.mOnGuardFocusTarget = null;
  90. }
  91. public override void InitSkills()
  92. {
  93. //actor有单独的消息推送,不读配置
  94. }
  95. protected internal override void OnAdded()
  96. {
  97. base.OnAdded();
  98. /*if (mLoginData.Skills != null) //稍后有消息推送,重复了
  99. {
  100. this.DoEvent(mLoginData.Skills);
  101. }*/
  102. SyncBuffStatus(mLoginData.UnitData.CurrentBuffStatus);
  103. SyncSkillStatus(mLoginData.CurrentSkillStatus);
  104. SyncItems(mLoginData.CurrentItemStatus);
  105. this.mCurrentSyncMode = Parent.ActorSyncMode;
  106. Parent.SendAction(new UnitSetSyncModeAction(this.ObjectID, Parent.ActorSyncMode));
  107. }
  108. //-------------------------------------------------------------------------------------------
  109. /// <summary>
  110. /// 截获后端发送的事件
  111. /// </summary>
  112. /// <param name="e"></param>
  113. internal protected override void DoEvent(ObjectEvent e)
  114. {
  115. if (Parent.ActorSyncMode == SyncMode.MoveByClient_PreSkillByClient)
  116. {
  117. //忽略Jump,客户端本地PreSkillClient已经处理位移//
  118. if (e is UnitJumpEvent)
  119. {
  120. return;
  121. }
  122. }
  123. if (e is PlayerSkillStopEvent)
  124. {
  125. doPlayerSkillStopEvent(e as PlayerSkillStopEvent);
  126. }
  127. else if (e is UnitForceSyncPosEvent)
  128. {
  129. doForceSyncPosEvent(e as UnitForceSyncPosEvent);
  130. }
  131. else if (e is UnitSkillActionChangeEvent)
  132. {
  133. doUnitSkillActionChangeEvent(e as UnitSkillActionChangeEvent);
  134. }
  135. else if (e is UnitSyncInventoryItemEvent)
  136. {
  137. DoSyncItem(e as UnitSyncInventoryItemEvent);
  138. }
  139. else if (e is UnitUseItemEvent)
  140. {
  141. DoUseItem(e as UnitUseItemEvent);
  142. }
  143. if (e is UnitForceSyncPosEvent &&
  144. mCurrentSkillAction is PreSkillByClient)
  145. {
  146. var action = mCurrentSkillAction as PreSkillByClient;
  147. if (action.SkillData.ActionPriority == 0)
  148. return;
  149. }
  150. base.DoEvent(e);
  151. }
  152. //-------------------------------------------------------------------------------------
  153. #region __Agents__
  154. private List<AbstractAgent> mAgents = new List<AbstractAgent>(1);
  155. private List<AbstractAgent> mUpdateAgents = new List<AbstractAgent>(1);
  156. public int AgentCount { get { return mAgents.Count; } }
  157. public AbstractAgent AddAgent(AbstractAgent agent)
  158. {
  159. if (!agent.IsDuplicate)
  160. {
  161. for (int i = mAgents.Count - 1; i >= 0; --i)
  162. {
  163. var ag = mAgents[i];
  164. if (agent.GetType() == ag.GetType())
  165. {
  166. ag.Abort();
  167. RemoveAgent(ag);
  168. }
  169. }
  170. }
  171. mAgents.Add(agent);
  172. agent.InternalInit(this);
  173. //Parent.QueueTask((z) =>
  174. //{
  175. // agent.InternalStart();
  176. //});
  177. agent.InternalStart();
  178. return agent;
  179. }
  180. public bool RemoveAgent(AbstractAgent agent)
  181. {
  182. if (mAgents.Remove(agent))
  183. {
  184. //Parent.QueueTask((z) =>
  185. //{
  186. // agent.InternalEnd();
  187. // agent.Dispose();
  188. //});
  189. agent.InternalEnd();
  190. agent.Dispose();
  191. return true;
  192. }
  193. return false;
  194. }
  195. public T GetAgentByType<T>() where T : AbstractAgent
  196. {
  197. for (int i = 0; i < mAgents.Count; i++)
  198. {
  199. if (mAgents[i] is T)
  200. {
  201. return mAgents[i] as T;
  202. }
  203. }
  204. return null;
  205. }
  206. private void ForEachAgent(Action<AbstractAgent> action)
  207. {
  208. mUpdateAgents.AddRange(mAgents);
  209. try
  210. {
  211. mUpdateAgents.ForEach(action);
  212. }
  213. finally
  214. {
  215. mUpdateAgents.Clear();
  216. }
  217. }
  218. private void MAgents_OnBeginUpdate(AbstractAgent obj)
  219. {
  220. if (obj.IsEnd)
  221. {
  222. RemoveAgent(obj);
  223. }
  224. else
  225. {
  226. obj.InternalBeginUpdate(Parent.CurrentIntervalMS);
  227. }
  228. }
  229. private void MAgents_OnEndUpdate(AbstractAgent obj)
  230. {
  231. if (obj.IsEnd)
  232. {
  233. RemoveAgent(obj);
  234. }
  235. else
  236. {
  237. obj.InternalEndUpdate(Parent.CurrentIntervalMS);
  238. }
  239. }
  240. private void ForEachAgentOnBeginUpdate()
  241. {
  242. mUpdateAgents.AddRange(mAgents);
  243. try
  244. {
  245. for (int i = 0, n = mUpdateAgents.Count; i < n; i++)
  246. {
  247. MAgents_OnBeginUpdate(mUpdateAgents[i]);
  248. }
  249. }
  250. finally
  251. {
  252. mUpdateAgents.Clear();
  253. }
  254. }
  255. private void ForEachAgentOnEndUpdate()
  256. {
  257. mUpdateAgents.AddRange(mAgents);
  258. try
  259. {
  260. for (int i = 0, n = mUpdateAgents.Count; i < n; i++)
  261. {
  262. MAgents_OnEndUpdate(mUpdateAgents[i]);
  263. }
  264. }
  265. finally
  266. {
  267. mUpdateAgents.Clear();
  268. }
  269. }
  270. private void clearAgents()
  271. {
  272. foreach (var agt in mAgents)
  273. {
  274. agt.Dispose();
  275. }
  276. mAgents.Clear();
  277. }
  278. #endregion
  279. //-------------------------------------------------------------------------------------------
  280. internal protected override void Update()
  281. {
  282. base.Update();
  283. UpdateItems(Parent.CurrentIntervalMS);
  284. //ForEachAgent(MAgents_OnEndUpdate);
  285. ForEachAgentOnEndUpdate();
  286. }
  287. //-------------------------------------------------------------------------------------------
  288. #region __update_预处理__
  289. internal protected override void UpdateAI()
  290. {
  291. ForEachAgentOnBeginUpdate();
  292. int intervalMS = Parent.CurrentIntervalMS;
  293. if (IsGuard)
  294. {
  295. update_ai_Guard(intervalMS);
  296. }
  297. else if (IsFollow)
  298. {
  299. }
  300. else
  301. {
  302. if (mCurrentSyncMode != Parent.ActorSyncMode)
  303. {
  304. mCurrentSyncMode = Parent.ActorSyncMode;
  305. Parent.SendAction(new UnitSetSyncModeAction(this.ObjectID, Parent.ActorSyncMode));
  306. }
  307. switch (Parent.ActorSyncMode)
  308. {
  309. case SyncMode.ForceByServer:
  310. update_ai_ForceByServer(intervalMS);
  311. break;
  312. case SyncMode.MoveByClient_PreSkillByClient:
  313. update_ai_MoveByClient_PreSkillByClient(intervalMS);
  314. break;
  315. }
  316. }
  317. updateServerSkillAction(intervalMS);
  318. mSendFaceTo = null;
  319. mSendPos = null;
  320. }
  321. private void update_ai_Guard(int intervalMS)
  322. {
  323. base.UpdateAI();
  324. }
  325. // 服务端强同步 //
  326. private void update_ai_ForceByServer(int intervalMS)
  327. {
  328. if (mSendAxis != null)
  329. {
  330. //请求服务端移动//
  331. Parent.SendAction(mSendAxis);
  332. }
  333. else if (mSendPos != null)
  334. {
  335. Parent.SendAction(mSendPos);
  336. }
  337. }
  338. // 客户端本地处理移动,实时上传自己坐标位置,技能预先本地表现 //
  339. private void update_ai_MoveByClient_PreSkillByClient(int intervalMS)
  340. {
  341. UnitAxisAction axis = mSendAxis;
  342. //有摇杆动作//
  343. if (axis != null && !axis.IsZero)
  344. {
  345. // 处理技能以及控制位移 //
  346. if (mCurrentSkillAction is PreSkillByClient)
  347. {
  348. var action = mCurrentSkillAction as PreSkillByClient;
  349. //客户端预先技能动作//
  350. if (action.IsDone)
  351. {
  352. base.mDirection = base.mDirectionChange;
  353. clearSkillAction();
  354. Parent.SendAction(axis);
  355. SetCurrentState(UnitActionStatus.Move);
  356. }
  357. else
  358. {
  359. if (IsCanControlMove)
  360. {
  361. Parent.SendAction(axis);
  362. if (action.SkillData.ActionPriority == -1 ||
  363. action.SkillData.ID == 110500 ||
  364. action.SkillData.ID == 110510 ||
  365. action.SkillData.ID == 110520 ||
  366. action.SkillData.ID == 110530 ||
  367. action.SkillData.ID == 110540 ||
  368. action.SkillData.ID == 110550 ||
  369. action.SkillData.ID == 110560)
  370. {
  371. action.setMoveTo(axis);
  372. SkillState state = action.State;
  373. if (state.ActionType == ActionEnum.chargeAtk && state.CurrentActionID == 1)
  374. {
  375. this.SetCurrentState(UnitActionStatus.ChargeAtkMove, 0, null);
  376. }
  377. }
  378. }
  379. }
  380. }
  381. else if (mCurrentSkillAction is PreSkillByServer)
  382. {
  383. float direction = MathVector.getDegree(axis.dx, axis.dy);
  384. if (IsCanControlMove)
  385. {
  386. float ispeed = MoveHelper.GetDistance(intervalMS, base.MoveSpeedSEC);
  387. float addX = (float)(Math.Cos(direction) * ispeed);
  388. float addY = (float)(Math.Sin(direction) * ispeed);
  389. var action = mCurrentSkillAction as PreSkillByServer;
  390. if (action != null && action.State != null && action.State.ActionType == ActionEnum.chargeAtk)
  391. {
  392. this.SetCurrentState(UnitActionStatus.ChargeAtkMove);
  393. }
  394. this.PreBlockMove(ref addX, ref addY);
  395. this.PreMove(addX, addY);
  396. }
  397. if (IsCanControlFaceTo)
  398. {
  399. if (mSendAxisSmoothTurn)
  400. {
  401. base.mDirectionChange = direction;
  402. base.mDirection = MoveHelper.DirectionChange(
  403. mDirectionChange,
  404. mDirection,
  405. this.TurnSpeedSEC,
  406. intervalMS);
  407. }
  408. else
  409. {
  410. base.mDirection = direction;
  411. base.mDirectionChange = direction;
  412. }
  413. }
  414. }
  415. else
  416. {
  417. //if (mCurrentSkillAction == null && mIsWaittingSkillLaunch > 0)
  418. //{
  419. // launchSkill消息还没下发,暂停移动,解决移动--》普攻的位移抖动
  420. // --mIsWaittingSkillLaunch;
  421. // YXJDebug.logWarning(">>ignore moving, when waitting launching skill:{0}", mIsWaittingSkillLaunch);
  422. //}
  423. //else
  424. {
  425. float ispeed = MoveHelper.GetDistance(intervalMS, base.MoveSpeedSEC);
  426. float direction = MathVector.getDegree(axis.dx, axis.dy);
  427. float addX = (float)(Math.Cos(direction) * ispeed);
  428. float addY = (float)(Math.Sin(direction) * ispeed);
  429. if (IsCanControlMove)
  430. {
  431. this.PreBlockMove(ref addX, ref addY);
  432. this.PreMove(addX, addY);
  433. this.SetCurrentState(UnitActionStatus.Move);
  434. }
  435. if (IsCanControlFaceTo)
  436. {
  437. if (mSendAxisSmoothTurn)
  438. {
  439. base.mDirectionChange = direction;
  440. base.mDirection = MoveHelper.DirectionChange(
  441. mDirectionChange,
  442. mDirection,
  443. this.TurnSpeedSEC,
  444. intervalMS);
  445. }
  446. else
  447. {
  448. base.mDirection = direction;
  449. base.mDirectionChange = direction;
  450. }
  451. }
  452. }
  453. }
  454. }
  455. else
  456. {
  457. //停止技能移动//
  458. if (mCurrentSkillAction is PreSkillByClient)
  459. {
  460. var action = mCurrentSkillAction as PreSkillByClient;
  461. action.setMoveTo(null);
  462. SkillState state = action.State;
  463. if (state.ActionType == ActionEnum.chargeAtk && state.CurrentActionID > 0)
  464. {
  465. this.SetCurrentState(UnitActionStatus.ChargeAtkIdle);
  466. }
  467. }
  468. //处理UpdatePos移动//
  469. else if (mSendPos != null)
  470. {
  471. if (IsCanControlFaceTo)
  472. {
  473. base.mDirection = mSendPos.d;
  474. base.mDirectionChange = mSendPos.d;
  475. }
  476. if (IsCanControlMove)
  477. {
  478. SetCurrentState(mSendPos.st);
  479. this.PreSetPos(mSendPos.x, mSendPos.y);
  480. }
  481. }
  482. else
  483. {
  484. if (!mIsMocking && CurrentState == UnitActionStatus.Move)
  485. {
  486. SetCurrentState(UnitActionStatus.Idle);
  487. }
  488. //嘲讽时间到了后,服务器没有置状态,客户端强制置回(有隐患)
  489. if (CurrentState == UnitActionStatus.ServerSyncMove && (CurrentSubState & (byte)UnitActionSubStatus.Mocking) == 0)
  490. {
  491. SetCurrentState(UnitActionStatus.Idle);
  492. }
  493. }
  494. if (mSendFaceTo != null)
  495. {
  496. if (mCurrentSkillAction is PreSkillByClient)
  497. {
  498. var action = mCurrentSkillAction as PreSkillByClient;
  499. //客户端预先技能动作//
  500. if (!action.IsDone)
  501. {
  502. action.setFaceTo(mSendFaceTo);
  503. }
  504. else
  505. {
  506. this.PreFaceTo(mSendFaceTo.X, mSendFaceTo.Y);
  507. }
  508. }
  509. else if (CurrentState == UnitActionStatus.Move || CurrentState == UnitActionStatus.Idle)
  510. {
  511. this.PreFaceTo(mSendFaceTo.X, mSendFaceTo.Y);
  512. }
  513. }
  514. }
  515. //有主动控制位移状态//
  516. if (CurrentState == UnitActionStatus.Move || CurrentState == UnitActionStatus.Idle || mCurrentSkillAction != null)
  517. {
  518. if (mSkillMove != null && mSkillMove.Update(intervalMS))
  519. {
  520. mIsSkillMove = false;
  521. mSkillMove = null;
  522. }
  523. }
  524. else
  525. {
  526. FixPos(intervalMS, mLocalPos, mPos);
  527. if (mSkillMove != null)
  528. {
  529. mSkillMove.Stop();
  530. mSkillMove = null;
  531. }
  532. }
  533. //客户端预先技能动作//
  534. if (mCurrentSkillAction is PreSkillByClient)
  535. {
  536. var action = mCurrentSkillAction as PreSkillByClient;
  537. action.onUpdate(intervalMS);
  538. if (mCurrentSkillAction.IsDone)
  539. {
  540. clearSkillAction();
  541. }
  542. }
  543. updatePosActionCache.object_id = this.ObjectID;
  544. updatePosActionCache.isHalf = Parent.IsHalfSync;
  545. updatePosActionCache.x = mLocalPos.X;
  546. updatePosActionCache.y = mLocalPos.Y;
  547. updatePosActionCache.d = mDirection;
  548. updatePosActionCache.st = CurrentState;
  549. if (!updatePosActionCache.DataEquals(mLastSendPos))
  550. {
  551. //YXJDebug.logWarning(">>>>>>>>>>>>>>>SendServerPos:{0},{1}", updatePosActionCache.x, updatePosActionCache.y);
  552. Parent.SendAction(updatePosActionCache);
  553. }
  554. mLastSendPos.Set(updatePosActionCache);
  555. }
  556. private readonly UnitUpdatePosAction updatePosActionCache = new UnitUpdatePosAction();
  557. #endregion
  558. //-----------------------------------------------------------------------------------------------------------
  559. #region __sync_pos_同步服务器坐标__
  560. //-------------------------------------------------------------------------------------------
  561. private void doForceSyncPosEvent(UnitForceSyncPosEvent e)
  562. {
  563. //YXJDebug.logError(">>Player_DoForceSyncPosEvent:{0},{1}, state:{2},{3}", e.X, e.Y, e.UnitMainState, e.UnitSubState);
  564. if (this.Parent != null && this.Parent.IsSceneDujie() && e.UnitMainState == (byte)UnitActionStatus.Move)
  565. {
  566. //YXJDebug.logWarning(">IgnoreForceSyncPos_p@move: {0}{1}, state:{2},{3}", ObjectID, Name, e.UnitMainState, e.UnitSubState);
  567. return;
  568. }
  569. //技能移动本地做预演,坐标修正在update中去做(服务器协议发错,应该是syncpos,之前已经告知服务器)
  570. if ((UnitActionStatus)e.UnitMainState != UnitActionStatus.Skill)
  571. {
  572. ForceSyncPos(e.X, e.Y);
  573. }
  574. //else if ((e.UnitSubState & (byte)UnitActionSubStatus.ChargeAtkIdle) != 0)
  575. //{
  576. // mIsWaittingSkillLaunch = 0;
  577. //}
  578. this.mDirection = mDirectionChange = mRemoteSyncPos.Direction = e.Direction;
  579. this.mRemoteState.UnitMainState = (UnitActionStatus)e.UnitMainState;
  580. this.mRemoteState.UnitSubState = e.UnitSubState;
  581. base.SetCurrentState(ref mRemoteState);
  582. if (mCurrentSkillAction != null)
  583. {
  584. if (RemoteStatus != UnitActionStatus.Skill)
  585. {
  586. clearSkillAction();
  587. }
  588. else if(mCurrentSkillAction.SkillData.ID == 603064) //成魔3技能,要支持Blink,,,暂时先这么着
  589. {
  590. ForceSyncPos(e.X, e.Y);
  591. }
  592. }
  593. }
  594. protected internal override void UpdatePos(int intervalMS)
  595. {
  596. if (IsGuard || IsFollow || mIsMocking)
  597. {
  598. base.UpdatePos(intervalMS);
  599. }
  600. }
  601. public override void SyncPos(ref SyncPosEvent.UnitState pos)
  602. {
  603. //if(mIsWaittingSkillLaunch > 0)
  604. //{
  605. // if(pos.UnitMainState != UnitActionStatus.Skill)
  606. // {
  607. // mIsWaittingSkillLaunch = 0;
  608. // }
  609. //}
  610. //更新被嘲讽状态
  611. mIsMocking = (pos.UnitSubState & (byte)UnitActionSubStatus.Mocking) != 0;
  612. this.mRemoteState = pos;
  613. if (IsGuard || IsFollow)
  614. {
  615. this.SetCurrentState(ref mRemoteState);
  616. }
  617. else
  618. {
  619. switch (Parent.ActorSyncMode)
  620. {
  621. case SyncMode.ForceByServer:
  622. sync_pos_ForceByServer(ref pos);
  623. break;
  624. case SyncMode.MoveByClient_PreSkillByClient:
  625. sync_pos_MoveByClient_PreSkillByClient(ref pos);
  626. break;
  627. }
  628. if (pos.UnitSubState != this.CurrentSubState)
  629. {
  630. base.SetCurrentSubState(pos.UnitSubState);
  631. }
  632. }
  633. }
  634. public override void SyncPos(ref SyncPosEvent.UnitPos pos)
  635. {
  636. this.mRemoteSyncPos = pos;
  637. if (IsGuard || IsFollow)
  638. {
  639. base.mDirection = pos.Direction;
  640. base.mDirectionChange = pos.Direction;
  641. base.SyncPos(ref pos);
  642. }
  643. else
  644. {
  645. base.mPos.SetX(pos.X);
  646. base.mPos.SetY(pos.Y);
  647. switch (Parent.ActorSyncMode)
  648. {
  649. case SyncMode.ForceByServer:
  650. sync_pos_ForceByServer(ref pos);
  651. break;
  652. case SyncMode.MoveByClient_PreSkillByClient:
  653. sync_pos_MoveByClient_PreSkillByClient(ref pos);
  654. break;
  655. }
  656. //YXJDebug.logWarning(">>{0}>PlayersyncPos, curState:{1}/{2}-->{3}/{4}, x:{5},y:{6}", Name, (int)CurrentState, (int)CurrentSubState, (int)mRemoteState.UnitMainState, (int)mRemoteState.UnitSubState, pos.X, pos.Y);
  657. if (mIsMocking)
  658. {
  659. this.mDirectionChange = pos.Direction;
  660. this.mDirection = MoveHelper.DirectionChange(mDirectionChange, mDirection, mTurnSpeedSEC, Parent.CurrentIntervalMS);
  661. if (CurrentState == UnitActionStatus.Idle && mRemoteState.UnitMainState == UnitActionStatus.Move)
  662. {
  663. this.SetCurrentState(ref mRemoteState);
  664. }
  665. }
  666. }
  667. }
  668. private void sync_pos_ForceByServer(ref SyncPosEvent.UnitState pos)
  669. {
  670. this.SetCurrentState(ref pos);
  671. }
  672. private void sync_pos_ForceByServer(ref SyncPosEvent.UnitPos pos)
  673. {
  674. // 强同步 //
  675. base.mLocalPos.SetX(pos.X);
  676. base.mLocalPos.SetY(pos.Y);
  677. base.mDirection = pos.Direction;
  678. base.mDirectionChange = pos.Direction;
  679. if (Parent.IsSyncZ) { this.Z = pos.Z; }
  680. }
  681. private void sync_pos_MoveByClient_PreSkillByClient(ref SyncPosEvent.UnitState pos)
  682. {
  683. if (CurrentState == UnitActionStatus.Idle || CurrentState == UnitActionStatus.Move || CurrentState == UnitActionStatus.ServerSyncMove)
  684. {
  685. if (RemoteStatus == UnitActionStatus.Skill)
  686. {
  687. this.SetCurrentState(ref mRemoteState);
  688. }
  689. else if (RemoteStatus != UnitActionStatus.Idle && RemoteStatus != UnitActionStatus.Move && RemoteStatus != UnitActionStatus.ServerSyncMove)
  690. {
  691. this.SetCurrentState(ref mRemoteState);
  692. }
  693. //不能移动切入,状态置成Idle(不应该有互斥状态存在 跑和不能移动)
  694. else if (pos.UnitMainState == UnitActionStatus.Move && (pos.UnitSubState & (byte)UnitActionSubStatus.CanNotMove) != 0)
  695. {
  696. this.SetCurrentState(ref mRemoteState);
  697. }
  698. }
  699. else
  700. {
  701. this.SetCurrentState(ref mRemoteState);
  702. }
  703. if (mCurrentSkillAction != null)
  704. {
  705. if (RemoteStatus != UnitActionStatus.Skill)
  706. {
  707. clearSkillAction();
  708. }
  709. }
  710. //if (SetStealtState != null)
  711. //{
  712. // log.Error("SetStealtState :" + ((pos.UnitSubState & (byte)UnitActionSubStatus.Stealth) != 0).ToString());
  713. // SetStealtState((pos.UnitSubState & (byte)UnitActionSubStatus.Stealth) != 0);
  714. //}
  715. }
  716. private void sync_pos_MoveByClient_PreSkillByClient(ref SyncPosEvent.UnitPos pos)
  717. {
  718. if (CurrentState == UnitActionStatus.Idle || CurrentState == UnitActionStatus.Move || CurrentState == UnitActionStatus.ServerSyncMove)
  719. {
  720. if (RemoteStatus == UnitActionStatus.Skill)
  721. {
  722. }
  723. else if (RemoteStatus != UnitActionStatus.Idle && RemoteStatus != UnitActionStatus.Move && RemoteStatus != UnitActionStatus.ServerSyncMove)
  724. {
  725. base.mDirection = pos.Direction;
  726. base.mDirectionChange = pos.Direction;
  727. }
  728. }
  729. else
  730. {
  731. // 强同步 //
  732. if (RemoteStatus != UnitActionStatus.Skill &&
  733. RemoteStatus != UnitActionStatus.Idle &&
  734. RemoteStatus != UnitActionStatus.Move)
  735. {
  736. base.mDirection = pos.Direction;
  737. base.mDirectionChange = pos.Direction;
  738. //UnityEngine.Debug.Log("syncpos ID = " + pos.ID + " D = " + pos.Direction);
  739. }
  740. }
  741. }
  742. #endregion
  743. //-------------------------------------------------------------------------------------------
  744. #region __Item__
  745. private HashMap<int, TimeExpire<ItemTemplate>> mCoolDownItems = new HashMap<int, TimeExpire<ItemTemplate>>();
  746. internal void SyncItems(ClientStruct.UnitItemStatus[] items)
  747. {
  748. if (items != null)
  749. {
  750. mItemSlots = new List<ItemSlot>(items.Length);
  751. foreach (ClientStruct.UnitItemStatus st in items)
  752. {
  753. ItemSlot slot = new ItemSlot(this);
  754. if (st.Count > 0)
  755. {
  756. slot.Sync(st);
  757. }
  758. mItemSlots.Add(slot);
  759. }
  760. }
  761. }
  762. private void ResetItems()
  763. {
  764. mItemSlots = new List<ItemSlot>(Info.InventorySize);
  765. for (int i = 0; i < Info.InventorySize; i++)
  766. {
  767. mItemSlots.Add(new ItemSlot(this));
  768. }
  769. }
  770. private void UpdateItems(int intervalMS)
  771. {
  772. if (mCoolDownItems.Count > 0)
  773. {
  774. using (var removed = ListObjectPool<TimeExpire<ItemTemplate>>.AllocAutoRelease())
  775. {
  776. foreach (TimeExpire<ItemTemplate> expire in mCoolDownItems.Values)
  777. {
  778. if (expire.Update(intervalMS))
  779. {
  780. removed.Add(expire);
  781. }
  782. }
  783. if (removed.Count > 0)
  784. {
  785. foreach (TimeExpire<ItemTemplate> expire in removed)
  786. {
  787. if (expire.IsEnd)
  788. {
  789. mCoolDownItems.RemoveByKey(expire.Tag.ID);
  790. }
  791. }
  792. }
  793. }
  794. }
  795. }
  796. protected virtual void DoSyncItem(UnitSyncInventoryItemEvent me)
  797. {
  798. ItemSlot slot = GetItem(me.Index);
  799. if (slot != null)
  800. {
  801. slot.Set(me);
  802. }
  803. }
  804. protected virtual void DoUseItem(UnitUseItemEvent me)
  805. {
  806. ItemTemplate item = Templates.getItem(me.ItemTemplateID);
  807. if (item != null)
  808. {
  809. if (item.UseCoolDownTimeMS > 0)
  810. {
  811. mCoolDownItems.Put(item.ID, new TimeExpire<ItemTemplate>(item, item.UseCoolDownTimeMS));
  812. }
  813. }
  814. }
  815. public TimeExpire<ItemTemplate> GetCoolDownItem(int itemTemplateID)
  816. {
  817. return mCoolDownItems.Get(itemTemplateID);
  818. }
  819. internal List<ItemSlot> mItemSlots = new List<ItemSlot>();
  820. public class ItemSlot
  821. {
  822. public ZoneUnit Owner { get; private set; }
  823. private ItemTemplate data;
  824. private int count;
  825. public bool IsEmpty { get { return count == 0 || data == null; } }
  826. public ItemTemplate Data { get { return data; } }
  827. public int Count { get { return count; } }
  828. public ItemSlot(ZoneUnit unit)
  829. {
  830. this.Owner = unit;
  831. }
  832. internal void Sync(ClientStruct.UnitItemStatus syn)
  833. {
  834. ItemTemplate item = Owner.Templates.getItem(syn.ItemTemplateID);
  835. if (item != null)
  836. {
  837. this.data = item;
  838. this.count = syn.Count;
  839. }
  840. }
  841. internal void Set(UnitSyncInventoryItemEvent me)
  842. {
  843. if (this.data != null && this.data.ID == me.ItemTemplateID)
  844. {
  845. this.count = me.Count;
  846. return;
  847. }
  848. ItemTemplate item = Owner.Templates.getItem(me.ItemTemplateID);
  849. if (item != null)
  850. {
  851. this.data = item;
  852. this.count = me.Count;
  853. }
  854. }
  855. }
  856. [Obsolete]
  857. public List<ItemSlot> GetItemSlots()
  858. {
  859. return new List<ItemSlot>(mItemSlots);
  860. }
  861. public void GetItemSlots(List<ItemSlot> ret)
  862. {
  863. ret.AddRange(mItemSlots);
  864. }
  865. public ItemSlot GetItem(int index)
  866. {
  867. if (index >= 0 && index < mItemSlots.Count)
  868. {
  869. return mItemSlots[index];
  870. }
  871. return null;
  872. }
  873. public ItemSlot GetItemByTemplateID(int itemTemplateID)
  874. {
  875. for (int i = mItemSlots.Count - 1; i >= 0; --i)
  876. {
  877. ItemSlot slot = mItemSlots[i];
  878. if (!slot.IsEmpty && slot.Data.TemplateID == itemTemplateID)
  879. {
  880. return slot;
  881. }
  882. }
  883. return null;
  884. }
  885. #endregion
  886. //-----------------------------------------------------------------------------------------------------------
  887. #region __SEND_ACTION_TO_SERVER__
  888. public void SendAction(ObjectAction act)
  889. {
  890. Parent.SendAction(act);
  891. }
  892. public void SendRequest(ActorRequest req, ZoneLayer.OnResponseHandler handler, ZoneLayer.OnRequestTimeoutHandler timeout = null, int timeOutMS = 15000)
  893. {
  894. Parent.SendRequest(req, handler, timeout, timeOutMS);
  895. }
  896. public void SendReady()
  897. {
  898. Parent.SendAction(new UnitReadAction(base.ObjectID));
  899. }
  900. public void SendUnitAxis(float angle, bool smooth_turn = false)
  901. {
  902. this.mSendPos = null;
  903. if (IsGuard || IsFollow) return;
  904. UnitAxisAction ma = new UnitAxisAction(base.ObjectID);
  905. ma.dx = (float)Math.Cos(angle);
  906. ma.dy = (float)Math.Sin(angle);
  907. mSendAxis = ma;
  908. mSendAxisSmoothTurn = smooth_turn;
  909. }
  910. public void SendUnitAxis(float dx, float dy, bool smooth_turn = false)
  911. {
  912. this.mSendPos = null;
  913. if (IsGuard || IsFollow) return;
  914. UnitAxisAction ma = new UnitAxisAction(base.ObjectID);
  915. ma.dx = dx;
  916. ma.dy = dy;
  917. mSendAxis = ma;
  918. mSendAxisSmoothTurn = smooth_turn;
  919. }
  920. public void SendUpdatePos(float x, float y, float direction, UnitActionStatus st)
  921. {
  922. mSendAxis = null;
  923. if (IsGuard || IsFollow)
  924. {
  925. return;
  926. }
  927. if (Parent.ActorSyncMode != SyncMode.MoveByClient_PreSkillByClient)
  928. {
  929. return;
  930. }
  931. this.mSendPos = new UnitUpdatePosAction(this.ObjectID, Parent.IsHalfSync, x, y, direction, st);
  932. }
  933. public void SendUnitMove(float x, float y)
  934. {
  935. mSendAxis = null;
  936. mSendPos = null;
  937. if (!IsGuard) return;
  938. if (Parent.ActorSyncMode == SyncMode.MoveByClient_PreSkillByClient) return;
  939. UnitMoveAction ma = new UnitMoveAction(base.ObjectID, x, y);
  940. Parent.SendAction(ma);
  941. }
  942. public void SendUnitFaceTo(float d)
  943. {
  944. if (Parent.ActorSyncMode == SyncMode.MoveByClient_PreSkillByClient)
  945. {
  946. float dx = (float)Math.Cos(d) * 100;
  947. float dy = (float)Math.Sin(d) * 100;
  948. this.mSendFaceTo = new Vector2(dx + this.X, dy + this.Y);
  949. }
  950. UnitFaceToAction ma = new UnitFaceToAction(base.ObjectID, d);
  951. //UnityEngine.Debug.Log("SendUnitFaceTo d = " + d);
  952. Parent.SendAction(ma);
  953. }
  954. public void SendUnitFaceTo(float wx, float wy)
  955. {
  956. float d = (float)Math.Atan2(wy - this.Y, wx - this.X);
  957. if (Parent.ActorSyncMode == SyncMode.MoveByClient_PreSkillByClient)
  958. {
  959. this.mSendFaceTo = new Vector2(wx, wy);
  960. }
  961. UnitFaceToAction ma = new UnitFaceToAction(base.ObjectID, d);
  962. Parent.SendAction(ma);
  963. }
  964. public void SendUnitStopMove()
  965. {
  966. mSendAxis = null;
  967. mSendPos = null;
  968. UnitStopMoveAction ma = new UnitStopMoveAction(base.ObjectID);
  969. Parent.SendAction(ma);
  970. }
  971. public void SendUnitSlip(float x, float y)
  972. {
  973. mSendAxis = null;
  974. mSendPos = null;
  975. if (Parent.ActorSyncMode == SyncMode.MoveByClient_PreSkillByClient) return;
  976. UnitSlipAction ma = new UnitSlipAction(base.ObjectID, x, y);
  977. Parent.SendAction(ma);
  978. }
  979. /// <summary>
  980. /// 新增技能移动
  981. /// </summary>
  982. /// <param name="skillMove"></param>
  983. public void SendUnitSkillMove(SkillMove skillMove)
  984. {
  985. var skill = this.GetSkillState(skillMove.SkillID);
  986. if (skill != null)
  987. {
  988. Parent.SendAction(skillMove);
  989. }
  990. }
  991. public void SendUnitLaunchSkill(UnitLaunchSkillAction launch)
  992. {
  993. //mSendAxis = null;
  994. //mSendPos = null;
  995. var skill = this.GetSkillState(launch.SkillID);
  996. if (skill != null)
  997. {
  998. Parent.SendAction(launch);
  999. //mIsWaittingSkillLaunch = 10;
  1000. //YXJDebug.logWarning(">>LaunchSkill:{0}", launch.SkillID);
  1001. }
  1002. }
  1003. public void SendUnitLaunchSkill(int skillID, uint targetObjectID)
  1004. {
  1005. UnitLaunchSkillAction launch = new UnitLaunchSkillAction(base.ObjectID, skillID);
  1006. launch.IsAutoFocusNearTarget = IsSkillAutoFocusTarget;
  1007. launch.TargetObjID = targetObjectID;
  1008. SendUnitLaunchSkill(launch);
  1009. }
  1010. public void SendUnitLaunchSkill(int skillID)
  1011. {
  1012. UnitLaunchSkillAction launch = new UnitLaunchSkillAction(base.ObjectID, skillID);
  1013. launch.IsAutoFocusNearTarget = IsSkillAutoFocusTarget;
  1014. SendUnitLaunchSkill(launch);
  1015. }
  1016. public void SendUnitLaunchSkill(int skillID, float x, float y)
  1017. {
  1018. UnitLaunchSkillAction launch = new UnitLaunchSkillAction(base.ObjectID, skillID);
  1019. launch.IsAutoFocusNearTarget = IsSkillAutoFocusTarget;
  1020. if (x != X || y != Y)
  1021. {
  1022. launch.SpellTargetPos = new Vector2(x, y);
  1023. }
  1024. SendUnitLaunchSkill(launch);
  1025. }
  1026. public void SendUnitLaunchNormalAttack(float x, float y)
  1027. {
  1028. UnitLaunchSkillAction launch = new UnitLaunchSkillAction(base.ObjectID, BaseSkillID);
  1029. launch.IsAutoFocusNearTarget = IsSkillAutoFocusTarget;
  1030. if (x != X || y != Y)
  1031. {
  1032. launch.SpellTargetPos = new Vector2(x, y);
  1033. }
  1034. SendUnitLaunchSkill(launch);
  1035. }
  1036. public void SendUnitGuard(bool auto)
  1037. {
  1038. mSendAxis = null;
  1039. mSendPos = null;
  1040. //IsGuard = auto;
  1041. Parent.SendAction(new UnitGuardAction(ObjectID, auto));
  1042. }
  1043. public void SendUnitFollow(bool auto)
  1044. {
  1045. mSendAxis = null;
  1046. mSendPos = null;
  1047. //IsFollow = auto;
  1048. Parent.SendAction(new UnitFollowAction(ObjectID, auto));
  1049. }
  1050. public void SendUnitGuard(bool auto, string reason)
  1051. {
  1052. mSendAxis = null;
  1053. mSendPos = null;
  1054. //IsGuard = auto;
  1055. Parent.SendAction(new UnitGuardAction(ObjectID, auto, reason));
  1056. }
  1057. public void SendUnitAttackMoveTo(float x, float y, bool attack = false)
  1058. {
  1059. UnitAttackToAction ma = new UnitAttackToAction(base.ObjectID, x, y, attack);
  1060. Parent.SendAction(ma);
  1061. }
  1062. public void SendUnitFocuseTarget(uint targetID)
  1063. {
  1064. if ((Parent.GetObject(targetID) != null))
  1065. {
  1066. UnitFocuseTargetAction ma = new UnitFocuseTargetAction(base.ObjectID, targetID);
  1067. Parent.SendAction(ma);
  1068. }
  1069. }
  1070. public void SendUnitUseItem(int index, int count = 1)
  1071. {
  1072. UnitUseItemAction use = new UnitUseItemAction(base.ObjectID, index, count);
  1073. Parent.SendAction(use);
  1074. }
  1075. public void SendUnitPickObject(uint pickableID)
  1076. {
  1077. mSendAxis = null;
  1078. mSendPos = null;
  1079. UnitPickObjectAction act = new UnitPickObjectAction(ObjectID, pickableID);
  1080. Parent.SendAction(act);
  1081. }
  1082. public void SendCancelBuff(int buffID)
  1083. {
  1084. BuffState bs = GetBuff(buffID);
  1085. if (bs != null)
  1086. {
  1087. UnitCancelBuffAction act = new UnitCancelBuffAction(ObjectID, bs.Data.TemplateID);
  1088. Parent.SendAction(act);
  1089. }
  1090. }
  1091. public void SendSetSubState(byte substate)
  1092. {
  1093. UnitSetSubStateAction use = new UnitSetSubStateAction(base.ObjectID, substate);
  1094. Parent.SendAction(use);
  1095. }
  1096. //新增回城状态
  1097. public void SetLocalClientState(UnitActionStatus states, object evt)
  1098. {
  1099. SetCurrentState(states, evt);
  1100. }
  1101. #endregion
  1102. //-----------------------------------------------------------------------------------------------------------
  1103. #region __PreMoveAndSkill__
  1104. public virtual bool IsCanControlMove
  1105. {
  1106. get
  1107. {
  1108. //渡劫地图
  1109. if(Parent!= null && Parent.IsSceneDujie())
  1110. {
  1111. if (CurrentState == UnitActionStatus.Idle)
  1112. {
  1113. //YXJDebug.logError(">>在渡劫场景,try to move??{0}", CurrentState);
  1114. }
  1115. return false;
  1116. }
  1117. //收到不能移动的状态,就是不能动
  1118. if ((CurrentSubState & (byte)UnitActionSubStatus.CanNotMove) != 0)
  1119. {
  1120. return false;
  1121. }
  1122. if (CurrentState == UnitActionStatus.Skill)
  1123. {
  1124. if (this.CurrentActorSkillAction is PreSkillByClient)
  1125. {
  1126. var st = this.CurrentActorSkillAction as PreSkillByClient;
  1127. return st.IsControlMoveable;
  1128. }
  1129. else if (this.CurrentActorSkillAction is PreSkillByServer)
  1130. {
  1131. var st = this.CurrentActorSkillAction as PreSkillByServer;
  1132. return st.IsControlMoveable;
  1133. }
  1134. return false;
  1135. }
  1136. return (CurrentState == UnitActionStatus.Move || CurrentState == UnitActionStatus.Idle || CurrentState == UnitActionStatus.Pick || CurrentState == UnitActionStatus.DaZuo || CurrentState == UnitActionStatus.DaZuoRecoveryAttr || CurrentState == UnitActionStatus.ChargeAtkIdle || CurrentState == UnitActionStatus.ChargeAtkMove || CurrentState == UnitActionStatus.HomeBack);
  1137. }
  1138. }
  1139. public virtual bool IsCanControlFaceTo
  1140. {
  1141. get
  1142. {
  1143. if (CurrentState == UnitActionStatus.Skill)
  1144. {
  1145. if (this.CurrentActorSkillAction is PreSkillByClient)
  1146. {
  1147. var st = this.CurrentActorSkillAction as PreSkillByClient;
  1148. return st.IsControlFaceable;
  1149. }
  1150. else if (this.CurrentActorSkillAction is PreSkillByServer)
  1151. {
  1152. var st = this.CurrentActorSkillAction as PreSkillByServer;
  1153. return st.IsControlFaceable;
  1154. }
  1155. return false;
  1156. }
  1157. return CurrentState == UnitActionStatus.Move || CurrentState == UnitActionStatus.Idle || CurrentState == UnitActionStatus.Pick || CurrentState == UnitActionStatus.ChargeAtkIdle || CurrentState == UnitActionStatus.ChargeAtkMove;
  1158. }
  1159. }
  1160. private PreSkillStartMove mSkillMove = null;
  1161. internal protected void PreFaceTo(float x, float y)
  1162. {
  1163. if (this.X == x && this.Y == y)
  1164. {
  1165. return;
  1166. }
  1167. float d = (float)(Math.Atan2(y - this.Y, x - this.X));
  1168. if (d != mDirection || d != this.mDirectionChange)
  1169. {
  1170. this.mDirection = this.mDirectionChange = d;
  1171. }
  1172. }
  1173. internal protected void PreTurnTo(float add)
  1174. {
  1175. this.mDirection += add;
  1176. this.mDirectionChange = this.mDirection;
  1177. }
  1178. /// <summary>
  1179. /// 尝试客户端移动
  1180. /// </summary>
  1181. /// <returns>TRUE=无法移动</returns>
  1182. internal protected bool PreMoveTo(float x, float y, float speedSEC, int intervalMS)
  1183. {
  1184. float distance = MoveHelper.GetDistance(intervalMS, speedSEC);
  1185. float minstep = MoveHelper.GetDistance(intervalMS, mMinStepSEC);
  1186. if (Math.Abs(distance) < minstep)
  1187. {
  1188. return true;
  1189. }
  1190. float ddx = x - mLocalPos.X;
  1191. float ddy = y - mLocalPos.Y;
  1192. if (Math.Abs(ddx) < distance && Math.Abs(ddy) < distance)
  1193. {
  1194. return false;
  1195. }
  1196. float angle = MathVector.getDegree(ddx, ddy);
  1197. return PreMoveToInner(angle, distance);
  1198. }
  1199. /// <summary>
  1200. /// 尝试客户端移动
  1201. /// </summary>
  1202. /// <param name="angle"></param>
  1203. /// <param name="speedSEC"></param>
  1204. /// <param name="intervalMS"></param>
  1205. /// <returns>TRUE=无法移动</returns>
  1206. internal protected bool PreMoveTo(float angle, float speedSEC, int intervalMS)
  1207. {
  1208. float distance = MoveHelper.GetDistance(intervalMS, speedSEC);
  1209. float minstep = MoveHelper.GetDistance(intervalMS, mMinStepSEC);
  1210. if (Math.Abs(distance) < minstep)
  1211. {
  1212. return true;
  1213. }
  1214. mIsSkillMove = true;
  1215. return PreMoveToInner(angle, distance);
  1216. }
  1217. internal protected bool PreMoveToInner(float angle, float distance)
  1218. {
  1219. float dx = (float)(Math.Cos(angle) * distance);
  1220. float dy = (float)(Math.Sin(angle) * distance);
  1221. float oldx = mLocalPos.X;
  1222. float oldy = mLocalPos.Y;
  1223. int tick = 0;
  1224. if (this.TouchMap)
  1225. {
  1226. mLocalPos.AddX(dx);
  1227. if (Parent.TouchMap(this))
  1228. {
  1229. mLocalPos.SetX(oldx);
  1230. tick++;
  1231. }
  1232. mLocalPos.AddY(dy);
  1233. if (Parent.TouchMap(this))
  1234. {
  1235. mLocalPos.SetY(oldy);
  1236. tick++;
  1237. }
  1238. }
  1239. else
  1240. {
  1241. mLocalPos.AddX(dx);
  1242. mLocalPos.AddY(dy);
  1243. }
  1244. if (tick >= 2)
  1245. {
  1246. return true;
  1247. }
  1248. if (Templates.CFG.OBJECT_NONE_TOUCH || !this.TouchObj)
  1249. {
  1250. ZoneUnit zu = Parent.TouchBuilding(this);
  1251. if (this.TouchMap && zu != null)
  1252. {
  1253. mLocalPos.SetY(oldy);
  1254. mLocalPos.SetX(oldx);
  1255. if (Parent.TouchObject2(this, zu))
  1256. {
  1257. PreElasticOtherObject(zu);
  1258. }
  1259. return true;
  1260. }
  1261. }
  1262. else
  1263. {
  1264. ZoneUnit zu = Parent.TouchUnit(this);
  1265. if (zu != null)
  1266. {
  1267. mLocalPos.SetY(oldy);
  1268. mLocalPos.SetX(oldx);
  1269. if (Parent.TouchObject2(this, zu))
  1270. {
  1271. PreElasticOtherObject(zu);
  1272. }
  1273. return true;
  1274. }
  1275. }
  1276. return false;
  1277. }
  1278. //-----------------------------------------------------------------------------------------------------------
  1279. public virtual void PreSetPos(float x, float y)
  1280. {
  1281. mLocalPos.SetX(x);
  1282. mLocalPos.SetY(y);
  1283. }
  1284. protected virtual void PreMove(float dx, float dy)
  1285. {
  1286. mLocalPos.AddX(dx);
  1287. mLocalPos.AddY(dy);
  1288. }
  1289. internal protected void PreJumpTo(float direction, float speedSEC, int intervalMS)
  1290. {
  1291. float distance = MoveHelper.GetDistance(intervalMS, speedSEC);
  1292. float dx = (float)(Math.Cos(direction) * distance);
  1293. float dy = (float)(Math.Sin(direction) * distance);
  1294. float oldx = mLocalPos.X;
  1295. float oldy = mLocalPos.Y;
  1296. if (this.TouchMap)
  1297. {
  1298. mLocalPos.AddX(dx);
  1299. if (Parent.TouchMap(this))
  1300. {
  1301. mLocalPos.SetX(oldx);
  1302. }
  1303. mLocalPos.AddY(dy);
  1304. if (Parent.TouchMap(this))
  1305. {
  1306. mLocalPos.SetY(oldy);
  1307. }
  1308. if (Parent.TouchBuilding(this) != null)
  1309. {
  1310. mLocalPos.SetY(oldy);
  1311. mLocalPos.SetX(oldx);
  1312. }
  1313. }
  1314. else
  1315. {
  1316. mLocalPos.AddX(dx);
  1317. mLocalPos.AddY(dy);
  1318. }
  1319. }
  1320. /// <summary>
  1321. /// 获取当前最适合攻击的目标
  1322. /// </summary>
  1323. /// <param name="skill"></param>
  1324. /// <param name="directionChange"></param>
  1325. /// <returns></returns>
  1326. public ZoneUnit PreGetSkillAttackableFirstTarget(SkillTemplate skill, ref bool directionChange)
  1327. {
  1328. using (var list = ListObjectPool<ZoneUnit>.AllocAutoRelease())
  1329. {
  1330. Parent.GetSkillAttackableUnits(this, skill, list);
  1331. if (list.Count > 0)
  1332. {
  1333. float rg = GetSkillAttackRange(skill);
  1334. // 检测攻击范围内的单位 //
  1335. float dr = skill.AttackAngle / 2;
  1336. foreach (ZoneUnit u in list)
  1337. {
  1338. if (CMath.intersectFanRound(this.X, this.Y, rg, u.X, u.Y, u.Info.BodyHitSize, this.Direction - dr, this.Direction + dr))
  1339. {
  1340. directionChange = false;
  1341. return u;
  1342. }
  1343. }
  1344. // 优先当前朝向的目标 //
  1345. dr = CMath.PI_DIV_2;
  1346. directionChange = true;
  1347. foreach (ZoneUnit u in list)
  1348. {
  1349. if (CMath.intersectFanRound(this.X, this.Y, rg, u.X, u.Y, u.Info.BodyHitSize, this.Direction - dr, this.Direction + dr))
  1350. {
  1351. return u;
  1352. }
  1353. }
  1354. // 最后选取最近的目标 //
  1355. ZoneUnit min = null;
  1356. float min_len = float.MaxValue;
  1357. foreach (ZoneUnit u in list)
  1358. {
  1359. float len = MathVector.getDistanceSquare(u.X, u.Y, X, Y);
  1360. if (min_len > len)
  1361. {
  1362. min_len = len;
  1363. min = u;
  1364. }
  1365. }
  1366. return min;
  1367. }
  1368. }
  1369. return null;
  1370. }
  1371. public PreSkillStartMove PreSkillMove(
  1372. float direction,
  1373. float rotateSpeedSEC,
  1374. int expectlTimeMS,
  1375. float moveSpeedSEC,
  1376. float moveSpeedAdd,
  1377. float moveSpeedAcc,
  1378. float moveZSpeed,
  1379. float zgravity,
  1380. float zlimit,
  1381. bool isNoneTouch)
  1382. {
  1383. if (mSkillMove != null)
  1384. {
  1385. mSkillMove.Stop();
  1386. }
  1387. PreSkillStartMove move = new PreSkillStartMove(this, direction, rotateSpeedSEC, expectlTimeMS, moveSpeedSEC, moveSpeedAdd, moveSpeedAcc, moveZSpeed, zgravity, zlimit, isNoneTouch);
  1388. mSkillMove = move;
  1389. return move;
  1390. }
  1391. /// <summary>
  1392. /// 被别的单位挤开
  1393. /// </summary>
  1394. /// <returns></returns>
  1395. public bool PreElasticOtherObjects()
  1396. {
  1397. if (this.TouchObj)
  1398. {
  1399. bool force_sync = false;
  1400. Parent.ForEachNearObjects(X, Y, (ZoneObject o, ref bool cancel) =>
  1401. {
  1402. ZoneUnit u = o as ZoneUnit;
  1403. if ((u != null) && (o != this) && (o.TouchObj) && Parent.TouchObject2(this, o))
  1404. {
  1405. PreElasticOtherObject(u);
  1406. force_sync = true;
  1407. }
  1408. });
  1409. return force_sync;
  1410. }
  1411. return false;
  1412. }
  1413. /// <summary>
  1414. /// 被别的单位挤开
  1415. /// </summary>
  1416. /// <param name="o"></param>
  1417. public void PreElasticOtherObject(ZoneUnit o)
  1418. {
  1419. float targetAngle = MathVector.getDegree(this.X, this.Y, o.X, o.Y);
  1420. float ddr = MathVector.getDistance(this.X, this.Y, o.X, o.Y);
  1421. float bdr = (this.BodySize + o.BodySize);
  1422. float distance = -(bdr - ddr);
  1423. float dx = (float)(Math.Cos(targetAngle) * distance);
  1424. float dy = (float)(Math.Sin(targetAngle) * distance);
  1425. float oldx = mLocalPos.X;
  1426. float oldy = mLocalPos.Y;
  1427. if (this.TouchMap)
  1428. {
  1429. mLocalPos.AddX(dx);
  1430. if (Parent.TouchMap(this))
  1431. {
  1432. mLocalPos.SetX(oldx);
  1433. }
  1434. mLocalPos.AddY(dy);
  1435. if (Parent.TouchMap(this))
  1436. {
  1437. mLocalPos.SetY(oldy);
  1438. }
  1439. }
  1440. else
  1441. {
  1442. mLocalPos.AddX(dx);
  1443. mLocalPos.AddY(dy);
  1444. }
  1445. }
  1446. /// <summary>
  1447. /// 和所有单位(包括地图)做碰撞检测,是否阻挡
  1448. /// </summary>
  1449. /// <param name="src"></param>
  1450. /// <param name="addX"></param>
  1451. /// <param name="addY"></param>
  1452. /// <returns>阻挡</returns>
  1453. public bool PreBlockMove(ref float addX, ref float addY)
  1454. {
  1455. if (this.TouchMap)
  1456. {
  1457. if (Parent.TryTouchMap(this, this.X + addX, this.Y))
  1458. {
  1459. addX = 0;
  1460. }
  1461. if (Parent.TryTouchMap(this, this.X, this.Y + addY))
  1462. {
  1463. addY = 0;
  1464. }
  1465. if (Parent.TryTouchMap(this, this.X + addX, this.Y + addY))
  1466. {
  1467. addX = 0;
  1468. addY = 0;
  1469. }
  1470. if (addX == 0 && addY == 0) { return true; }
  1471. }
  1472. /** 暂时屏蔽 地图上只有地图阻挡
  1473. float x = this.X + addX;
  1474. float y = this.Y + addY;
  1475. float r = this.Info.BodySize;
  1476. if (this.TouchObj)
  1477. {
  1478. ZoneUnit u = Parent.TryTouchUnit(this, x, y);
  1479. if (u != null)
  1480. {
  1481. addX = 0;
  1482. addY = 0;
  1483. if (Parent.TouchObject2(u, this))
  1484. {
  1485. Vector2 bpos = new Vector2(u.X, u.Y);
  1486. MathVector.movePolar(bpos, MathVector.getDegree(u.X - this.X, u.Y - this.Y), this.Info.BodySize + u.Info.BodySize);
  1487. addX = bpos.x - this.X;
  1488. addY = bpos.x - this.X;
  1489. }
  1490. return true;
  1491. }
  1492. }
  1493. else if (this.TouchMap)
  1494. {
  1495. ZoneUnit u = Parent.TryTouchBuilding(this, x, y);
  1496. if (u != null)
  1497. {
  1498. addX = 0;
  1499. addY = 0;
  1500. if (Parent.TouchObject2(u, this))
  1501. {
  1502. Vector2 bpos = new Vector2(u.X, u.Y);
  1503. MathVector.movePolar(bpos, MathVector.getDegree(u.X - this.X, u.Y - this.Y), this.Info.BodySize + u.Info.BodySize);
  1504. addX = bpos.x - this.X;
  1505. addY = bpos.x - this.X;
  1506. }
  1507. return true;
  1508. }
  1509. }
  1510. **/
  1511. return false;
  1512. }
  1513. /*
  1514. public class ForceMoveAgent
  1515. {
  1516. private readonly ZoneActor actor;
  1517. private AstarManhattan.MWayPoint path;
  1518. public bool IsEnd { get { return path != null; } }
  1519. private ForceMoveAgent(ZoneActor actor, float x, float y)
  1520. {
  1521. this.actor = actor;
  1522. }
  1523. public bool Start(float toX, float toY)
  1524. {
  1525. AstarManhattan.FindPathResult ret = actor.Parent.FindPathResult(actor.X, actor.Y, toX, toY, out path);
  1526. if (ret == AstarManhattan.FindPathResult.Destination)
  1527. {
  1528. }
  1529. else if (ret == AstarManhattan.FindPathResult.Cross)
  1530. {
  1531. }
  1532. else
  1533. {
  1534. return false;
  1535. }
  1536. return true;
  1537. }
  1538. public void Stop()
  1539. {
  1540. }
  1541. internal void Update(int deltatime)
  1542. {
  1543. }
  1544. internal void Dispose()
  1545. {
  1546. if (path != null)
  1547. {
  1548. path.Dispose();
  1549. }
  1550. }
  1551. }*/
  1552. #endregion
  1553. //--------------------------------------------------------------------------------------------------------
  1554. #region __SkillActionStatus__
  1555. /// <summary>
  1556. /// 是否客户端位移模式
  1557. /// </summary>
  1558. public bool IsClientControlMove
  1559. {
  1560. get
  1561. {
  1562. if (IsGuard || IsFollow) return false;
  1563. if (Parent.ActorSyncMode != SyncMode.MoveByClient_PreSkillByClient) return false;
  1564. return true;
  1565. }
  1566. }
  1567. private ISkillAction mCurrentSkillAction;
  1568. public override ISkillAction CurrentSkillAction
  1569. {
  1570. get { return mCurrentSkillAction; }
  1571. }
  1572. public IActorSkillAction CurrentActorSkillAction
  1573. {
  1574. get { return mCurrentSkillAction as IActorSkillAction; }
  1575. }
  1576. public SkillState CurrentSkillState
  1577. {
  1578. get
  1579. {
  1580. if (mCurrentSkillAction is IActorSkillAction)
  1581. {
  1582. return (mCurrentSkillAction as IActorSkillAction).State;
  1583. }
  1584. return null;
  1585. }
  1586. }
  1587. protected override void doLaunchSkillAction(UnitLaunchSkillEvent me)
  1588. {
  1589. clearSkillAction();
  1590. SkillState state = GetSkillState(me.skill_id);
  1591. if (state != null)
  1592. {
  1593. if (IsClientControlMove)
  1594. {
  1595. PreSkillByClient action = new PreSkillByClient(this, state);
  1596. action.onLaunch(me);
  1597. this.mCurrentSkillAction = action;
  1598. }
  1599. else
  1600. {
  1601. PreSkillByServer action = new PreSkillByServer(this, state);
  1602. action.onLaunch(me);
  1603. this.mCurrentSkillAction = action;
  1604. }
  1605. invokeSkillActionStart(mCurrentSkillAction);
  1606. }
  1607. }
  1608. private void updateServerSkillAction(int intervalMS)
  1609. {
  1610. if (mCurrentSkillAction != null)
  1611. {
  1612. if (mCurrentSkillAction is PreSkillByClient)
  1613. {
  1614. if (mCurrentSkillAction.IsDone)
  1615. {
  1616. clearSkillAction();
  1617. }
  1618. }
  1619. else
  1620. {
  1621. mCurrentSkillAction.onUpdate(intervalMS);
  1622. if (mCurrentSkillAction.IsDone)
  1623. {
  1624. clearSkillAction();
  1625. }
  1626. }
  1627. }
  1628. }
  1629. private void clearSkillAction()
  1630. {
  1631. if (mCurrentSkillAction != null)
  1632. {
  1633. if (mCurrentSkillAction.IsJumpAction)
  1634. {
  1635. base.DoJumpToTargetEnd();
  1636. mCurrentSkillAction.RestJumpAction(false);
  1637. }
  1638. mCurrentSkillAction.onStop();
  1639. mCurrentSkillAction = null;
  1640. mIsSkillMove = false;
  1641. }
  1642. }
  1643. private void doPlayerSkillStopEvent(PlayerSkillStopEvent evt)
  1644. {
  1645. clearSkillAction();
  1646. }
  1647. private void doUnitSkillActionChangeEvent(UnitSkillActionChangeEvent evt)
  1648. {
  1649. if (mCurrentSkillAction != null)
  1650. {
  1651. mCurrentSkillAction.onUnitSkillActionChangeEvent(evt);
  1652. }
  1653. }
  1654. //-------------------------------------------------------------------------------------------------------
  1655. public interface IActorSkillAction
  1656. {
  1657. SkillState State { get; }
  1658. }
  1659. public class PreSkillByServer : UnitSkillAction, IActorSkillAction
  1660. {
  1661. readonly private ZoneActor ownerUnit;
  1662. readonly private SkillState state;
  1663. public PreSkillByServer(ZoneActor actor, SkillState state)
  1664. : base(actor, state.Data)
  1665. {
  1666. this.state = state;
  1667. this.ownerUnit = actor;
  1668. }
  1669. public SkillState State { get { return state; } }
  1670. }
  1671. public class PreSkillByClient : ISkillAction, IActorSkillAction
  1672. {
  1673. readonly private ZoneActor ownerUnit;
  1674. readonly private SkillTemplate skill;
  1675. readonly private SkillState state;
  1676. //--------------------------------------------------------
  1677. public ZoneLayer Parent { get { return ownerUnit.Parent; } }
  1678. public Vector2 StopFaceTo { get; private set; }
  1679. public SkillState State { get { return state; } }
  1680. public override bool IsJumpAction {
  1681. get { return is_jump_action; }
  1682. }
  1683. public override bool IsDone { get { return is_done; } }
  1684. public override byte ActionStepIndex { get { return (launch_event != null) ? launch_event.action_index : (byte)0; } }
  1685. public override int[] ActionTimeArray { get { return action_time_array; } }
  1686. public override int TotalTimeMS { get { return total_time_ms; } }
  1687. public override int CurrentActionIndex { get { return current_action_index; } }
  1688. public override string CurrentActionName { get { if (current_action != null) return current_action.ActionName; return null; } }
  1689. public override UnitActionData CurrentAction { get { return current_action; } }
  1690. public override float ExpirePercent { get { return total_pass_time / (float)TotalTimeMS; } }
  1691. public override SkillTemplate SkillData { get { return skill; } }
  1692. public override UnitLaunchSkillEvent LaunchEvent { get { return launch_event; } }
  1693. public override int CurPassTimeMS { get { return current_pass_time; } }
  1694. public override float ActionSpeed
  1695. {
  1696. get
  1697. {
  1698. if (launch_event != null)
  1699. {
  1700. if (launch_event.action_speed_add != null && launch_event.action_index < launch_event.action_speed_add.Length)
  1701. {
  1702. return launch_event.action_speed + launch_event.action_speed_add[launch_event.action_index];
  1703. }
  1704. return launch_event.action_speed;
  1705. }
  1706. return action_speed;
  1707. }
  1708. }
  1709. //--------------------------------------------------------
  1710. private UnitLaunchSkillEvent launch_event;
  1711. private int total_pass_time = 0;
  1712. private int total_time_ms = 0;
  1713. private float action_speed = 1f;
  1714. private int current_action_index = 0;
  1715. private int current_pass_time = 0;
  1716. private int current_action_total_time = 0;
  1717. private bool is_done = false;
  1718. private ZoneUnit targetUnit;
  1719. private Vector2 targetPos;
  1720. private bool is_jump_action = false;
  1721. private Queue<UnitActionData> action_queue;
  1722. private UnitActionData current_action = null;
  1723. private PopupKeyFrames<UnitActionData.KeyFrame> current_frames = new PopupKeyFrames<UnitActionData.KeyFrame>();
  1724. private PreSkillStartMove action_move_time;
  1725. private int[] action_time_array;
  1726. private Vector2 move_to;
  1727. //--------------------------------------------------------
  1728. public PreSkillByClient(ZoneActor actor, SkillState state)
  1729. {
  1730. this.state = state;
  1731. this.skill = state.Data;
  1732. this.ownerUnit = actor;
  1733. }
  1734. internal override void onLaunch(UnitLaunchSkillEvent e)
  1735. {
  1736. this.launch_event = e;
  1737. this.current_pass_time = 0;
  1738. this.action_speed = e.action_speed;
  1739. this.targetUnit = Parent.GetUnit(e.target_object_id);
  1740. this.RestJumpAction(false);
  1741. //TODO 屏蔽了下面这段代码 不知道哪个人才写的
  1742. //this.targetUnit = null;
  1743. if (e.IsSpellTargetPos)
  1744. {
  1745. this.targetPos = new Vector2(e.spell_target_pos.X, e.spell_target_pos.Y);
  1746. this.ownerUnit.PreFaceTo(e.spell_target_pos.X, e.spell_target_pos.Y);
  1747. }
  1748. if (skill.IsSingleAction)
  1749. {
  1750. var sa = skill.ActionQueue[e.action_index];
  1751. this.action_queue = new Queue<UnitActionData>(1);
  1752. this.action_queue.Enqueue(sa);
  1753. this.current_action_index = e.action_index;
  1754. }
  1755. else
  1756. {
  1757. this.action_queue = new Queue<UnitActionData>(skill.ActionQueue);
  1758. this.current_action_index = 0;
  1759. }
  1760. if (e.action_time_array != null && e.action_time_array.Length > 0)
  1761. {
  1762. this.total_time_ms = e.TotalActionTimeMS;
  1763. this.action_time_array = e.action_time_array;
  1764. }
  1765. else if (skill.IsSingleAction)
  1766. {
  1767. this.total_time_ms = skill.ActionQueue[launch_event.action_index].TotalTimeMS;
  1768. this.action_time_array = new int[] { TotalTimeMS };
  1769. }
  1770. else
  1771. {
  1772. this.total_time_ms = skill.ActionQueueTimeMS;
  1773. this.action_time_array = skill.ActionQueueTimeArray;
  1774. }
  1775. nextAction(current_action_index);
  1776. }
  1777. internal override void onUnitSkillActionChangeEvent(UnitSkillActionChangeEvent e)
  1778. {
  1779. while (this.CurrentActionIndex < e.ActionIndex)
  1780. {
  1781. if (!nextAction(current_action_index + 1))
  1782. {
  1783. is_done = true;
  1784. total_pass_time = TotalTimeMS;
  1785. break;
  1786. }
  1787. }
  1788. }
  1789. internal override void RestJumpAction(bool isJumpAction)
  1790. {
  1791. is_jump_action = isJumpAction;
  1792. }
  1793. internal override void onStop()
  1794. {
  1795. if (action_move_time != null)
  1796. {
  1797. action_move_time.Stop();
  1798. action_move_time = null;
  1799. }
  1800. is_done = true;
  1801. total_pass_time = TotalTimeMS;
  1802. if (StopFaceTo != null)
  1803. {
  1804. ownerUnit.PreFaceTo(StopFaceTo.X, StopFaceTo.Y);
  1805. }
  1806. //预演未做完,服务器下发结束的通知
  1807. if (current_action != null && current_action.IsJumpToTarget)
  1808. {
  1809. doJumpToTarget();
  1810. }
  1811. }
  1812. internal override void onUpdate(int intervalMS)
  1813. {
  1814. int pass_time = (int)(intervalMS * ActionSpeed);
  1815. this.total_pass_time += pass_time;
  1816. this.total_pass_time = Math.Min(total_pass_time, TotalTimeMS);
  1817. this.current_pass_time += pass_time;
  1818. if (current_action == null)
  1819. {
  1820. nextAction(current_action_index + 1);
  1821. }
  1822. if (current_action == null)
  1823. {
  1824. is_done = true;
  1825. total_pass_time = TotalTimeMS;
  1826. }
  1827. else
  1828. {
  1829. // 关键帧 //
  1830. using (var kfs = ListObjectPool<UnitActionData.KeyFrame>.AllocAutoRelease())
  1831. {
  1832. if (current_frames.PopKeyFrames(current_pass_time, kfs) > 0)
  1833. {
  1834. for (int i = 0; i < kfs.Count; i++)
  1835. {
  1836. doKeyFrame(kfs[i]);
  1837. }
  1838. }
  1839. }
  1840. //跳跃动作
  1841. if (current_action.IsJumpToTarget)
  1842. {
  1843. doJumpToTarget();
  1844. }
  1845. // 移动到目标时,不切换动作 //
  1846. if (current_action.IsMoveToTarget)
  1847. {
  1848. // 冲到目标,立即下段 //
  1849. doMoveToTarget();
  1850. }
  1851. else
  1852. {
  1853. // 技能位移 //
  1854. if (action_move_time != null)
  1855. {
  1856. doMove(intervalMS);
  1857. }
  1858. if (move_to != null)
  1859. {
  1860. if (IsControlMoveable)
  1861. {
  1862. ownerUnit.PreMoveTo(move_to.X, move_to.Y, ownerUnit.MoveSpeedSEC, intervalMS);
  1863. }
  1864. else
  1865. {
  1866. move_to = null;
  1867. }
  1868. }
  1869. if (current_action.BodyBlockOnAttackRange)
  1870. {
  1871. doBodyBlock();
  1872. }
  1873. /*if (IsFaceToTarget)
  1874. {
  1875. float tx = 0;
  1876. float ty = 0;
  1877. if (getTargetPos(out tx, out ty))
  1878. {
  1879. ownerUnit.PreFaceTo(tx, ty);
  1880. }
  1881. }*/
  1882. }
  1883. // 下段动作 //
  1884. if ((current_action != null) && (current_pass_time >= current_action_total_time))
  1885. {
  1886. current_action = null;
  1887. if (action_queue.Count == 0)
  1888. {
  1889. is_done = true;
  1890. total_pass_time = TotalTimeMS;
  1891. }
  1892. }
  1893. }
  1894. }
  1895. private bool nextAction(int index)
  1896. {
  1897. if (action_move_time != null)
  1898. {
  1899. action_move_time.Stop();
  1900. action_move_time = null;
  1901. }
  1902. if (action_queue.Count > 0)
  1903. {
  1904. this.current_action_index = index;
  1905. //NewAction//
  1906. this.current_action = action_queue.Dequeue();
  1907. this.current_frames.AddRange(current_action.KeyFrames);
  1908. this.current_pass_time = 0;
  1909. //NewAction//
  1910. if (launch_event.action_time_array != null)
  1911. {
  1912. if (skill.IsSingleAction)
  1913. {
  1914. this.current_action_total_time = launch_event.TotalActionTimeMS;
  1915. }
  1916. else
  1917. {
  1918. this.current_action_total_time = launch_event.action_time_array[current_action_index];
  1919. }
  1920. }
  1921. else
  1922. {
  1923. this.current_action_total_time = current_action.TotalTimeMS;
  1924. }
  1925. this.IsCancelableBySkill = current_action.IsCancelableBySkill;
  1926. this.IsNoneBlock = current_action.IsNoneBlock;
  1927. this.IsNoneTouch = current_action.IsNoneTouch;
  1928. this.IsFaceToTarget = current_action.IsFaceToTarget;
  1929. this.IsCancelableByMove = current_action.IsCancelable;
  1930. this.IsControlMoveable = current_action.IsControlMoveable;
  1931. this.IsControlFaceable = current_action.IsControlFaceable;
  1932. if (current_action.IsMoveToTarget)
  1933. {
  1934. doMoveToTarget();
  1935. }
  1936. else if (current_action.IsJumpToTarget)
  1937. {
  1938. this.RestJumpAction(true);
  1939. doJumpToTarget();
  1940. }
  1941. else
  1942. {
  1943. this.RestJumpAction(false);
  1944. }
  1945. /*服务器已经接管这个了
  1946. * if (this.IsFaceToTarget || launch_event.IsAutoFocusNearTarget)
  1947. {
  1948. if (targetUnit != null && targetUnit != ownerUnit)
  1949. {
  1950. ownerUnit.PreFaceTo(
  1951. targetUnit.X,
  1952. targetUnit.Y);
  1953. }
  1954. }*/
  1955. return true;
  1956. }
  1957. current_action = null;
  1958. return false;
  1959. }
  1960. private void doKeyFrame(UnitActionData.KeyFrame kf)
  1961. {
  1962. // 关键帧改变状态
  1963. if (kf.ChangeStatus != null)
  1964. {
  1965. this.IsNoneBlock = kf.ChangeStatus.IsNoneBlock;
  1966. this.IsNoneTouch = kf.ChangeStatus.IsNoneTouch;
  1967. this.IsFaceToTarget = kf.ChangeStatus.IsFaceToTarget;
  1968. this.IsCancelableByMove = kf.ChangeStatus.IsCancelable;
  1969. this.IsCancelableBySkill = kf.ChangeStatus.IsCancelableBySkill;
  1970. this.IsControlMoveable = kf.ChangeStatus.IsControlMoveable;
  1971. this.IsControlFaceable = kf.ChangeStatus.IsControlFaceable;
  1972. }
  1973. // 如果关键帧绑定单位位移
  1974. if (kf.Move != null && (targetUnit == null || kf.hitTargetMoveEnable))
  1975. {
  1976. StartMove action_move = kf.Move;
  1977. this.action_move_time = ownerUnit.PreSkillMove(
  1978. ownerUnit.Direction + action_move.Direction,
  1979. action_move.RotateSpeedSEC,
  1980. action_move.KeepTimeMS,
  1981. action_move.SpeedSEC,
  1982. action_move.SpeedAdd,
  1983. action_move.SpeedAcc,
  1984. action_move.ZSpeedSEC,
  1985. action_move.OverrideGravity,
  1986. action_move.ZLimit,
  1987. action_move.IsNoneTouch);
  1988. }
  1989. }
  1990. private void doMove(int intervalMS)
  1991. {
  1992. action_move_time.IsNoneTouch = this.IsNoneTouch;
  1993. if (action_move_time.IsEnd)
  1994. {
  1995. action_move_time = null;
  1996. }
  1997. }
  1998. public void setFaceTo(Vector2 face_to)
  1999. {
  2000. if (IsControlFaceable)
  2001. {
  2002. ownerUnit.PreFaceTo(face_to.X, face_to.Y);
  2003. }
  2004. this.StopFaceTo = face_to;
  2005. }
  2006. public void setMoveTo(UnitAxisAction axis, int _tm = 0)
  2007. {
  2008. if (axis == null || axis.IsZero)
  2009. {
  2010. this.move_to = null;
  2011. return;
  2012. }
  2013. if (this.IsCancelableByMove)
  2014. {
  2015. is_done = true;
  2016. total_pass_time = TotalTimeMS;
  2017. }
  2018. float degree = MathVector.getDegree(axis.dx, axis.dy);
  2019. Vector2 pos = new Vector2(ownerUnit.X, ownerUnit.Y);
  2020. MathVector.movePolar(pos, degree, MoveHelper.GetDistance((_tm == 0) ? this.TotalTimeMS : _tm, ownerUnit.MoveSpeedSEC));
  2021. if (IsControlMoveable)
  2022. {
  2023. move_to = pos;
  2024. }
  2025. if (IsControlFaceable)
  2026. {
  2027. ownerUnit.PreFaceTo(pos.X, pos.Y);
  2028. }
  2029. this.StopFaceTo = new Vector2(pos.X, pos.Y);
  2030. }
  2031. /// <summary>
  2032. /// 防止技能位移导致单位重合
  2033. /// </summary>
  2034. private void doBodyBlock()
  2035. {
  2036. ownerUnit.PreElasticOtherObjects();
  2037. }
  2038. /// <summary>
  2039. /// 移动到目标面前
  2040. /// </summary>
  2041. private bool doMoveToTarget()
  2042. {
  2043. //Force Sync from server//
  2044. return false;
  2045. }
  2046. private bool doJumpToTarget()
  2047. {
  2048. if (is_done)
  2049. {
  2050. ownerUnit.Z = 0;
  2051. }
  2052. else
  2053. {
  2054. ownerUnit.Z = MoveHelper.CalulateParabolicHeight(current_action.JumpToTargetHeightZ, current_action.TotalTimeMS, this.current_pass_time);
  2055. }
  2056. return false;
  2057. }
  2058. public bool getTargetPos(out float x, out float y)
  2059. {
  2060. if (targetPos != null)
  2061. {
  2062. x = targetPos.X;
  2063. y = targetPos.Y;
  2064. return true;
  2065. }
  2066. else if (targetUnit != null && targetUnit != ownerUnit)
  2067. {
  2068. x = targetUnit.X;
  2069. y = targetUnit.Y;
  2070. return true;
  2071. }
  2072. x = ownerUnit.X;
  2073. y = ownerUnit.Y;
  2074. return false;
  2075. }
  2076. }
  2077. public class PreSkillStartMove
  2078. {
  2079. private readonly ZoneClient.ZoneActor owner;
  2080. private readonly float startDirection;
  2081. private readonly float moveSpeedAdd;
  2082. private readonly float moveSpeedAcc;
  2083. private readonly float RotateSpeedSEC;
  2084. private float moveSpeedSEC;
  2085. private FallingDown hasFly;
  2086. private TimeExpire<int> hitMoveTime;
  2087. private bool isNoneTouch;
  2088. public PreSkillStartMove(
  2089. ZoneClient.ZoneActor owner,
  2090. float direction,
  2091. float rotateSpeedSEC,
  2092. int expectlTimeMS,
  2093. float moveSpeedSEC,
  2094. float moveSpeedAdd,
  2095. float moveSpeedAcc,
  2096. float moveZSpeed,
  2097. float zgravity,
  2098. float zlimit,
  2099. bool isNoneTouch)
  2100. {
  2101. this.RotateSpeedSEC = rotateSpeedSEC;
  2102. this.moveSpeedSEC = moveSpeedSEC;
  2103. this.moveSpeedAdd = moveSpeedAdd;
  2104. this.moveSpeedAcc = moveSpeedAcc / 100f;
  2105. this.owner = owner;
  2106. this.startDirection = direction;
  2107. this.isNoneTouch = isNoneTouch;
  2108. if (moveZSpeed != 0)
  2109. {
  2110. this.hasFly = owner.StartFly(moveZSpeed, zgravity, zlimit);
  2111. this.TotalTimeMS = hasFly.ExpectTimeMS;
  2112. }
  2113. else
  2114. {
  2115. this.TotalTimeMS = expectlTimeMS;
  2116. }
  2117. this.hitMoveTime = new TimeExpire<int>(TotalTimeMS);
  2118. this.IsEnd = false;
  2119. }
  2120. public void Stop()
  2121. {
  2122. this.IsEnd = true;
  2123. }
  2124. public bool Update(int intervalMS)
  2125. {
  2126. if (RotateSpeedSEC != 0)
  2127. {
  2128. float add = MoveHelper.GetDistance(intervalMS, RotateSpeedSEC);
  2129. owner.PreTurnTo(add);
  2130. }
  2131. // 落下 //
  2132. if (hasFly != null)
  2133. {
  2134. owner.PreJumpTo(startDirection, moveSpeedSEC, intervalMS);
  2135. }
  2136. else
  2137. {
  2138. if (IsNoneTouch)
  2139. {
  2140. owner.PreJumpTo(startDirection, moveSpeedSEC, intervalMS);
  2141. }
  2142. else
  2143. {
  2144. owner.PreMoveTo(startDirection, moveSpeedSEC, intervalMS);
  2145. }
  2146. }
  2147. // 后退 //
  2148. {
  2149. MoveHelper.UpdateSpeed(intervalMS, ref moveSpeedSEC, moveSpeedAdd, moveSpeedAcc);
  2150. }
  2151. if (hitMoveTime.Update(intervalMS))
  2152. {
  2153. IsEnd = true;
  2154. }
  2155. return IsEnd;
  2156. }
  2157. public bool IsEnd { get; private set; }
  2158. public int TotalTimeMS { get; private set; }
  2159. public bool IsNoneTouch { get { return isNoneTouch; } set { isNoneTouch = value; } }
  2160. }
  2161. #endregion
  2162. //--------------------------------------------------------------------------------------------------------
  2163. /*private void DoPlayerFocuseTargetEvent(PlayerFocuseTargetEvent e)
  2164. {
  2165. if (this.TargetUnitID != e.targetUnitID)
  2166. {
  2167. this.mFocusTarget = e;
  2168. var target = Parent.GetObject(e.targetUnitID);
  2169. if (mOnGuardFocusTarget != null)
  2170. {
  2171. mOnGuardFocusTarget.Invoke(this, target, e.expectTarget);
  2172. }
  2173. }
  2174. this.mFocusTarget = e;
  2175. }
  2176. private OnGuardFocusTargetHandler mOnGuardFocusTarget;
  2177. /// <summary>
  2178. /// 自动战斗锁定目标
  2179. /// </summary>
  2180. /// <param name="actor"></param>
  2181. /// <param name="target"></param>
  2182. /// <param name="expect"></param>
  2183. public delegate void OnGuardFocusTargetHandler(ZoneActor actor, ZoneObject target, SkillTemplate.CastTarget expect);
  2184. [EventTriggerDescAttribute("单位持有技能发生变化时触发")]
  2185. public event OnGuardFocusTargetHandler OnGuardFocusTarget { add { mOnGuardFocusTarget += value; } remove { mOnGuardFocusTarget -= value; } }*/
  2186. /*
  2187. public class MoveAgent
  2188. {
  2189. public delegate void EndAction(ZoneActor actor);
  2190. private readonly ZoneActor actor;
  2191. private List<Vector2> path;
  2192. private EndAction endAction;
  2193. internal MoveAgent(ZoneActor actor)
  2194. {
  2195. this.actor = actor;
  2196. }
  2197. public void Stop()
  2198. {
  2199. path = null;
  2200. }
  2201. public bool Start(float toX, float toY, EndAction endAction)
  2202. {
  2203. AstarManhattan.MWayPoint wayPoints;
  2204. AstarManhattan.FindPathResult ret = actor.Parent.FindPathResult(actor.X, actor.Y, toX, toY, out wayPoints);
  2205. if (ret == AstarManhattan.FindPathResult.Destination)
  2206. {
  2207. path.Clear();
  2208. path.Add(new Vector2(toX, toY));
  2209. }
  2210. else if (ret == AstarManhattan.FindPathResult.Cross)
  2211. {
  2212. path.Clear();
  2213. path.Add(new Vector2(actor.X, actor.Y));
  2214. do
  2215. {
  2216. path.Add(new Vector2(wayPoints.PosX, wayPoints.PosY));
  2217. wayPoints = wayPoints.Next;
  2218. }
  2219. while (wayPoints != null);
  2220. }
  2221. else
  2222. {
  2223. return false;
  2224. }
  2225. this.endAction = endAction;
  2226. return true;
  2227. }
  2228. private void OnStop()
  2229. {
  2230. if (endAction != null) { endAction.Invoke(actor); }
  2231. endAction = null;
  2232. }
  2233. internal void update(int deltatime)
  2234. {
  2235. if (path != null)
  2236. {
  2237. var pos = path[0];
  2238. float length = actor.MoveSpeedSEC * deltatime / 1000f;
  2239. if (length > 0 && path.Count > 1)
  2240. {
  2241. float l = MathVector.getDistance(path[1], path[0]);
  2242. if (l <= length)
  2243. {
  2244. path.RemoveAt(0);
  2245. }
  2246. else
  2247. {
  2248. MathVector.moveTo(path[0], path[1].x, path[1].y, length);
  2249. }
  2250. }
  2251. //pos = path[0] - pos;
  2252. //pos = path[0];
  2253. //updateAction(path[0].x, path[0].y, userdata);
  2254. if (path.Count < 2)
  2255. {
  2256. OnStop();
  2257. }
  2258. }
  2259. }
  2260. }
  2261. */
  2262. //--------------------------------------------------------------------------------------------------------
  2263. }
  2264. }