ZoneLayer.Terrain.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CommonAI.Zone;
  5. using CommonLang;
  6. using CommonLang.Protocol;
  7. using CommonAI.RTS;
  8. using CommonLang.Vector;
  9. using CommonLang.Log;
  10. using CommonAI.Zone.ZoneEditor;
  11. using CommonAI.Zone.Helper;
  12. using CommonAI.RTS.Manhattan;
  13. namespace CommonAI.ZoneClient
  14. {
  15. partial class ZoneLayer
  16. {
  17. //-------------------------------------------------------------------------------------------
  18. /// <summary>
  19. /// 和地图做碰撞检测,是否阻挡
  20. /// </summary>
  21. /// <param name="u"></param>
  22. /// <returns></returns>
  23. public bool TouchMap(ZoneUnit u)
  24. {
  25. return TryTouchMap(u, u.X, u.Y);
  26. }
  27. /// <summary>
  28. /// 目标点是否阻挡
  29. /// </summary>
  30. /// <param name="x"></param>
  31. /// <param name="y"></param>
  32. /// <returns></returns>
  33. public bool TouchMap(float x, float y)
  34. {
  35. return path_finder.TouchMapBlock((((int)x) / Terrain.GridCellW), (((int)y) / Terrain.GridCellH));
  36. }
  37. /// <summary>
  38. /// 尝试用新的坐标和地图碰撞检测
  39. /// </summary>
  40. /// <param name="u"></param>
  41. /// <param name="x"></param>
  42. /// <param name="y"></param>
  43. /// <returns></returns>
  44. public virtual bool TryTouchMap(ZoneUnit u, float x, float y)
  45. {
  46. int bx = (((int)x) / Terrain.GridCellW);
  47. int by = (((int)y) / Terrain.GridCellH);
  48. if (path_finder.TouchMapBlock(bx, by))
  49. {
  50. return true;
  51. }
  52. if (this.IsIgnoreTerrainTouch)
  53. {
  54. foreach (var flag in mFlags.Values)
  55. {
  56. if (flag is ZoneEditorDecoration)
  57. {
  58. var deco = flag as ZoneEditorDecoration;
  59. if (deco.TouchBlock(x, y))
  60. {
  61. return true;
  62. }
  63. }
  64. }
  65. }
  66. return false;
  67. }
  68. /**
  69. * 以目标点为中心,circle为半径,找可行走区域。找到了返回true;找不到返回false;
  70. * sx, sy 起始位置
  71. * dstx, dsty 目标位置
  72. * circle 搜寻半径
  73. * outx, outy修改后的目标点
  74. */
  75. public bool GetNearWay(float sx, float sy, float dstx, float dsty, float circle, ref float outx, ref float outy)
  76. {
  77. //以目标点为中心,一圈一圈向外查找可行走的块
  78. //起始点与终点连线方向上的点优先
  79. int W = Terrain.GridCellW;
  80. int H = Terrain.GridCellH;
  81. float squCircle = circle * circle;
  82. int dr = ((int)circle) / W;
  83. float vx = sx > dstx ? 1 : -1;
  84. float vy = sy > dsty ? 1 : -1;
  85. bool f = true;
  86. for (int r = 1; r <= dr; r++)
  87. {
  88. for (int v = 1; v <= 4; v++)
  89. {
  90. float xx = dstx + W * r * vx;
  91. float yy = dsty + H * r * vy;
  92. for (int dx = f ? 0 : 1; f ? dx <= r : dx < r; dx++)
  93. {
  94. float x = dstx + dx * W * vx;
  95. if (MathVector.getDistanceSquare(x, yy, dstx, dsty) < squCircle)
  96. {
  97. if (!path_finder.TouchMapBlock(((int)x) / W, ((int)yy) / H))
  98. {
  99. outx = x;
  100. outy = yy;
  101. return true;
  102. }
  103. }
  104. }
  105. for (int dy = f ? 1 : 0; f ? dy < r : dy <= r; dy++)
  106. {
  107. float y = dsty + dy * H * vy;
  108. if (MathVector.getDistanceSquare(xx, y, dstx, dsty) < squCircle)
  109. {
  110. if (!path_finder.TouchMapBlock(((int)xx) / W, ((int)y) / H))
  111. {
  112. outx = xx;
  113. outy = y;
  114. return true;
  115. }
  116. }
  117. }
  118. if (f) vy *= -1;
  119. else vx *= -1;
  120. f = !f;
  121. }
  122. }
  123. outx = -1;
  124. outy = -1;
  125. return false;
  126. }
  127. /// <summary>
  128. /// 2个单位是否碰撞
  129. /// </summary>
  130. /// <param name="s"></param>
  131. /// <param name="d"></param>
  132. /// <returns></returns>
  133. public virtual bool TouchObject2(ZoneObject s, ZoneObject d)
  134. {
  135. if (s == d) return false;
  136. float w = s.X - d.X;
  137. float h = s.Y - d.Y;
  138. float r = s.RadiusSize + d.RadiusSize;
  139. if (w * w + h * h <= r * r)
  140. {
  141. return true;
  142. }
  143. return false;
  144. }
  145. /// <summary>
  146. /// 尝试用新的坐标碰撞检测
  147. /// </summary>
  148. /// <param name="s"></param>
  149. /// <param name="sx"></param>
  150. /// <param name="sy"></param>
  151. /// <param name="d"></param>
  152. /// <returns></returns>
  153. public virtual bool TryTouchObject2(ZoneObject s, float sx, float sy, ZoneObject d)
  154. {
  155. if (s == d) return false;
  156. float w = sx - d.X;
  157. float h = sy - d.Y;
  158. float r = s.RadiusSize + d.RadiusSize;
  159. if (w * w + h * h <= r * r)
  160. {
  161. return true;
  162. }
  163. return false;
  164. }
  165. /// <summary>
  166. /// 获得和当前单位碰撞的单位
  167. /// </summary>
  168. /// <param name="src"></param>
  169. /// <returns></returns>
  170. public ZoneUnit TouchUnit(ZoneUnit src)
  171. {
  172. ZoneUnit ret = null;
  173. ForEachNearObjects(src.X, src.Y, src.BodySize, (ZoneObject o, ref bool cancel) =>
  174. {
  175. if ((o != src) && (o is ZoneUnit))
  176. {
  177. ZoneUnit u = o as ZoneUnit;
  178. if ((u.TouchObj) && TouchObject2(src, u))
  179. {
  180. ret = u;
  181. cancel = true;
  182. }
  183. }
  184. });
  185. return ret;
  186. }
  187. /// <summary>
  188. /// 获得和当前单位碰撞的建筑
  189. /// </summary>
  190. /// <param name="src"></param>
  191. /// <returns></returns>
  192. public ZoneUnit TouchBuilding(ZoneUnit src)
  193. {
  194. ZoneUnit ret = null;
  195. ForEachNearObjects(src.X, src.Y, src.BodySize, (ZoneObject o, ref bool cancel) =>
  196. {
  197. if ((o != src) && (o is ZoneUnit))
  198. {
  199. ZoneUnit u = o as ZoneUnit;
  200. if (u.IsStaticBlockable)
  201. {
  202. if (u.TouchObj && TouchObject2(src, u))
  203. {
  204. ret = u;
  205. cancel = true;
  206. }
  207. }
  208. }
  209. });
  210. return ret;
  211. }
  212. public ZoneUnit TryTouchUnit(ZoneUnit src, float x, float y)
  213. {
  214. ZoneUnit ret = null;
  215. ForEachNearObjects(x, y, src.BodySize, (ZoneObject o, ref bool cancel) =>
  216. {
  217. if ((o != src) && (o is ZoneUnit))
  218. {
  219. ZoneUnit u = o as ZoneUnit;
  220. if ((u.TouchObj) && TryTouchObject2(src, x, y, u))
  221. {
  222. ret = u;
  223. cancel = true;
  224. }
  225. }
  226. });
  227. return ret;
  228. }
  229. public ZoneUnit TryTouchBuilding(ZoneUnit src, float x, float y)
  230. {
  231. ZoneUnit ret = null;
  232. ForEachNearObjects(x, y, src.BodySize, (ZoneObject o, ref bool cancel) =>
  233. {
  234. if ((o != src) && (o is ZoneUnit))
  235. {
  236. ZoneUnit u = o as ZoneUnit;
  237. if (u.IsStaticBlockable)
  238. {
  239. if (u.TouchObj && TryTouchObject2(src, x, y, u))
  240. {
  241. ret = u;
  242. cancel = true;
  243. }
  244. }
  245. }
  246. });
  247. return ret;
  248. }
  249. //-------------------------------------------------------------------------------------------
  250. /// <summary>
  251. /// 获取最近的一个单位
  252. /// </summary>
  253. /// <param name="x"></param>
  254. /// <param name="y"></param>
  255. /// <param name="range"></param>
  256. /// <param name="select"></param>
  257. /// <returns></returns>
  258. public virtual T GetNearUnit<T>(float x, float y, float range, Predicate<T> select) where T : ZoneObject
  259. {
  260. T min = null;
  261. float min_len = float.MaxValue;
  262. float r2 = range * range;
  263. ForEachNearObjects<T>(x, y, range, (T u, ref bool cancel) =>
  264. {
  265. if (select(u))
  266. {
  267. float len = MathVector.getDistanceSquare(u.X, u.Y, x, y);
  268. if (len <= r2 && min_len > len)
  269. {
  270. min_len = len;
  271. min = u;
  272. }
  273. }
  274. });
  275. return min;
  276. }
  277. /// <summary>
  278. /// 获取最近的一个单位
  279. /// </summary>
  280. /// <param name="owner"></param>
  281. /// <param name="range"></param>
  282. /// <param name="expect"></param>
  283. /// <returns></returns>
  284. public virtual ZoneUnit GetNearTarget(ZoneActor owner, float range, SkillTemplate.CastTarget expect = SkillTemplate.CastTarget.Enemy)
  285. {
  286. return GetNearUnit<ZoneUnit>(owner.X, owner.Y, range, (u) => { return IsAttackable(owner, u, expect); });
  287. }
  288. /// <summary>
  289. /// 获取最近可检取单位
  290. /// </summary>
  291. /// <param name="owner"></param>
  292. /// <returns></returns>
  293. public ZoneItem GetNearPickableItem(ZoneActor owner)
  294. {
  295. if (mSpaceDiv != null)
  296. {
  297. return mSpaceDiv.GetNearPickableItem(owner);
  298. }
  299. else if (mObjectes != null)
  300. {
  301. return mObjectes.GetNearPickableItem(owner);
  302. }
  303. else
  304. {
  305. return null;
  306. }
  307. }
  308. public ZoneItem GetNearPopPanelItem(ZoneActor owner)
  309. {
  310. if (mSpaceDiv != null)
  311. {
  312. return mSpaceDiv.GetNearPopPanelItem(owner);
  313. }
  314. else if(mObjectes != null)
  315. {
  316. return mObjectes.GetNearPopPanelItem(owner);
  317. }
  318. else
  319. {
  320. return null;
  321. }
  322. }
  323. /// <summary>
  324. /// 获取掉落单位单位
  325. /// </summary>
  326. /// <param name="owner"></param>
  327. /// <returns></returns>
  328. public ZoneItem GetPickableItem()
  329. {
  330. return mObjectes.GetDropItem();
  331. }
  332. /// <summary>
  333. /// 判断是否可检取
  334. /// </summary>
  335. /// <param name="owner"></param>
  336. /// <param name="item"></param>
  337. /// <param name="no_touch">不碰撞检测</param>
  338. /// <returns></returns>
  339. public virtual bool IsPickableItem(ZoneActor owner, ZoneItem item, bool no_touch = false)
  340. {
  341. if (no_touch || CMath.intersectRound(item.X, item.Y, item.Info.BodySize, owner.X, owner.Y, owner.Info.BodySize))
  342. {
  343. if (item.Info.Pickable && (item.Info.DropForAll || item.Force == owner.Force))
  344. {
  345. return true;
  346. }
  347. }
  348. return false;
  349. }
  350. public virtual bool IsCanPickItem(ZoneActor owner, ZoneItem item)
  351. {
  352. return IsPickableItem(owner, item);
  353. }
  354. //-------------------------------------------------------------------------------------------
  355. [Obsolete]
  356. public virtual List<ZoneUnit> GetSkillAttackableUnits(ZoneUnit src, SkillTemplate skill)
  357. {
  358. List<ZoneUnit> list = new List<ZoneUnit>();
  359. GetSkillAttackableUnits(src, skill, list);
  360. return list;
  361. }
  362. /// <summary>
  363. /// 获取技能可打到的单位
  364. /// </summary>
  365. /// <param name="src"></param>
  366. /// <param name="skill"></param>
  367. /// <param name="list"></param>
  368. public virtual void GetSkillAttackableUnits(ZoneUnit src, SkillTemplate skill, List<ZoneUnit> list)
  369. {
  370. float range = src.GetSkillAttackRange(skill);
  371. ForEachNearObjects<ZoneUnit>(src.X, src.Y, range, (ZoneUnit u, ref bool cancel) =>
  372. {
  373. if (IsAttackable(src, u, skill.ExpectTarget))
  374. {
  375. if (CMath.intersectRound(src.X, src.Y, range, u.X, u.Y, u.Info.BodyHitSize))
  376. {
  377. list.Add(u);
  378. }
  379. }
  380. });
  381. }
  382. //-------------------------------------------------------------------------------------------
  383. #region TERRAIN
  384. private ZoneManhattanMap path_terrain_data;
  385. private AstarManhattan path_finder;
  386. private ManhattanMapAreaGenerator path_terrain_area_gen;
  387. protected virtual void InitTerrain(ClientEnterScene msg, out ZoneManhattanMap terrain_data, out AstarManhattan path_finder, out ManhattanMapAreaGenerator area_gen)
  388. {
  389. if (msg.sender is Zone.Instance.InstanceZone)
  390. {
  391. var zone = msg.sender as Zone.Instance.InstanceZone;
  392. terrain_data = zone.PathFinderTerrain;
  393. path_finder = zone.PathFinder;
  394. area_gen = zone.TerrainAreaGenerator;
  395. this.IsShareTerrain = true;
  396. this.IsIgnoreTerrainTouch = false;
  397. }
  398. else
  399. {
  400. var data = mTerrainDataSrc.Clone() as ZoneInfo;
  401. terrain_data = new ZoneManhattanMap(data, Templates.TerrainDefinition);
  402. path_finder = new AstarManhattan(msg.sceneID, terrain_data, true, msg.spaceDiv);
  403. area_gen = new ManhattanMapAreaGenerator(terrain_data.Data);
  404. this.IsShareTerrain = false;
  405. this.IsIgnoreTerrainTouch = false;
  406. }
  407. //mData.Terrain = null;
  408. }
  409. protected virtual void DisposeTerrain()
  410. {
  411. if (!IsShareTerrain)
  412. {
  413. if (path_finder != null)
  414. {
  415. path_finder.Dispose();
  416. }
  417. if (path_terrain_data != null)
  418. {
  419. path_terrain_data.Dispose();
  420. }
  421. }
  422. this.path_finder = null;
  423. this.path_terrain_data = null;
  424. this.path_terrain_area_gen = null;
  425. }
  426. public AstarManhattan PathFinder
  427. {
  428. get { return path_finder; }
  429. }
  430. public ZoneManhattanMap PathFinderTerrain
  431. {
  432. get { return path_terrain_data; }
  433. }
  434. public ManhattanMapAreaGenerator TerrainAreaGenerator
  435. {
  436. get { return path_terrain_area_gen; }
  437. }
  438. /// <summary>
  439. /// 是否标记为共享寻路数据,表示多个场景共享一个PathFinderTerrain数据;
  440. /// 一般客户端多开或者共享服务端Terrain打开此功能。
  441. /// </summary>
  442. public bool IsShareTerrain
  443. {
  444. get; protected set;
  445. }
  446. /// <summary>
  447. /// 是否忽略本地Decoration碰撞
  448. /// </summary>
  449. public bool IsIgnoreTerrainTouch
  450. {
  451. get; protected set;
  452. }
  453. /// <summary>
  454. /// 寻路
  455. /// </summary>
  456. /// <param name="sx"></param>
  457. /// <param name="sy"></param>
  458. /// <param name="dx"></param>
  459. /// <param name="dy"></param>
  460. /// <returns></returns>
  461. public virtual AstarManhattan.MWayPoint FindPath(float sx, float sy, float dx, float dy)
  462. {
  463. AstarManhattan.MWayPoint wp;
  464. if (path_finder.findPath(sx, sy, dx, dy, out wp, true) == AstarManhattan.FindPathResult.Cross)
  465. {
  466. return wp;
  467. }
  468. return null;
  469. }
  470. public virtual AstarManhattan.FindPathResult FindPathResult(float sx, float sy, float dx, float dy, out AstarManhattan.MWayPoint wp)
  471. {
  472. return path_finder.findPath(sx, sy, dx, dy, out wp, true);
  473. }
  474. /// <summary>
  475. /// 获取位置所在的编辑器Area
  476. /// </summary>
  477. /// <param name="x"></param>
  478. /// <param name="y"></param>
  479. /// <returns></returns>
  480. public ZoneEditorArea GetArea(float x, float y)
  481. {
  482. if (PathFinder == null)
  483. {
  484. return null;
  485. }
  486. var node = PathFinder.GetMapNodeByPos(x, y) as ZoneMapNode;
  487. if (node != null)
  488. {
  489. return node.ClientArea;
  490. }
  491. return null;
  492. }
  493. #endregion
  494. //-------------------------------------------------------------------------------------------------------//
  495. #region SPACE_DIVISION
  496. private SpaceDivision mSpaceDiv;
  497. public int SpaceDivSize { get; private set; }
  498. public int SpaceXCount { get { return (mSpaceDiv != null) ? mSpaceDiv.SpaceXCount : 0; } }
  499. public int SpaceYCount { get { return (mSpaceDiv != null) ? mSpaceDiv.SpaceYCount : 0; } }
  500. internal void SwapSpace(ZoneObject gu)
  501. {
  502. if (mSpaceDiv != null)
  503. {
  504. mSpaceDiv.SwapSpace(gu.mCurrentCellNode, gu.X, gu.Y, false);
  505. }
  506. }
  507. //-------------------------------------------------------------------------------------------------------//
  508. /// <summary>
  509. /// 获取当前坐标附近的所有单位
  510. /// </summary>
  511. /// <param name="x"></param>
  512. /// <param name="y"></param>
  513. /// <param name="indexer"></param>
  514. /// <returns>is cancel</returns>
  515. public bool ForEachNearObjects<T>(float x, float y, SpaceDivision.ObjectForEachAction<T> indexer) where T : ZoneObject
  516. {
  517. if (mSpaceDiv != null)
  518. {
  519. return mSpaceDiv.ForEachNearObjects(x, y, indexer);
  520. }
  521. else
  522. {
  523. var action = new Predicate<ZoneObject>((obj) =>
  524. {
  525. if (obj is T)
  526. {
  527. bool cancel = false;
  528. indexer(obj as T, ref cancel);
  529. return cancel;
  530. }
  531. return false;
  532. });
  533. return mObjectes.ForEachObjects(action);
  534. }
  535. }
  536. /// <summary>
  537. /// 获取当前坐标附近的所有单位
  538. /// </summary>
  539. /// <param name="x"></param>
  540. /// <param name="y"></param>
  541. /// <param name="r"></param>
  542. /// <param name="indexer"></param>
  543. /// <returns>is cancel</returns>
  544. public bool ForEachNearObjects<T>(float x, float y, float r, SpaceDivision.ObjectForEachAction<T> indexer) where T : ZoneObject
  545. {
  546. if (mSpaceDiv != null)
  547. {
  548. return mSpaceDiv.ForEachNearObjects(x, y, r, indexer);
  549. }
  550. else
  551. {
  552. var action = new Predicate<ZoneObject>((obj) =>
  553. {
  554. if (obj is T)
  555. {
  556. bool cancel = false;
  557. indexer(obj as T, ref cancel);
  558. return cancel;
  559. }
  560. return false;
  561. });
  562. return mObjectes.ForEachObjects(action);
  563. }
  564. }
  565. /// <summary>
  566. /// 获取当前坐标附近的所有单位
  567. /// </summary>
  568. /// <param name="x1"></param>
  569. /// <param name="y1"></param>
  570. /// <param name="x2"></param>
  571. /// <param name="y2"></param>
  572. /// <param name="indexer"></param>
  573. /// <returns>is cancel</returns>
  574. public bool ForEachNearObjectsRect<T>(float x1, float y1, float x2, float y2, SpaceDivision.ObjectForEachAction<T> indexer) where T : ZoneObject
  575. {
  576. if (mSpaceDiv != null)
  577. {
  578. return mSpaceDiv.ForEachNearObjectsRect(x1, y1, x2, y2, indexer);
  579. }
  580. else
  581. {
  582. var action = new Predicate<ZoneObject>((obj) =>
  583. {
  584. if (obj is T)
  585. {
  586. bool cancel = false;
  587. indexer(obj as T, ref cancel);
  588. return cancel;
  589. }
  590. return false;
  591. });
  592. return mObjectes.ForEachObjects(action);
  593. }
  594. }
  595. #endregion
  596. }
  597. }