XmdsInstancePlayer.cs 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094
  1. #define OPNE_JSG_AI_TOOLS
  2. using CommonAI.Zone;
  3. using CommonAI.Zone.Helper;
  4. using CommonAI.Zone.Instance;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using XmdsCommon.Plugin;
  10. using CommonAI.Zone.Formula;
  11. using XmdsCommon.Message;
  12. using CommonLang;
  13. using XmdsCommonServer.Message;
  14. using CommonLang.Vector;
  15. using XmdsCommon.EditorData;
  16. using CommonAI.Zone.ZoneEditor;
  17. using CommonLang.Concurrent;
  18. using static CommonAI.Zone.Instance.InstanceUnit;
  19. using XmdsCommon.ZoneClient.XmdsClientVirtual;
  20. using XmdsCommonServer.Plugin.Scene;
  21. using static CommonAI.XmdsConstConfig;
  22. using System.Collections;
  23. using CommonLang.Log;
  24. using CommonAI.Data;
  25. using static XmdsCommonServer.Plugin.Units.XmdsInstanceUnitStateMachine;
  26. using CommonAI;
  27. namespace XmdsCommonServer.Plugin.Units
  28. {
  29. public class XmdsInstancePlayer : InstancePlayer
  30. {
  31. public enum GuardMode
  32. {
  33. Mode_Point,
  34. Mode_Map,
  35. }
  36. private static HashMap<int, AtomicInteger> CreateInfoMap = new HashMap<int, AtomicInteger>();
  37. //嘲讽状态
  38. protected XmdsInstanceUnitStateMock mMockTarget;
  39. //private TimeInterval<int> mFindItemTimeInterval;
  40. private long mNextAutoFindPickItemTime;
  41. private GuardMode mCurGuardMode = GuardMode.Mode_Point;
  42. private Vector2 mGuardPos = new Vector2();
  43. private bool mDoStopSkill = false;
  44. private static int DEFAULT_CROSS_SERVER_ID = -999;
  45. private const char SPLIT = ':';
  46. private List<int> mAutoGuardTargetList = new List<int>();
  47. private int mAutoGuardTargetTimes = 0;
  48. private const int MAX_AUTO_GUARD_TARGET_TIMES = 500;
  49. private bool mIsReady = false;
  50. private XmdsInstanceUnitStateMachine.XmdsStateFollowAndAttack mXmdsFocusTarget;
  51. private bool mBotTestAutoFight = false;
  52. private int zoneID;
  53. //解决部分情况下未上发(或者上发时机不对)idle,导致别人看到自己在move,唯独自己看到自己是正常的
  54. private int mNotMoveTimes;
  55. private Vector2 mLastMovePos = new Vector2();
  56. //定点自动战斗情况下,玩家不能像怪物一样回原地,所以需要定时检测一下,重置定点的位置
  57. private long mLastAutoAttackTime = 0;
  58. //private Vector2 mLastAutoFightPos = new Vector2();
  59. //下一次通知背包已满时间
  60. //private long mNextNotifyBagFullTime = 0;
  61. public XmdsInstancePlayer(InstanceZone zone, UnitInfo info, string name, int force, int alliesForce, int level)
  62. : base(zone, info, name, force, level, alliesForce)
  63. {
  64. //mFindItemTimeInterval = new TimeInterval<int>(XmdsConfig.Instance.GUARD_FIND_ITEM_CYCLE_TIME);
  65. mCheckGuard.FirstTimeEnable = true;
  66. if (TemplateManager.IsEditor)
  67. {
  68. mIsReady = true;
  69. mBotTestAutoFight = true;
  70. }
  71. else if ((Info.Properties as XmdsUnitProperties).BotTestTemplate)
  72. {
  73. mIsReady = true;
  74. }
  75. OnPlayerCreate();
  76. this.OnHandleAction += OnActionHandle;
  77. }
  78. public override void doEnterAutoFight()
  79. {
  80. base.doEnterAutoFight();
  81. this.IsGuard = true;
  82. this.mGuardPos.SetX(this.X);
  83. this.mGuardPos.SetY(this.Y);
  84. }
  85. static void OnActionHandle(InstanceUnit unit, ObjectAction act)
  86. {
  87. if (act is PlayerDramaEndAction && unit.AoiStatus != null)
  88. {
  89. var dramaId = (act as PlayerDramaEndAction).dramaId;
  90. if (unit.AoiStatus is XmdsPlayerAOI)
  91. {
  92. if ((unit.AoiStatus as XmdsPlayerAOI).QuestId == dramaId)
  93. {
  94. unit.setAoiStatus(null);
  95. }
  96. return;
  97. }
  98. if (unit.AoiStatus is DarmaAOI)
  99. {
  100. if ((unit.AoiStatus as DarmaAOI).darmaId == dramaId)
  101. {
  102. unit.setAoiStatus(null);
  103. }
  104. return;
  105. }
  106. }
  107. }
  108. private void clearAutoGuardTargetList()
  109. {
  110. if (mAutoGuardTargetList != null)
  111. {
  112. mAutoGuardTargetList.Clear();
  113. }
  114. mAutoGuardTargetTimes = 0;
  115. }
  116. protected override void Disposing()
  117. {
  118. foreach (var item in mQuestScript)
  119. {
  120. item.Value.Dispose();
  121. }
  122. clearAutoGuardTargetList();
  123. mXmdsFocusTarget = null;
  124. lastAttackUnit = null;
  125. base.Disposing();
  126. }
  127. private System.Action readyAction;
  128. public void PlayerReady()
  129. {
  130. mIsReady = true;
  131. if (readyAction != null)
  132. {
  133. readyAction.Invoke();
  134. }
  135. }
  136. public bool IsPlayerReady()
  137. {
  138. return mIsReady;
  139. }
  140. //--------------------------------------------------------------------------------------
  141. public override bool IsVisible
  142. {
  143. get { return base.IsVisible && mIsReady; }
  144. }
  145. public override bool IsInvincible
  146. {
  147. get { return (!mIsReady || base.IsInvincible); }
  148. }
  149. public XmdsVirtual_Player VirtualPlayer
  150. {
  151. get { return base.Virtual as XmdsVirtual_Player; }
  152. }
  153. public bool CanPickDropableItem
  154. {
  155. get { return VirtualPlayer.VirtualInventorySize >= 1; }
  156. }
  157. /// <summary>
  158. /// 是否是机器人
  159. /// </summary>
  160. //public bool IsBotTest { get; private set; }
  161. //--------------------------------------------------------------------------------------
  162. #region 任务相关
  163. private HashMap<string, Quest.QuestScript> mQuestScript = new HashMap<string, Quest.QuestScript>();
  164. public Quest.QuestScript GetQuestScript(string quest_id)
  165. {
  166. return mQuestScript.Get(quest_id);
  167. }
  168. public IList<Quest.QuestScript> GetAllQuestScript()
  169. {
  170. return new List<Quest.QuestScript>(mQuestScript.Values);
  171. }
  172. public void SetQuestScript(string quest_id, int questType, Quest.QuestScript script)
  173. {
  174. if (mQuestScript.ContainsKey(quest_id))
  175. {
  176. XmdsVirtual.FormatLog(CommonLang.Log.LoggerLevel.ERROR, "SetQuestScript Error : ContainsKey" + quest_id);
  177. RemoveQuestScript(quest_id);
  178. }
  179. mQuestScript.Add(quest_id, script);
  180. script.Init(quest_id, questType, this);
  181. script.Start();
  182. }
  183. public void RemoveQuestScript(string quest_id)
  184. {
  185. Quest.QuestScript qs = mQuestScript.Get(quest_id);
  186. if (qs != null)
  187. {
  188. qs.Dispose();
  189. mQuestScript.Remove(quest_id);
  190. }
  191. }
  192. public List<CommonAI.Zone.Helper.QuestData> GetQuests()
  193. {
  194. return new List<CommonAI.Zone.Helper.QuestData>(mQuests.Values);
  195. }
  196. #endregion
  197. //--------------------------------------------------------------------------------------
  198. #region 作弊惩罚
  199. private TimeExpire<int> mLockTime;
  200. public bool IsLock { get { return mLockTime != null; } }
  201. //索敌范围.
  202. private int mGuardSearchRange = XmdsConfig.Instance.NORMALSCENE_AUTO_GUARD_RANGE;
  203. private int mGuardSearchRangeExt = XmdsConfig.Instance.NORMALSCENE_AUTO_GUARD_RANGE * XmdsConfig.Instance.NORMALSCENE_AUTO_GUARD_RANGE;
  204. /// <summary>
  205. /// 设置自动战斗索敌范围.
  206. /// </summary>
  207. /// <param name="v"></param>
  208. public void SetGuardSearchRange(int v)
  209. {
  210. mGuardSearchRange = v;
  211. mGuardSearchRangeExt = mGuardSearchRange * mGuardSearchRange;
  212. }
  213. /// <summary>
  214. /// 检测到作弊,禁止一切操作一段时间
  215. /// </summary>
  216. /// <param name="timeMS"></param>
  217. public void Lock(int timeMS)
  218. {
  219. this.startIdle();
  220. if (mLockTime != null && mLockTime.ExpireTimeMS >= timeMS)
  221. {
  222. return;
  223. }
  224. else
  225. {
  226. mLockTime = new TimeExpire<int>(timeMS);
  227. }
  228. }
  229. private void upateLock()
  230. {
  231. if (mLockTime != null && mLockTime.Update(Parent.UpdateIntervalMS))
  232. {
  233. mLockTime = null;
  234. }
  235. }
  236. #endregion
  237. //--------------------------------------------------------------------------------------
  238. #region BUFF特殊状态锁定移动.
  239. private TimeExpire<int> mBuffLockMoveTime;
  240. public bool IsBuffLockMove { get { return mBuffLockMoveTime != null; } }
  241. public void BuffMoveLock(int timeMS)
  242. {
  243. this.startIdle();
  244. if (mBuffLockMoveTime != null && mBuffLockMoveTime.ExpireTimeMS >= timeMS)
  245. {
  246. return;
  247. }
  248. else
  249. {
  250. mBuffLockMoveTime = new TimeExpire<int>(timeMS);
  251. }
  252. }
  253. private void UpdateBuffMoveLock()
  254. {
  255. if (mBuffLockMoveTime != null && mBuffLockMoveTime.Update(Parent.UpdateIntervalMS))
  256. {
  257. mBuffLockMoveTime = null;
  258. }
  259. }
  260. #endregion
  261. //--------------------------------------------------------------------------------------
  262. protected override void onUpdate(bool slowRefresh)
  263. {
  264. base.onUpdate(slowRefresh);
  265. this.upateLock();
  266. this.UpdateBuffMoveLock();
  267. this.UpdateDoStopSkill();
  268. this.updateFollowTeam();
  269. this.UpdateAndModifyErrorData();
  270. }
  271. //--------------------------------------------------------------------------------------
  272. protected override void onAction(ObjectAction act)
  273. {
  274. if (IsLock) return;
  275. if (act is UnitAxisAction || act is UnitMoveAction)
  276. {
  277. //BUFF锁定客户端移动.
  278. if (IsBuffLockMove == true)
  279. {
  280. return;
  281. }
  282. }
  283. base.onAction(act);
  284. if (this.IsDead() == true)
  285. {
  286. //单位遗言更改.
  287. if (act is PlayerTestamentChangeEventAction)
  288. {
  289. PlayerTestamentChangeEventAction evt = act as PlayerTestamentChangeEventAction;
  290. ChangeTestament(evt.TestamentID);
  291. }
  292. }
  293. //自动战斗状态变更通知.
  294. if (act is PlayerAutoGuardEventC2B)
  295. {
  296. var evt = act as PlayerAutoGuardEventC2B;
  297. if (evt.Flag == false)
  298. {
  299. if (this.CurrentState is StateSkill)
  300. {
  301. mDoStopSkill = true;
  302. }
  303. }
  304. return;
  305. }
  306. else if (act is PlayerEnterCrossServerRequestC2B)
  307. {
  308. //战斗服判断单位是否在PVPV状态,如果不是发送切换场景请求.
  309. if ((this.Virtual as XmdsVirtual).CombatState != BattleStatus.PVP)
  310. {
  311. //发送协议.
  312. TransUnitEventB2R evt = new TransUnitEventB2R();
  313. //约定跨服场景ID.
  314. evt.SceneID = DEFAULT_CROSS_SERVER_ID;
  315. evt.playerId = this.PlayerUUID;
  316. evt.TargetX = 0;
  317. evt.TargetY = 0;
  318. this.queueEvent(evt);
  319. }
  320. else
  321. {
  322. (this.Virtual as XmdsVirtual).SendMsgToClient(CommonAI.XmdsConstConfig.TIPS_CAN_NOT_ENTER_SCENE);
  323. }
  324. }
  325. else if (act is GetMonsterSufferDamageInfoC2B)
  326. {
  327. var ret = act as GetMonsterSufferDamageInfoC2B;
  328. OnReceiveGetMonsterSufferDamageInfoC2B(ret);
  329. }
  330. foreach (var q in mQuestScript)
  331. {
  332. if (q.Value.TryDoAction(act))
  333. {
  334. break;
  335. }
  336. }
  337. }
  338. protected override bool doLaunchSkill(UnitLaunchSkillAction sk)
  339. {
  340. //Console.WriteLine(" ------------------------------doLaunchSkill - " + sk.SkillID + ", " + this.ID + ", targetID: " +
  341. // sk.TargetObjID + ", XY:" + this.X + ", " + this.Y + ", direction : " + this.Direction + ", " + this.Parent.UUID);
  342. //if(sk.SkillID == 110160)
  343. // sk.SkillID = 110360;
  344. //如果在采集中,不让放技能,并通知客户端.
  345. if (CurrentActionStatus == UnitActionStatus.Pick)
  346. {
  347. this.VirtualPlayer.SendMsgToClient(CommonAI.XmdsConstConfig.TIPS_BE_BUSY);
  348. return false;
  349. }
  350. var skill = this.getSkillState(sk.SkillID);
  351. if (skill == null)
  352. {
  353. return false;
  354. }
  355. return base.doLaunchSkill(sk);
  356. }
  357. public bool PlayerChangeSkill(int oldSkillID, int newSkillID, SkillLevelData levelData)
  358. {
  359. return this.Virtual.ChangeSkill(oldSkillID, newSkillID, levelData);
  360. }
  361. // 获取队伍的天命属性加成
  362. public override int GetTeamFateValue(UnitFateType fateType)
  363. {
  364. if(this.TeamVirtual == null)
  365. {
  366. return this.Virtual.GetPetTalentAddition(fateType);
  367. }
  368. return this.TeamVirtual.GetTeamFateValue(fateType);
  369. }
  370. //查找自动拾取的物品
  371. public override InstanceItem findGuardPickItem()
  372. {
  373. if (CanPickDropableItem)
  374. {
  375. return base.findGuardPickItem();
  376. }
  377. return null;
  378. }
  379. //查找自动战斗等一切情况下的物品拾取
  380. public InstanceItem findAutoGuardPickItem()
  381. {
  382. if (CanPickDropableItem)
  383. {
  384. InstanceItem min = null;
  385. //float min_len = float.MaxValue;
  386. Parent.ForEachNearObjects(this.X, this.Y, this.mAutoPickRange, (InstanceItem u, ref bool cancel) =>
  387. {
  388. if (!u.Info.Pickable && u.IsPickable(this))
  389. {
  390. //float len = MathVector.getDistanceSquare(u.X, u.Y, this.X, this.Y);
  391. //if (min_len > len && len <= searchValue)
  392. //{
  393. // min_len = len;
  394. // min = u;
  395. //}
  396. min = u;
  397. cancel = true;
  398. }
  399. });
  400. return min;
  401. }
  402. return null;
  403. }
  404. protected override void doPickObject(UnitPickObjectAction pick)
  405. {
  406. InstanceZoneObject obj = Parent.getObject<InstanceZoneObject>(pick.PickableObjectID);
  407. if (obj is InstanceItem)
  408. {
  409. InstanceItem item = obj as InstanceItem;
  410. var zip = (item.Info.Properties as XmdsItemProperties);
  411. switch (zip.ItemType)
  412. {
  413. case XmdsItemProperties.XmdsItemType.Equip:
  414. //if (CanPickDropableItem) XmdsDropableInstanceItem.IsPickable已经检查
  415. {
  416. item.DirectPickItem(this, () =>
  417. {
  418. RemoveDropItemB2C rd = new RemoveDropItemB2C(item.ID, this.ID);
  419. this.queueEvent(rd);
  420. });
  421. }
  422. break;
  423. default:
  424. {
  425. if (item.PickItem(this) && item.mFrom == 1)
  426. {
  427. RemoveDropItemB2C rd = new RemoveDropItemB2C(item.ID, this.ID);
  428. this.queueEvent(rd);
  429. }
  430. }
  431. break;
  432. }
  433. }
  434. else if (obj is InstanceUnit)
  435. {
  436. InstanceUnit unit = obj as InstanceUnit;
  437. this.PickUnit(unit);
  438. }
  439. }
  440. protected void TryDirectPickNearItems()
  441. {
  442. int size = this.VirtualPlayer.VirtualInventorySize;
  443. if (size == 0) { return; }
  444. Parent.ForEachNearObjects(this.X, this.Y, this.mAutoPickRange, (InstanceItem u, ref bool cancel) =>
  445. {
  446. if (size > 0)
  447. {
  448. var itemProp = u.Info.Properties as XmdsItemProperties;
  449. if (itemProp.AllowAutoGuardPick == true && u.PassTimeMS > 1000)
  450. {
  451. //自己可以捡的装备再扣除背包数量.
  452. if (u.DirectPickItem(this, () =>
  453. {
  454. RemoveDropItemB2C rd = new RemoveDropItemB2C(u.ID, this.ID);
  455. this.queueEvent(rd);
  456. }))
  457. {
  458. size--;
  459. }
  460. }
  461. }
  462. else
  463. {
  464. cancel = true;
  465. }
  466. });
  467. //this.VirtualPlayer.VirtualInventorySize = size;
  468. }
  469. public void setMocking(InstanceUnit unit)
  470. {
  471. if(unit == null)
  472. {
  473. if(mMockTarget != null)
  474. {
  475. mMockTarget.mMarkRemove = true;
  476. }
  477. mMockTarget = null;
  478. }
  479. else
  480. {
  481. mMockTarget = new XmdsInstanceUnitStateMock(this, unit);
  482. DoMockingAttack();
  483. }
  484. }
  485. protected override void updateGuard()
  486. {
  487. if (mMockTarget != null)
  488. {
  489. DoMockingAttack();
  490. }
  491. else if(this.mFocusPickItem != null && this.mFocusPickItem.IsActive)
  492. {
  493. if (this.mFocusPickItem.IsBlock())
  494. {
  495. this.mFocusPickItem = null;
  496. }
  497. else
  498. {
  499. return;
  500. }
  501. }
  502. else if (IsGuard == true && (mXmdsFocusTarget == null || (mXmdsFocusTarget != null && !mXmdsFocusTarget.IsActive)))
  503. {
  504. mXmdsFocusTarget = null;
  505. InstanceUnit enemy = null;
  506. if (lastAttackUnit != null && lastAttackUnit.IsActive == true)//上一次攻击的单位如果没死且能攻击,继续攻击他.
  507. {
  508. //上次攻击的单位如果超过了一屏范围,取消攻击.
  509. //if (CMath.getDistance(this.X, this.Y, lastAttackUnit.X, lastAttackUnit.Y) > this.mGuardSearchRange)
  510. //{
  511. // lastAttackUnit = null;
  512. //}
  513. //else
  514. {
  515. enemy = lastAttackUnit;
  516. }
  517. }
  518. else
  519. {
  520. lastAttackUnit = null;
  521. }
  522. if (enemy == null)//如果无效再找一次.
  523. {
  524. enemy = findGuardTarget(SkillTemplate.CastTarget.Enemy, AttackReason.Look);
  525. }
  526. if (enemy != null)
  527. {
  528. doXmdsFocusAttack(enemy, SkillTemplate.CastTarget.Enemy);
  529. return;
  530. }
  531. //UpdateXmdsGuard();
  532. }
  533. //自动拾取检测
  534. if(this.DoAutoPick())
  535. {
  536. return;
  537. }
  538. if (mFocusPickItem != null && !mFocusPickItem.IsActive)
  539. {
  540. mFocusPickItem = null;
  541. }
  542. //if (mFindItemTimeInterval.Update(Parent.UpdateIntervalMS))
  543. // {
  544. // TryDirectPickNearItems();
  545. //}
  546. if (IsGuard)
  547. {
  548. // 旋风斩贴近目标 //
  549. var state = CurrentState as StateSkill;
  550. if (state != null)
  551. {
  552. Vector2 movePos = (mXmdsFocusTarget == null) ? state.GetMoveToPos() : new Vector2(mXmdsFocusTarget.Target.X, mXmdsFocusTarget.Target.Y);
  553. if (movePos != null && state.IsControlMoveable && !state.unit.IsCannotMove && state.SkillData.AutoFightFollower)
  554. {
  555. if(state.setMoveTo(movePos.X, movePos.Y))
  556. {
  557. // 移动结束
  558. if((this.CurrentActionSubstate & (byte)UnitActionSubStatus.ChargeAtkMove) > 0)
  559. {
  560. this.RemoveActionSubState(UnitActionSubStatus.ChargeAtkMove);
  561. this.AddActionSubState(UnitActionSubStatus.ChargeAtkIdle);
  562. }
  563. }
  564. else
  565. {
  566. // 移动
  567. if ((this.CurrentActionSubstate & (byte)UnitActionSubStatus.ChargeAtkIdle) > 0)
  568. {
  569. this.RemoveActionSubState(UnitActionSubStatus.ChargeAtkIdle);
  570. this.AddActionSubState(UnitActionSubStatus.ChargeAtkMove);
  571. }
  572. }
  573. return;
  574. }
  575. }
  576. // 没目标定期检测目标 //
  577. if ((mXmdsFocusTarget == null) && (mFocusPickItem == null))
  578. {
  579. if (mCheckGuard.Update(Parent.UpdateIntervalMS))
  580. {
  581. var enemy = findGuardTarget(SkillTemplate.CastTarget.Enemy, AttackReason.Look);
  582. if (enemy != null)
  583. {
  584. doXmdsFocusAttack(enemy, SkillTemplate.CastTarget.Enemy);
  585. return;
  586. }
  587. var alias = findGuardTarget(SkillTemplate.CastTarget.AlliesIncludeSelf, AttackReason.Look);
  588. if (alias != null)
  589. {
  590. doXmdsFocusAttack(alias, SkillTemplate.CastTarget.AlliesIncludeSelf);
  591. return;
  592. }
  593. //if (CommonLang.CUtils.localTimeMS - this.mLastAutoAttackTime > 3000/* && this.X == this.mLastAutoFightPos.X && this.Y == this.mLastAutoFightPos.Y*/)
  594. //{
  595. // this.mLastAutoAttackTime = CommonLang.CUtils.localTimeMS;
  596. // this.mGuardPos.SetX(this.X);
  597. // this.mGuardPos.SetY(this.Y);
  598. //}
  599. }
  600. }
  601. }
  602. }
  603. //是否可以自动拾取
  604. public override bool DoAutoPick(bool ignoreInterval = false)
  605. {
  606. //非自动战斗或者非跟随,退出
  607. if (!this.IsGuard && (this.leadingMan == null || (this.leadingMan != null && !this.canFollowTeam)))
  608. {
  609. return false;
  610. }
  611. if(this.VirtualPlayer.VirtualInventorySize <= 0)
  612. {
  613. //只要自动战斗就提示这个,不合理,客户端自己加
  614. //if(mNextNotifyBagFullTime < CommonLang.CUtils.localTimeMS)
  615. //{
  616. // mNextNotifyBagFullTime = CommonLang.CUtils.localTimeMS + 6000;
  617. // this.Virtual.SendMsgToClient(CommonAI.XmdsConstConfig.TIPS_BAG_FULL);
  618. //}
  619. return false;
  620. }
  621. if (!this.Parent.CheckAutoDropItem() || !IsBattleCanPick())
  622. {
  623. return false;
  624. }
  625. if (mFocusPickItem == null || !mFocusPickItem.IsActive || mFocusPickItem.IsBlock())
  626. {
  627. bool leaderInView = false;
  628. if (this.mTeamVirtual != null && this.canFollowTeam && this.leadingMan != null && this.leadingMan.Enable)
  629. {
  630. // 如果正在跟随图中,取消拾取
  631. if(this.CurrentState is StateFollowLeader)
  632. {
  633. StateFollowLeader folloLeader = this.CurrentState as StateFollowLeader;
  634. if(folloLeader != null && folloLeader.FollowState == StateFollow.MoveState.Move)
  635. {
  636. return false;
  637. }
  638. }
  639. if (!CMath.includeRoundPoint(X, Y, this.mAutoPickRange, leadingMan.X, leadingMan.Y))
  640. {
  641. return false;
  642. }
  643. else
  644. {
  645. leaderInView = true;
  646. }
  647. }
  648. bool canAutoPick = IsGuard || this.CurrentState is StateFollowAndPickItem || leaderInView;
  649. if (canAutoPick && (ignoreInterval || mNextAutoFindPickItemTime < CommonLang.CUtils.localTimeMS))
  650. {
  651. var item = findAutoGuardPickItem();
  652. if (item != null)
  653. {
  654. mNextAutoFindPickItemTime = CommonLang.CUtils.localTimeMS + XmdsConfig.Instance.GUARD_FIND_ITEM_CYCLE_TIME;
  655. doFocusPickItem(item, false);
  656. return true;
  657. }
  658. }
  659. }
  660. else
  661. {
  662. return true;
  663. }
  664. return false;
  665. }
  666. //是否跟随队长
  667. public override bool IsFollowMaster()
  668. {
  669. if(this.leadingMan != null && this.canFollowTeam)
  670. {
  671. return true;
  672. }
  673. return false;
  674. }
  675. private bool IsBattleCanPick()
  676. {
  677. if(this.Virtual.GetBattleStatus() != BattleStatus.None)
  678. {
  679. // 不主动开战
  680. if(this.mXmdsFocusTarget != null && this.mXmdsFocusTarget.TargetUnit.IsActive && !this.mXmdsFocusTarget.TargetUnit.IsFullHP())
  681. {
  682. return false;
  683. }
  684. }
  685. return true;
  686. }
  687. //通知拾取消息
  688. public override void NotifyRemoveDropItemB2C(InstanceItem item)
  689. {
  690. RemoveDropItemB2C rd = new RemoveDropItemB2C(item.ID, this.ID);
  691. this.queueEvent(rd);
  692. }
  693. private void DoMockingAttack()
  694. {
  695. //doXmdsFocusAttack(mMockTarget.GetTargetUnit(), SkillTemplate.CastTarget.Enemy, false, this.DefaultSkillStatus());
  696. if (!(this.CurrentState is XmdsInstanceUnitStateMock) || !(this.CurrentState is StateSkill))
  697. {
  698. changeState(mMockTarget);
  699. queueEvent(new PlayerFocuseTargetEvent(this.ID, mMockTarget.GetTargetUnit().ID, SkillTemplate.CastTarget.Enemy)); ;
  700. }
  701. }
  702. public override BuffState AddBuff(BuffTemplate buff, InstanceUnit sender, int pointMaxOverLayer = 0, bool forever = false, bool bMaxOverlayer = false,
  703. int buffExt = 0, bool isControlBuf = false, bool maxReset = false, int addLayers = 0)
  704. {
  705. XmdsBuffProperties prop = buff.Properties as XmdsBuffProperties;
  706. if (prop.BuffAbilityList != null)
  707. {
  708. int count = prop.BuffAbilityList.Count;
  709. for (int i = 0; i < count; i++)
  710. {
  711. if (XmdsInstanceUtils.IsDebuff(prop.BuffAbilityList[i].ability))
  712. {
  713. isControlBuf = true;
  714. break;
  715. }
  716. }
  717. }
  718. return base.AddBuff(buff, sender, pointMaxOverLayer, forever, bMaxOverlayer, buffExt, isControlBuf, maxReset, addLayers);
  719. }
  720. protected override void doHitAttack(InstanceUnit attacker, AttackSource source)
  721. {
  722. if (this.IsDead())
  723. {
  724. //XmdsAttackProperties zap = (source.Attack.Properties as XmdsAttackProperties);
  725. if (attacker.CurrentState is StateSkill)
  726. {
  727. var skilltemplate = (attacker.CurrentState as StateSkill).SkillData;
  728. if ((skilltemplate.Properties as XmdsSkillProperties).TargetType
  729. == XmdsSkillProperties.XmdsSkillTargetType.AllianceDead)
  730. {
  731. TemplateManager.Formula.OnHit(attacker, source, this);
  732. }
  733. }
  734. }
  735. base.doHitAttack(attacker, source);
  736. }
  737. /// <summary>
  738. /// 更改遗言.
  739. /// </summary>
  740. /// <param name="testamentID"></param>
  741. private void ChangeTestament(byte testamentID)
  742. {
  743. (this.Virtual as XmdsVirtual_Player).SyncTestament(testamentID);
  744. }
  745. public override void InitSkills(LaunchSkill baseSkill, params LaunchSkill[] skills)
  746. {
  747. if (this.Virtual == null ||
  748. (this.Virtual as XmdsVirtual).IsFinishSkillInit() == false)
  749. {
  750. return;
  751. }
  752. base.InitSkills(baseSkill, skills);
  753. }
  754. public override bool tryLaunchRandomSkillAndCancelCurrentSkill(InstanceUnit target, bool autoFocusNearTarget = false)
  755. {
  756. //自动战斗不允许中断当前技能施放.
  757. return false;
  758. }
  759. private void UpdateDoStopSkill()
  760. {
  761. if (this.CurrentState is StateSkill)
  762. {
  763. if (mDoStopSkill)
  764. {
  765. var ss = (this.CurrentState as StateSkill);
  766. if (ss.IsCancelableByMove || ss.IsCancelableBySkill)
  767. {
  768. ss.block();
  769. mDoStopSkill = false;
  770. }
  771. }
  772. }
  773. else
  774. {
  775. mDoStopSkill = false;
  776. }
  777. }
  778. protected override void doGuard(UnitGuardAction act)
  779. {
  780. //没有通关不能自动战斗.
  781. if (act.guard == true && this.Virtual != null && (this.Virtual as XmdsVirtual_Player).AllowUseAutoGuard() == false)
  782. {
  783. // 机器人除外.
  784. if (IsRobot)
  785. {
  786. return;
  787. }
  788. }
  789. cleanFocus();
  790. lastAttackUnit = null;
  791. XmdsVirtual.FormatLog(CommonLang.Log.LoggerLevel.DEBUG, "act.reason:" + act.reason);
  792. if (act.guard == false)
  793. {
  794. // mAutoGuardTargetList.Clear();
  795. }
  796. else
  797. {
  798. try
  799. {
  800. ParseGuardActionReason(act.reason);
  801. }
  802. catch (Exception error)
  803. {
  804. XmdsVirtual.FormatLog(CommonLang.Log.LoggerLevel.ERROR, "ParseGuardActionReason Error : " + act.reason + " error : " + error.ToString());
  805. }
  806. }
  807. base.doGuard(act);
  808. }
  809. //private static List<int> s_RobotScenID = new List<int>() { 21202, 11001, 11002, 11004,11006, 21202,11021,11022,11047,11048,11049,
  810. // 11050,11052,11053,11056,11061,11064, 11019,11065,11068,11071, 11072,11074,12116,12119, 11012,11015,11019,11024,11029,11045};
  811. /// <summary>
  812. /// 解析挂机指令,新增指令头,告知是定点挂机还是全图游走.
  813. /// 第0位 map/point:
  814. /// 第1位 怪物模板ID:
  815. /// EG: map:怪物模板ID:怪物模板ID
  816. /// </summary>
  817. /// <param name="reason"></param>
  818. private void ParseGuardActionReason(string reason)
  819. {
  820. if (mCurGuardMode == GuardMode.Mode_Point)
  821. {
  822. mGuardPos.SetX(this.X);
  823. mGuardPos.SetY(this.Y);
  824. }
  825. # if OPNE_JSG_AI_TOOLS
  826. if (this.IsRobot)
  827. {
  828. this.mGuardSearchRange = 50;
  829. reason = CommonAI.XmdsConstConfig.AUTO_GUARD_MODE_MAP;
  830. }
  831. #endif
  832. if (string.IsNullOrEmpty(reason))
  833. {
  834. return;
  835. }
  836. string[] array = reason.Split(SPLIT);
  837. if (array != null && array.Length > 0)
  838. {
  839. string head = array[0];
  840. if (head == CommonAI.XmdsConstConfig.AUTO_GUARD_MODE_MAP) //全图模式.
  841. {
  842. mCurGuardMode = GuardMode.Mode_Map;
  843. }
  844. else if (head == CommonAI.XmdsConstConfig.AUTO_GUARD_MODE_POINT)//定点模式.
  845. {
  846. mCurGuardMode = GuardMode.Mode_Point;
  847. mGuardPos.SetX(this.X);
  848. mGuardPos.SetY(this.Y);
  849. }
  850. //array可能是point: point:0 point:taskId:targetId
  851. if (array.Length >= 3)
  852. {
  853. clearAutoGuardTargetList();
  854. if (!string.IsNullOrEmpty(array[1]))
  855. {
  856. int taskId = int.Parse(array[1]);
  857. for (int i = 2; i < array.Length; i++)
  858. {
  859. if (!string.IsNullOrEmpty(array[i]))
  860. {
  861. int targetId = int.Parse(array[i]);
  862. if (targetId > 0)
  863. {
  864. mAutoGuardTargetList.Add(targetId);
  865. log.Debug("--------------addTarget id: " + targetId);
  866. }
  867. }
  868. }
  869. }
  870. }
  871. }
  872. }
  873. private float GetGuardPosX()
  874. {
  875. switch (mCurGuardMode)
  876. {
  877. case GuardMode.Mode_Map:
  878. return this.X;
  879. case GuardMode.Mode_Point:
  880. return mGuardPos.X;
  881. default:
  882. return this.X;
  883. }
  884. }
  885. private float GetGuardPosY()
  886. {
  887. switch (mCurGuardMode)
  888. {
  889. case GuardMode.Mode_Map:
  890. return this.Y;
  891. case GuardMode.Mode_Point:
  892. return mGuardPos.Y;
  893. default:
  894. return this.Y;
  895. }
  896. }
  897. //查找自动攻击单位.
  898. public override InstanceUnit findGuardTarget(SkillTemplate.CastTarget expect = SkillTemplate.CastTarget.Enemy, AttackReason reason = AttackReason.Look)
  899. {
  900. InstanceUnit min = null;
  901. if (getAvailableAutoLaunchSkill(expect) != null)
  902. {
  903. //有优先目标取优先目标攻击.
  904. if (mAutoGuardTargetList.Count > 0)
  905. {
  906. //using (var list = ListObjectPool<InstanceUnit>.AllocAutoRelease())
  907. List<InstanceUnit> list = new List<InstanceUnit>();
  908. {
  909. Parent.ForEachNearObjects(GetGuardPosX(), GetGuardPosY(), mGuardSearchRange, (InstanceUnit u, ref bool cancel) =>
  910. {
  911. if (mCurGuardMode == GuardMode.Mode_Point && (MathVector.getDistanceSquare(u.X, u.Y, this.X, this.Y) > mGuardSearchRangeExt))
  912. {
  913. return;
  914. }
  915. if (Parent.IsAttackable(this, u, expect, reason, Info))
  916. {
  917. XmdsVirtual zv = u.Virtual as XmdsVirtual;
  918. if (zv != null)
  919. {
  920. if (mAutoGuardTargetList.Contains(zv.GetVirtualTemplateID()))
  921. {
  922. list.Add(u);
  923. }
  924. }
  925. }
  926. });
  927. if (list.Count > 0)
  928. {
  929. list.Sort((a, b) =>
  930. {
  931. float da = CMath.getDistanceSquare(a.X, a.Y, this.X, this.Y);
  932. float db = CMath.getDistanceSquare(b.X, b.Y, this.X, this.Y);
  933. return (int)(da - db);
  934. });
  935. min = list[0];
  936. if (min != null)
  937. {
  938. mAutoGuardTargetTimes = 0;
  939. }
  940. }
  941. //log.Debug("findGuardTarget times: " + mAutoGuardTargetTimes + " count:" + mAutoGuardTargetList.Count + " min:" + (min == null ? "null" : "finded"));
  942. //找不到目标怪就直接返回null等下一次查找,直到等待MAX_AUTO_GUARD_TARGET_TIMES次数
  943. if (mAutoGuardTargetList.Count > 0 && min == null)
  944. {
  945. mAutoGuardTargetTimes += 1;
  946. if (mAutoGuardTargetTimes >= MAX_AUTO_GUARD_TARGET_TIMES)
  947. {
  948. clearAutoGuardTargetList();
  949. }
  950. else
  951. {
  952. return null;
  953. }
  954. }
  955. }
  956. }
  957. //没有优先目标,按照默认逻辑走.
  958. //原本是走父类逻辑,但是现在要分挂机模式,要分索敌范围.
  959. //base.findGuardTarget(expect, reason);
  960. if (min == null)
  961. {
  962. if (getAvailableSkill(expect) != null)
  963. {
  964. bool isMeSteah = this.IsHasSubState(UnitActionSubStatus.Stealth);
  965. float min_len = float.MaxValue;
  966. Parent.ForEachNearObjects(GetGuardPosX(), GetGuardPosY(), mGuardSearchRange, (InstanceUnit u, ref bool cancel) =>
  967. {
  968. // 别人隐身了,自己没有隐身,自动攻击不到
  969. if(u.Virtual.GetBattleStatus() == BattleStatus.None && u.IsHasSubState(UnitActionSubStatus.Stealth) && !isMeSteah)
  970. {
  971. return;
  972. }
  973. float len = MathVector.getDistanceSquare(u.X, u.Y, this.X, this.Y);
  974. if (mCurGuardMode == GuardMode.Mode_Point && len > mGuardSearchRangeExt)
  975. {
  976. return;
  977. }
  978. if (Parent.IsAttackable(this, u, expect, reason, Info))
  979. {
  980. #if OPNE_JSG_AI_TOOLS
  981. //降低机器人之间的互相PK概率
  982. //if (this.IsRobot && u.IsPlayer)
  983. //{
  984. // XmdsInstancePlayer uPlayer = u as XmdsInstancePlayer;
  985. // if (uPlayer.IsRobot && this.RandomN.Next() % 100 < 95)
  986. // {
  987. // return;
  988. // }
  989. //}
  990. //AI随机攻击目标
  991. if (this.IsRobot && this.RandomN.Next() % 100 < 15)
  992. {
  993. min = u;
  994. cancel = true;
  995. return;
  996. }
  997. #endif
  998. if (min_len > len)
  999. {
  1000. min_len = len;
  1001. min = u;
  1002. }
  1003. }
  1004. });
  1005. }
  1006. return min;
  1007. }
  1008. }
  1009. return min;
  1010. }
  1011. /// <summary>
  1012. /// 当任务完成时
  1013. /// </summary>
  1014. /// <param name="qd"></param>
  1015. protected override void onQuestCommitted(QuestData qd)
  1016. {
  1017. int targetId = XmdsQuestData.GetTargetID(qd);
  1018. if (this.mAutoGuardTargetList.Contains(targetId))
  1019. {
  1020. clearAutoGuardTargetList();
  1021. }
  1022. }
  1023. public override void OnReconnected(UnitInfo temp, int force, int level, Vector2 enterPos)
  1024. {
  1025. (this.Virtual as XmdsVirtual_Player).OnUnitReEnter(temp, force, level, enterPos);
  1026. base.OnReconnected(temp, force, level, enterPos);
  1027. }
  1028. public override void OnDisconnected()
  1029. {
  1030. base.OnDisconnected();
  1031. var act = new UnitGuardAction();
  1032. act.guard = false;
  1033. doGuard(act);
  1034. var actFollow = new UnitFollowAction();
  1035. actFollow.follow = false;
  1036. doFollow(actFollow);
  1037. }
  1038. protected override void doFollow(UnitFollowAction act)
  1039. {
  1040. base.doFollow(act);
  1041. if (act.follow == true)
  1042. {
  1043. if (this.TeamVirtual != null && this.stateFollow != null)
  1044. {
  1045. if (this.TeamVirtual.TeamLeader != null && this.TeamVirtual.TeamLeader.Enable)
  1046. {
  1047. if (this.TeamVirtual.acceptAutoFollow(this))
  1048. {
  1049. this.TeamVirtual.changeMemberAutoFollow();
  1050. this.stateFollow.Distance = this.TeamVirtual.TeamLeader.RadiusSize + (this.BodyBlockSize * (this.FollowIndex + 1)) * 2;
  1051. //this.changeState(this.stateFollow);
  1052. }
  1053. else
  1054. {
  1055. this.TeamVirtual.cancelAutoFollow(this);
  1056. this.TeamVirtual.changeMemberAutoFollow();
  1057. }
  1058. }
  1059. else if (this.TeamVirtual.TeamLeader == null)
  1060. {
  1061. this.TeamVirtual.cancelAutoFollow(this);
  1062. this.TeamVirtual.changeMemberAutoFollow();
  1063. }
  1064. }
  1065. }
  1066. else
  1067. {
  1068. if (this.TeamVirtual != null)
  1069. {
  1070. this.TeamVirtual.cancelAutoFollow(this);
  1071. this.TeamVirtual.changeMemberAutoFollow();
  1072. }
  1073. }
  1074. }
  1075. public void SendBotTestAutoFight()
  1076. {
  1077. if (mBotTestAutoFight == true)
  1078. {
  1079. var act = new UnitGuardAction();
  1080. act.guard = true;
  1081. doGuard(act);
  1082. }
  1083. }
  1084. #region 自动释放技能.
  1085. /// <summary>
  1086. /// 获得当前能够使用的技能.
  1087. /// </summary>
  1088. /// <returns></returns>
  1089. protected SkillState GetAvailableAutoLaunchSkill(ref InstanceUnit enemy)
  1090. {
  1091. SkillState ret = null;
  1092. do
  1093. {
  1094. //没蓝直接转普攻.
  1095. if (mXmdsFocusTarget == null) { break; }
  1096. List<SkillState> list = SkillStatus as List<SkillState>;
  1097. XmdsStateFollowAndAttack current = CurrentState as XmdsStateFollowAndAttack;
  1098. //优先多段攻击技能
  1099. if (current != null)
  1100. {
  1101. for (int si = list.Count - 1; si >= 0; --si)
  1102. {
  1103. SkillState sst = list[si];
  1104. if (sst == null || (DefaultSkill != null && DefaultSkill.ID == sst.Data.ID))
  1105. {
  1106. continue;
  1107. }
  1108. if (sst.LaunchSkill.AutoLaunch && sst.IsActive && sst.IsMutilAction() && sst.IsHasNext()
  1109. && sst.IsCD && sst.IsDone && this.VirtualPlayer.SkillAutoLaunchTest(sst))
  1110. {
  1111. //System.Console.WriteLine(" - GetAvailableAutoLaunchSkill - " + sst.ID + ", " + sst.ActionIndex);
  1112. ret = sst;
  1113. break;
  1114. }
  1115. }
  1116. }
  1117. //其次技能.
  1118. if (ret != null) { break; }
  1119. for (int si = list.Count - 1; si >= 0; --si)
  1120. {
  1121. SkillState sst = list[si];
  1122. //非PVP, PVE状态下不允许释放技能
  1123. if (DefaultSkill != null && sst.Data.ID != DefaultSkill.ID &&
  1124. sst.LaunchSkill.AutoLaunch && (Virtual.IsInPVP() || Virtual.IsInPVE()))
  1125. {
  1126. if (!sst.IsCD && sst.IsActive && sst.IsDone && sst.LaunchSkill.AutoLaunch && sst.CanAutoLaunch() &&
  1127. this.VirtualPlayer.SkillAutoLaunchTest(sst))
  1128. {
  1129. //判断需要能量值
  1130. if (!this.Virtual.LaunchSkillCheckTalentInfo(sst))
  1131. {
  1132. continue;
  1133. }
  1134. //切换作用不同的技能,这时需要切换技能目标,会导致丢失原目标.
  1135. if (mXmdsFocusTarget.ExpectTarget != sst.Data.ExpectTarget)
  1136. {
  1137. enemy = findGuardTarget(sst.Data.ExpectTarget, AttackReason.Look);
  1138. }
  1139. if (enemy != null)
  1140. {
  1141. ret = sst;
  1142. }
  1143. break;
  1144. }
  1145. }
  1146. }
  1147. } while (false);
  1148. //没有技能时施放普攻.
  1149. if (ret == null && DefaultSkill != null)
  1150. {
  1151. if (enemy != null)
  1152. {
  1153. ret = getSkillState(DefaultSkill.ID);
  1154. }
  1155. }
  1156. return ret;
  1157. }
  1158. /// <summary>
  1159. /// 判断目标技能是否可以自动释放.
  1160. /// </summary>
  1161. /// <param name="skillid"></param>
  1162. /// <returns></returns>
  1163. //private bool CanAutoLaunchSkill(int skillid)
  1164. //{
  1165. // bool ret = false;
  1166. // var v = (this.Virtual as XmdsVirtual);
  1167. // if (v != null)
  1168. // {
  1169. // ret = v.AllowAutoLaunch(skillid);
  1170. // }
  1171. // return ret;
  1172. //}
  1173. public override SkillState getRandomLaunchableExpectSkill(InstanceUnit target, SkillTemplate.CastTarget expectTarget, AttackReason reason = AttackReason.Tracing, bool checkRange = false)
  1174. {
  1175. var ss = GetAvailableAutoLaunchSkill(ref target);
  1176. if (mXmdsFocusTarget != null && target != null && ss != null)
  1177. {
  1178. //mXmdsFocusTarget.TargetUnit = target;
  1179. //mXmdsFocusTarget.ExpectSkillState = ss;
  1180. //mXmdsFocusTarget.ChangeMoveTarget(target);
  1181. mXmdsFocusTarget.ChangeAttackTarget(ss, target);
  1182. }
  1183. return ss;
  1184. }
  1185. private InstanceUnit lastAttackUnit = null;
  1186. public override SkillState getRandomLaunchableExpectSkill(SkillTemplate.CastTarget expectTarget)
  1187. {
  1188. InstanceUnit unit = null;
  1189. if (mXmdsFocusTarget != null)
  1190. {
  1191. unit = mXmdsFocusTarget.TargetUnit;
  1192. }
  1193. var ss = GetAvailableAutoLaunchSkill(ref unit);
  1194. if (mXmdsFocusTarget != null && unit != null && ss != null)
  1195. {
  1196. //mXmdsFocusTarget.TargetUnit = unit;
  1197. //mXmdsFocusTarget.ExpectSkillState = ss;
  1198. //mXmdsFocusTarget.ChangeMoveTarget(unit);
  1199. if (ss.Data.ExpectTarget != mXmdsFocusTarget.ExpectTarget)
  1200. {
  1201. if (mXmdsFocusTarget.ExpectTarget == SkillTemplate.CastTarget.Enemy)
  1202. {
  1203. lastAttackUnit = mXmdsFocusTarget.TargetUnit;
  1204. }
  1205. }
  1206. mXmdsFocusTarget.ChangeAttackTarget(ss, unit);
  1207. }
  1208. return ss;
  1209. }
  1210. public void OnReceiveGetMonsterSufferDamageInfoC2B(GetMonsterSufferDamageInfoC2B evt)
  1211. {
  1212. var ret = evt as GetMonsterSufferDamageInfoC2B;
  1213. //找到指定的怪物单位,获取伤害信息并排序.
  1214. InstanceUnit iu = this.Parent.getUnit(ret.MonsterID);
  1215. if (iu != null && iu is XmdsInstanceMonster)
  1216. {
  1217. XmdsVirtual_Monster zvm = (iu as XmdsInstanceMonster).Virtual as XmdsVirtual_Monster;
  1218. if (zvm != null)
  1219. {
  1220. HashMap<string, PlayerDamageInfo> map = zvm.GetSufferDamage();
  1221. if (map != null)
  1222. {
  1223. MonsterSufferDamageInfoB2C msg = new MonsterSufferDamageInfoB2C();
  1224. List<PlayerDamageInfo> infoList = new List<PlayerDamageInfo>();
  1225. int playerRank = 0;
  1226. int playerDamage = 0;
  1227. //获取数据并排序.
  1228. foreach (var kvp in map)
  1229. {
  1230. infoList.Add(kvp.Value);
  1231. }
  1232. //伤害从大到小排序.
  1233. infoList.Sort((a, b) =>
  1234. {
  1235. return b.Damage - a.Damage;
  1236. });
  1237. //找到自己的排名和伤害.
  1238. for (int i = 0; i < infoList.Count; i++)
  1239. {
  1240. var temp = infoList[i];
  1241. if (this.PlayerUUID == temp.PlayerUUID)
  1242. {
  1243. playerRank = i + 1;
  1244. playerDamage = temp.Damage;
  1245. break;
  1246. }
  1247. }
  1248. //只取10条详细信息发送.
  1249. if (infoList.Count > 10)
  1250. {
  1251. infoList.RemoveRange(10, infoList.Count - 10);
  1252. }
  1253. msg.PlayerDamage = playerDamage;
  1254. msg.PlayerRank = playerRank;
  1255. msg.InfoList = infoList;
  1256. this.queueEvent(msg);
  1257. }
  1258. }
  1259. }
  1260. }
  1261. #endregion
  1262. #region 绕开底层重新实现自动战斗AI.
  1263. private XmdsInstanceUnitStateMachine.XmdsStateFollowAndAttack doXmdsFocusAttack(InstanceUnit target,
  1264. SkillTemplate.CastTarget expect_target = SkillTemplate.CastTarget.Enemy,
  1265. bool autoFocusNearTarget = true, InstanceUnit.SkillState lanuchSkill = null)
  1266. {
  1267. if ((mAttackTo == null || mAttackTo.IsAttack) && Parent.IsAttackable(this, target, expect_target, AttackReason.Tracing, Info))
  1268. {
  1269. this.mLastAutoAttackTime = CommonLang.CUtils.localTimeMS;
  1270. if (mXmdsFocusTarget != null)
  1271. {
  1272. if (mXmdsFocusTarget.TargetUnit != target)
  1273. {
  1274. mXmdsFocusTarget = new XmdsInstanceUnitStateMachine.XmdsStateFollowAndAttack(this, target, expect_target, autoFocusNearTarget, lanuchSkill);
  1275. if (changeState(mXmdsFocusTarget))
  1276. {
  1277. queueEvent(new PlayerFocuseTargetEvent(this.ID, target.ID, expect_target));
  1278. }
  1279. }
  1280. }
  1281. else
  1282. {
  1283. mXmdsFocusTarget = new XmdsInstanceUnitStateMachine.XmdsStateFollowAndAttack(this, target, expect_target, autoFocusNearTarget, lanuchSkill);
  1284. if (changeState(mXmdsFocusTarget))
  1285. {
  1286. queueEvent(new PlayerFocuseTargetEvent(this.ID, target.ID, expect_target));
  1287. }
  1288. }
  1289. }
  1290. else
  1291. {
  1292. mXmdsFocusTarget = null;
  1293. }
  1294. return mXmdsFocusTarget;
  1295. }
  1296. private void doXmdsFocusAttack(InstanceUnit target, SkillState state)
  1297. {
  1298. SkillTemplate.CastTarget expect_target = state.Data.ExpectTarget;
  1299. if ((mAttackTo == null || mAttackTo.IsAttack) && Parent.IsAttackable(this, target, expect_target, AttackReason.Tracing, Info))
  1300. {
  1301. if (mXmdsFocusTarget != null)
  1302. {
  1303. if (mXmdsFocusTarget.TargetUnit != target)
  1304. {
  1305. mXmdsFocusTarget = new XmdsInstanceUnitStateMachine.XmdsStateFollowAndAttack(this, target, expect_target, true);
  1306. mXmdsFocusTarget.ExpectSkillState = state;
  1307. if (changeState(mXmdsFocusTarget))
  1308. {
  1309. queueEvent(new PlayerFocuseTargetEvent(this.ID, target.ID, expect_target));
  1310. }
  1311. }
  1312. }
  1313. else
  1314. {
  1315. mXmdsFocusTarget = new XmdsInstanceUnitStateMachine.XmdsStateFollowAndAttack(this, target, expect_target, true);
  1316. mXmdsFocusTarget.ExpectSkillState = state;
  1317. if (changeState(mXmdsFocusTarget))
  1318. {
  1319. queueEvent(new PlayerFocuseTargetEvent(this.ID, target.ID, expect_target));
  1320. }
  1321. }
  1322. }
  1323. else
  1324. {
  1325. mXmdsFocusTarget = null;
  1326. }
  1327. }
  1328. protected override void cleanFocus()
  1329. {
  1330. mFocusTarget = null;
  1331. mXmdsFocusTarget = null;
  1332. base.cleanFocus();
  1333. }
  1334. protected override void doFocusTarget(UnitFocuseTargetAction focus)
  1335. {
  1336. if (IsGuard)
  1337. {
  1338. mAttackTo = null;
  1339. InstanceZoneObject src = Parent.getObject<InstanceZoneObject>(focus.targetUnitID);
  1340. //目标不能是宠物
  1341. if ((src is InstanceUnit) && !(src is InstancePet))
  1342. {
  1343. if (!IsNoneSkill && ((src as InstanceUnit).IsActive))
  1344. {
  1345. doXmdsFocusAttack(src as InstanceUnit);
  1346. }
  1347. }
  1348. else if ((src is InstanceItem))
  1349. {
  1350. if (src.Enable)
  1351. {
  1352. doFocusPickItem(src as InstanceItem);
  1353. }
  1354. }
  1355. else
  1356. {
  1357. cleanFocus();
  1358. }
  1359. }
  1360. }
  1361. public override void OnUnitDead()
  1362. {
  1363. this.cleanFocus();
  1364. // 死亡取消自动战斗
  1365. if (this.IsGuard)
  1366. {
  1367. this.IsGuard = false;
  1368. this.Virtual.doEvent(JSGCustomOpType.UpdateAutoBattleFlag);
  1369. }
  1370. }
  1371. public override void doSomething()
  1372. {
  1373. if (mWaitingSkill != null && CurrentState is StateSkill)
  1374. {
  1375. if (doLaunchSkill(mWaitingSkill))
  1376. {
  1377. return;
  1378. }
  1379. }
  1380. else if(this.DoAutoPick())
  1381. {
  1382. return;
  1383. }
  1384. else if (IsGuard)
  1385. {
  1386. if (this.canFollowTeam && leadingMan != null)
  1387. {
  1388. if (leadingMan.AoiStatus != null)
  1389. {
  1390. //若队长进入位面
  1391. UnitGuardAction action = new UnitGuardAction();
  1392. action.guard = false;
  1393. action.reason = "guard to follow";
  1394. doGuard(action);
  1395. startIdle();
  1396. return;
  1397. }
  1398. else if (leadingMan.Virtual.GetBattleStatus() == BattleStatus.None)
  1399. {
  1400. UnitGuardAction action = new UnitGuardAction();
  1401. action.guard = false;
  1402. action.reason = "guard to follow";
  1403. doGuard(action);
  1404. updateStateToFollowTeam();
  1405. mXmdsFocusTarget = null;
  1406. return;
  1407. }
  1408. this.stateFollow.Distance = this.leadingMan.RadiusSize + (this.BodyBlockSize * (this.FollowIndex + 1)) * 2;
  1409. //var distance = leadingMan.RadiusSize + this.BodyBlockSize * 2;
  1410. if (!CMath.includeRoundPoint(X, Y, this.GetFollowDistance(true), leadingMan.X, leadingMan.Y))
  1411. {
  1412. UnitGuardAction action = new UnitGuardAction();
  1413. action.guard = false;
  1414. action.reason = "guard to follow";
  1415. doGuard(action);
  1416. updateStateToFollowTeam();
  1417. mXmdsFocusTarget = null;
  1418. return;
  1419. }
  1420. }
  1421. if (mFocusPickItem != null && mFocusPickItem.IsActive)
  1422. {
  1423. changeState(mFocusPickItem);
  1424. return;
  1425. }
  1426. else
  1427. {
  1428. mFocusPickItem = null;
  1429. }
  1430. if (mXmdsFocusTarget != null && mXmdsFocusTarget.IsActive)
  1431. {
  1432. if (Parent.IsAttackable(this, mXmdsFocusTarget.TargetUnit, SkillTemplate.CastTarget.AlliesIncludeSelf, AttackReason.Attack, Info))
  1433. {
  1434. mXmdsFocusTarget = null;
  1435. }
  1436. else
  1437. {
  1438. changeState(mXmdsFocusTarget);
  1439. return;
  1440. }
  1441. }
  1442. else
  1443. {
  1444. mXmdsFocusTarget = null;
  1445. }
  1446. if (mAttackTo != null && !mAttackTo.IsDone)
  1447. {
  1448. changeState(mAttackTo);
  1449. return;
  1450. }
  1451. }
  1452. else if (this.canFollowTeam && leadingMan != null)
  1453. {
  1454. if (leadingMan.Enable)
  1455. {
  1456. if (this.CurrentState != this.stateFollow)
  1457. {
  1458. if (leadingMan.AoiStatus != null)
  1459. {
  1460. //若队长进入位面
  1461. return;
  1462. }
  1463. this.stateFollow.Distance = this.leadingMan.RadiusSize + (this.BodyBlockSize * (this.FollowIndex + 1)) * 2;
  1464. if (!CMath.includeRoundPoint(X, Y, this.GetFollowDistance(false), leadingMan.X, leadingMan.Y))
  1465. {
  1466. this.updateStateToFollowTeam();
  1467. mXmdsFocusTarget = null;
  1468. }
  1469. else
  1470. {//组队切场景后,如果队长不移动,队员状态不改变
  1471. this.updateStateToFollowTeam();
  1472. mXmdsFocusTarget = null;
  1473. }
  1474. }
  1475. else
  1476. {
  1477. //发生寻路卡死
  1478. //transportToTeamLeader();
  1479. }
  1480. //var distance = leadingMan.RadiusSize + this.BodyBlockSize * 2;
  1481. //if (!CMath.includeRoundPoint(X, Y, distance, leadingMan.X, leadingMan.Y))
  1482. //{
  1483. // this.updateStateToFollowTeam();
  1484. // mXmdsFocusTarget = null;
  1485. // return;
  1486. //}
  1487. return;
  1488. }
  1489. else
  1490. {
  1491. //leadingMan忙,切换leadingMan
  1492. //mTeamVirtual.changeMemberAutoFollow();
  1493. }
  1494. }
  1495. else if (CurrentState is StateChuanGongA || CurrentState is StateChuanGongB || CurrentState is StateClearYaoQi)
  1496. {
  1497. if (CommonLang.CUtils.localTimeMS < chuangongTime)
  1498. {
  1499. return;
  1500. }
  1501. }
  1502. else if(CurrentState is StateDaZuo)
  1503. {
  1504. return;
  1505. }
  1506. else if (CurrentState is StateDaZuoRecoveryAttr)
  1507. {
  1508. return;
  1509. }
  1510. startIdle();
  1511. }
  1512. #endregion
  1513. private float GetFollowDistance(bool isGuard)
  1514. {
  1515. if (isGuard)
  1516. {
  1517. return Templates.CFG.PET_FOLLOW_DISTANCE_MAX;
  1518. }
  1519. return this.stateFollow.Distance;
  1520. }
  1521. private void OnPlayerCreate()
  1522. {
  1523. lock (CreateInfoMap)
  1524. {
  1525. AtomicInteger c = null;
  1526. zoneID = (this.Parent as EditorScene).Data.ID;
  1527. if (CreateInfoMap.TryGetValue(zoneID, out c))
  1528. {
  1529. c++;
  1530. }
  1531. else
  1532. {
  1533. c = new AtomicInteger(1);
  1534. CreateInfoMap.Add(zoneID, c);
  1535. }
  1536. }
  1537. }
  1538. ~XmdsInstancePlayer()
  1539. {
  1540. lock (CreateInfoMap)
  1541. {
  1542. AtomicInteger c = null;
  1543. if (CreateInfoMap.TryGetValue(zoneID, out c))
  1544. {
  1545. c--;
  1546. }
  1547. }
  1548. }
  1549. //组队跟随
  1550. private XmdsTeamVirtual mTeamVirtual;
  1551. public XmdsTeamVirtual TeamVirtual
  1552. {
  1553. set
  1554. {
  1555. mTeamVirtual = value;
  1556. }
  1557. get
  1558. {
  1559. return mTeamVirtual;
  1560. }
  1561. }
  1562. private byte mFollowIndex;
  1563. public byte FollowIndex
  1564. {
  1565. set
  1566. {
  1567. mFollowIndex = value;
  1568. }
  1569. get
  1570. {
  1571. return mFollowIndex;
  1572. }
  1573. }
  1574. protected XmdsInstancePlayer leadingMan;
  1575. public XmdsInstancePlayer Leader
  1576. {
  1577. get
  1578. {
  1579. return leadingMan;
  1580. }
  1581. set
  1582. {
  1583. if (leadingMan != value)
  1584. {
  1585. leadingMan = value;
  1586. if (leadingMan == null)
  1587. {
  1588. this.stateFollow = null;
  1589. }
  1590. else
  1591. {
  1592. if (this.stateFollow == null)
  1593. {
  1594. this.stateFollow = new StateFollowLeader(this, leadingMan, 300);
  1595. }
  1596. else
  1597. {
  1598. this.stateFollow.Follower = leadingMan;
  1599. }
  1600. //this.stateFollow = StateFollowTeam.createStateFollowTeam(this, leadingMan);
  1601. }
  1602. }
  1603. }
  1604. }
  1605. public bool canFollowTeam = false;
  1606. public StateFollowLeader stateFollow;
  1607. override public bool isTeamMemberAndFollow()
  1608. {
  1609. return canFollowTeam;
  1610. }
  1611. //切换至跟随状态
  1612. public void updateStateToFollowTeam()
  1613. {
  1614. if (this.mIsReady)
  1615. {
  1616. if (this.canFollowTeam)
  1617. {
  1618. if (this.stateFollow != null && this.CurrentState != this.stateFollow)
  1619. {
  1620. this.changeState(this.stateFollow);
  1621. }
  1622. else if (this.stateFollow == null)
  1623. {
  1624. mTeamVirtual.changeMemberAutoFollow();
  1625. }
  1626. }
  1627. }
  1628. }
  1629. public void cancelGuard()
  1630. {
  1631. if (IsGuard)
  1632. {
  1633. log.Debug("------guardCanceled: " + this.Name);
  1634. UnitGuardAction action = new UnitGuardAction();
  1635. action.guard = false;
  1636. action.reason = "sdfsdfsdfs";
  1637. doGuard(action);
  1638. SetAutoBattleB2C evt = new SetAutoBattleB2C();
  1639. evt.isAutoBattle = 0;
  1640. this.queueEvent(evt);
  1641. }
  1642. }
  1643. /// <summary>
  1644. ///
  1645. /// </summary>
  1646. private void updateFollowTeam()
  1647. {
  1648. if (this.CurrentState == this.stateFollow && this.mTeamVirtual != null && this.canFollowTeam && this.leadingMan != null && this.leadingMan.Enable)
  1649. {
  1650. // 当前如果正在拾取状态,先捡完再说
  1651. if(this.CurrentState is StateFollowAndPickItem)
  1652. {
  1653. return;
  1654. }
  1655. if (CMath.includeRoundPoint(X, Y, this.GetFollowDistance(true), leadingMan.X, leadingMan.Y))
  1656. {
  1657. //在范围内
  1658. var leader = this.leadingMan;
  1659. if (leader.AoiStatus != null)
  1660. {
  1661. //队长在位面中
  1662. UnitGuardAction action = new UnitGuardAction();
  1663. action.guard = false;
  1664. action.reason = "sdfsdfsdfs";
  1665. doGuard(action);
  1666. startIdle();
  1667. //updateStateToFollowTeam();
  1668. return;
  1669. }
  1670. var vir = leader.Virtual as XmdsVirtual;
  1671. if (vir.CombatState == BattleStatus.PVE)
  1672. {
  1673. if (IsGuard == false)
  1674. {
  1675. //队长在PVE状态
  1676. UnitGuardAction action = new UnitGuardAction();
  1677. action.guard = true;
  1678. action.reason = CommonAI.XmdsConstConfig.AUTO_GUARD_MODE_POINT;
  1679. doGuard(action);
  1680. }
  1681. }
  1682. else if (vir.CombatState == BattleStatus.PVP)
  1683. {
  1684. //队长在PVP状态
  1685. //检查玩家Pk状态在“自由”,“队伍”攻击模式下,则跟随队长攻击目标,否则无视
  1686. var myVir = this.Virtual as XmdsVirtual;
  1687. if (IsGuard == false/* &&( myVir.GetCurPKMode() == PKInfo.PKMode.Team
  1688. || myVir.GetCurPKMode() == PKInfo.PKMode.All)*/)
  1689. {
  1690. UnitGuardAction action = new UnitGuardAction();
  1691. action.guard = true;
  1692. action.reason = CommonAI.XmdsConstConfig.AUTO_GUARD_MODE_POINT;
  1693. doGuard(action);
  1694. }
  1695. }
  1696. }
  1697. else
  1698. {
  1699. UnitGuardAction action = new UnitGuardAction();
  1700. action.guard = false;
  1701. action.reason = "sdfsdfsdfs";
  1702. doGuard(action);
  1703. updateStateToFollowTeam();
  1704. }
  1705. }
  1706. }
  1707. //检测修正部分异常数据
  1708. private void UpdateAndModifyErrorData()
  1709. {
  1710. if(this.CurrentActionStatus == UnitActionStatus.Move)
  1711. {
  1712. if(this.mNotMoveTimes == 0)
  1713. {
  1714. this.mNotMoveTimes = 1;
  1715. this.mLastMovePos.SetX(this.X);
  1716. this.mLastMovePos.SetY(this.Y);
  1717. }
  1718. else if(this.mLastMovePos.X == this.X && this.mLastMovePos.Y == this.Y)
  1719. {
  1720. this.mNotMoveTimes++;
  1721. }
  1722. else
  1723. {
  1724. this.mNotMoveTimes = 0;
  1725. }
  1726. if(this.mNotMoveTimes > 10)
  1727. {
  1728. this.mNotMoveTimes = 0;
  1729. this.doSomething();
  1730. }
  1731. }
  1732. else
  1733. {
  1734. this.mNotMoveTimes = 0;
  1735. }
  1736. }
  1737. //移动到队长旁
  1738. public void moveToLeader()
  1739. {
  1740. if (!this.mIsReady)
  1741. {
  1742. this.readyAction = moveToLeader;
  1743. return;
  1744. }
  1745. if (this.leadingMan != null)
  1746. {
  1747. if (this.CurrentState != this.stateFollow)
  1748. {
  1749. this.changeState(this.stateFollow);
  1750. var virt = this.Virtual as XmdsVirtual;
  1751. if (!virt.IsMounted && !virt.IsInDebuffStatus() && !CMath.includeRoundPoint(this.X, this.Y, this.Templates.CFG.TEAMER_FOLLOW_DISTANCE_LIMIT, this.leadingMan.X, this.leadingMan.Y))
  1752. {
  1753. PlayerSummonMountEventR2B r2b = new PlayerSummonMountEventR2B();
  1754. r2b.TimeMS = 0;
  1755. r2b.IsSummonMount = true;
  1756. (this.Virtual as XmdsVirtual).ReceiveMsgR2B(r2b);
  1757. }
  1758. }
  1759. //float dx, dy;
  1760. //var distance = this.leadingMan.RadiusSize + (this.BodyBlockSize * (this.FollowIndex + 1)) * 2;
  1761. //CMath.RandomPosInRound(Parent.RandomN, this.leadingMan.X, this.leadingMan.Y,
  1762. // distance, out dx, out dy);
  1763. //if (CMath.includeRoundPoint(
  1764. // this.X, this.Y,
  1765. // distance,
  1766. // dx, dy))
  1767. //{
  1768. // this.changeState(this.stateFollow);
  1769. // return;
  1770. //}
  1771. //this.changeState(new StateIdle(this));
  1772. ////StateFollowTeam stateMove = StateFollowTeam.createStateFollowTeam(this, leadingMan);
  1773. //StateMove stateMove = new StateMove(this, dx, dy);
  1774. //stateMove.EndMoveAction = (m) =>
  1775. //{
  1776. // this.changeState(this.stateFollow);
  1777. // return false;
  1778. //};
  1779. //var virt = this.Virtual as XmdsVirtual;
  1780. //if (!virt.IsMounted && !CMath.includeRoundPoint(this.X, this.Y, this.Templates.CFG.TEAMER_FOLLOW_DISTANCE_LIMIT, this.leadingMan.X, this.leadingMan.Y))
  1781. //{
  1782. // PlayerSummonMountEventR2B r2b = new PlayerSummonMountEventR2B();
  1783. // r2b.TimeMS = 0;
  1784. // r2b.IsSummonMount = true;
  1785. // (this.Virtual as XmdsVirtual).ReceiveMsgR2B(r2b);
  1786. //}
  1787. //this.changeState(stateMove);
  1788. }
  1789. }
  1790. protected override void onAdded(bool pointLv)
  1791. {
  1792. base.onAdded(pointLv);
  1793. //吴永辉:进入PVP地图清除技能CD bugId:2797
  1794. XmdsServerScene scene = this.Parent as XmdsServerScene;
  1795. SceneType sceneType = this.VirtualPlayer.mUnit.GetSceneType();
  1796. if (sceneType == SceneType.DanTiao || sceneType == SceneType.JJC || sceneType == SceneType.CrossServer || sceneType == SceneType.MengZhan
  1797. || sceneType == SceneType.FiveVFive || sceneType == SceneType.SourceDungeon
  1798. || sceneType == SceneType.GuildBoss || sceneType == SceneType.SecretDungeon)
  1799. {
  1800. this.ClearAllSkillCD();
  1801. }
  1802. }
  1803. }
  1804. //队伍跟随
  1805. public class StateFollowLeader : VStateFollowLeader
  1806. {
  1807. private InstanceZoneObject follower;
  1808. public InstanceZoneObject Follower
  1809. {
  1810. get
  1811. {
  1812. return follower;
  1813. }
  1814. set
  1815. {
  1816. follower = value;
  1817. this.target = follower;
  1818. }
  1819. }
  1820. public StateFollowLeader(InstanceUnit unit, InstanceZoneObject target, int holdTime = 0) : base(unit, target, holdTime)
  1821. {
  1822. follower = target;
  1823. }
  1824. protected override void onStart()
  1825. {
  1826. if (follower != null)
  1827. {
  1828. unit.SetActionStatus(UnitActionStatus.Move);
  1829. MoveAI.FindPath(follower);
  1830. }
  1831. }
  1832. protected override void onUpdate()
  1833. {
  1834. base.onUpdate();
  1835. switch (FollowState)
  1836. {
  1837. case MoveState.Move:
  1838. var virt = unit.Virtual as XmdsVirtual;
  1839. if (!virt.IsMounted && !virt.IsInDebuffStatus() && !CMath.includeRoundPoint(unit.X, unit.Y, unit.Templates.CFG.TEAMER_FOLLOW_DISTANCE_LIMIT, follower.X, follower.Y))
  1840. {
  1841. //Console.WriteLine("请求上马");
  1842. PlayerSummonMountEventR2B r2b = new PlayerSummonMountEventR2B();
  1843. r2b.TimeMS = 0;
  1844. r2b.IsSummonMount = true;
  1845. (unit.Virtual as XmdsVirtual).ReceiveMsgR2B(r2b);
  1846. }
  1847. break;
  1848. }
  1849. }
  1850. protected override void onUpdateFollowed(IPositionObject target)
  1851. {
  1852. unit.doSomething();
  1853. }
  1854. protected override void onChangedToMove(IPositionObject target)
  1855. {
  1856. var virt = unit.Virtual as XmdsVirtual;
  1857. if (!virt.IsMounted && !virt.IsInDebuffStatus() && !CMath.includeRoundPoint(unit.X, unit.Y, unit.Templates.CFG.TEAMER_FOLLOW_DISTANCE_LIMIT, follower.X, follower.Y))
  1858. {
  1859. PlayerSummonMountEventR2B r2b = new PlayerSummonMountEventR2B();
  1860. r2b.TimeMS = 0;
  1861. r2b.IsSummonMount = true;
  1862. (unit.Virtual as XmdsVirtual).ReceiveMsgR2B(r2b);
  1863. }
  1864. }
  1865. }
  1866. }