XmdsInstancePlayer.cs 67 KB

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