SpaceDivision.cs 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. #define JSG_MODIFY_ASTAT_SPACE
  2. using CommonAI.ZoneClient;
  3. using CommonLang;
  4. using System;
  5. using System.Collections;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. namespace CommonAI.RTS
  10. {
  11. /// <summary>
  12. /// 管理空间分割类,十字链表空间管理。
  13. /// </summary>
  14. public class SpaceDivision : IDisposable
  15. {
  16. public float SpaceCellW { get; private set; }
  17. public float SpaceCellH { get; private set; }
  18. public int SpaceXCount { get; private set; }
  19. public int SpaceYCount { get; private set; }
  20. private SpaceCellNode[,] SpaceMatrix;
  21. private bool mNearChanged = true;
  22. internal SpaceDivision(float total_w, float total_h, float cellSizeW, float cellSizeH)
  23. {
  24. this.SpaceCellW = cellSizeW;
  25. this.SpaceCellH = cellSizeH;
  26. this.SpaceXCount = CMath.roundMod(total_w, SpaceCellW);
  27. this.SpaceYCount = CMath.roundMod(total_h, SpaceCellH);
  28. this.SpaceMatrix = new SpaceCellNode[SpaceXCount, SpaceYCount];
  29. for (int ix = 0; ix < SpaceXCount; ++ix)
  30. {
  31. for (int iy = 0; iy < SpaceYCount; ++iy)
  32. {
  33. this.SpaceMatrix[ix, iy] = new SpaceCellNode(ix, iy);
  34. }
  35. }
  36. int[][] near_table = new int[][] {
  37. new int[]{-1,-1},
  38. new int[]{ 0,-1},
  39. new int[]{ 1,-1},
  40. new int[]{-1, 0},
  41. new int[]{ 1, 0},
  42. new int[]{-1, 1},
  43. new int[]{ 0, 1},
  44. new int[]{ 1, 1}
  45. };
  46. for (int ix = 0; ix < SpaceXCount; ++ix)
  47. {
  48. for (int iy = 0; iy < SpaceYCount; ++iy)
  49. {
  50. SpaceCellNode node = SpaceMatrix[ix, iy];
  51. for (int ni = 0; ni < near_table.Length; ni++)
  52. {
  53. SpaceCellNode near = GetSpaceCell(
  54. ix + near_table[ni][0],
  55. iy + near_table[ni][1]);
  56. if (near != null && near != node)
  57. {
  58. node.nears.Add(near);
  59. }
  60. }
  61. }
  62. }
  63. }
  64. public void Dispose()
  65. {
  66. for (int ix = 0; ix < SpaceXCount; ++ix)
  67. {
  68. for (int iy = 0; iy < SpaceYCount; ++iy)
  69. {
  70. SpaceCellNode node = SpaceMatrix[ix, iy];
  71. node.Dispose();
  72. }
  73. }
  74. }
  75. /// <summary>
  76. /// 实际坐标转换为分割块坐标
  77. /// </summary>
  78. /// <param name="x"></param>
  79. /// <param name="y"></param>
  80. /// <param name="cx"></param>
  81. /// <param name="cy"></param>
  82. public void ToSpaceBlock(float x, float y, out int cx, out int cy)
  83. {
  84. cx = (int)(x / SpaceCellW);
  85. cy = (int)(y / SpaceCellH);
  86. }
  87. private void ToSpaceBlock(float x, float y, float r, out int cx1, out int cy1, out int cx2, out int cy2)
  88. {
  89. cx1 = (int)((x - r) / this.SpaceCellW);
  90. cy1 = (int)((y - r) / this.SpaceCellH);
  91. cx2 = (int)((x + r) / this.SpaceCellW);
  92. cy2 = (int)((y + r) / this.SpaceCellH);
  93. cx1 = Math.Max(cx1, 0);
  94. cy1 = Math.Max(cy1, 0);
  95. cx2 = Math.Min(cx2, this.SpaceXCount - 1);
  96. cy2 = Math.Min(cy2, this.SpaceYCount - 1);
  97. }
  98. private void ToSpaceBlock(float x1, float y1, float x2, float y2, out int cx1, out int cy1, out int cx2, out int cy2)
  99. {
  100. if (x2 < x1) CUtils.Swap<float>(ref x2, ref x1);
  101. if (y2 < y1) CUtils.Swap<float>(ref y2, ref y1);
  102. cx1 = (int)(x1 / this.SpaceCellW);
  103. cy1 = (int)(y1 / this.SpaceCellH);
  104. cx2 = (int)(x2 / this.SpaceCellW);
  105. cy2 = (int)(y2 / this.SpaceCellH);
  106. cx1 = Math.Max(cx1, 0);
  107. cy1 = Math.Max(cy1, 0);
  108. cx2 = Math.Min(cx2, this.SpaceXCount - 1);
  109. cy2 = Math.Min(cy2, this.SpaceYCount - 1);
  110. }
  111. public SpaceCellNode GetSpaceCell(int cx, int cy)
  112. {
  113. if (cx < SpaceXCount && cx >= 0 && cy < SpaceYCount && cy >= 0)
  114. {
  115. return SpaceMatrix[cx, cy];
  116. }
  117. return null;
  118. }
  119. /// <summary>
  120. /// 按格取分割块
  121. /// </summary>
  122. /// <param name="cx"></param>
  123. /// <param name="cy"></param>
  124. /// <returns></returns>
  125. public SpaceCellNode GetSpaceCellNodeByBlock(int cx, int cy)
  126. {
  127. if (cx < SpaceXCount && cx >= 0 && cy < SpaceYCount && cy >= 0)
  128. {
  129. return SpaceMatrix[cx, cy];
  130. }
  131. return null;
  132. }
  133. /// <summary>
  134. /// 按坐标取分割块
  135. /// </summary>
  136. /// <param name="x"></param>
  137. /// <param name="y"></param>
  138. /// <returns></returns>
  139. public SpaceCellNode GetSpaceCellNode(float x, float y)
  140. {
  141. int cx = (int)(x / SpaceCellW);
  142. int cy = (int)(y / SpaceCellH);
  143. if (cx < SpaceXCount && cx >= 0 && cy < SpaceYCount && cy >= 0)
  144. {
  145. return SpaceMatrix[cx, cy];
  146. }
  147. return null;
  148. }
  149. public List<SpaceCellNode> ListSpaceCellNodes()
  150. {
  151. List<SpaceCellNode> ret = new List<SpaceCellNode>(SpaceXCount * SpaceYCount);
  152. for (int ix = 0; ix < SpaceXCount; ++ix)
  153. {
  154. for (int iy = 0; iy < SpaceYCount; ++iy)
  155. {
  156. ret.Add(GetSpaceCellNodeByBlock(ix, iy));
  157. }
  158. }
  159. return ret;
  160. }
  161. #region _ObjectPositionChanged_
  162. public void NearChange()
  163. {
  164. mNearChanged = true;
  165. }
  166. // 更新场景内的分割区域变化信息
  167. public void ClearSpaceNearChanges()
  168. {
  169. this.mNearChanged = false;
  170. for (int ix = 0; ix < SpaceXCount; ++ix)
  171. {
  172. for (int iy = 0; iy < SpaceYCount; ++iy)
  173. {
  174. SpaceCellNode node = SpaceMatrix[ix, iy];
  175. node.ClearNearChange();
  176. }
  177. }
  178. }
  179. /// <summary>
  180. /// 刷新空间分割位置为有改变
  181. /// </summary>
  182. /// <param name="old_cell"></param>
  183. public void NearChange(ObjectCellNode old_cell)
  184. {
  185. if (old_cell.cell != null)
  186. {
  187. old_cell.cell.NearChange();
  188. }
  189. this.NearChange();
  190. }
  191. /// <summary>
  192. /// 清除空间位置
  193. /// </summary>
  194. /// <param name="old_cell"></param>
  195. public void ClearSpace(ObjectCellNode old_cell)
  196. {
  197. if (old_cell.cell != null)
  198. {
  199. old_cell.cell.Remove(old_cell, true);
  200. }
  201. this.NearChange();
  202. }
  203. /// <summary>
  204. /// 切换单位空间位置
  205. /// </summary>
  206. public bool SwapSpace(ObjectCellNode obj, float x, float y, bool nearchange)
  207. {
  208. if (nearchange) mNearChanged = true;
  209. SpaceCellNode old_cell = obj.cell;
  210. SpaceCellNode new_cell = GetSpaceCellNode(x, y);
  211. if (old_cell != new_cell)
  212. {
  213. if (old_cell != null)
  214. {
  215. old_cell.Remove(obj, nearchange);
  216. }
  217. if (new_cell != null)
  218. {
  219. new_cell.Add(obj, nearchange);
  220. }
  221. return true;
  222. }
  223. return false;
  224. }
  225. public bool IsNearChanged()
  226. {
  227. return mNearChanged;
  228. }
  229. /// <summary>
  230. /// 判断是否附近有位置变化
  231. /// </summary>
  232. /// <param name="x"></param>
  233. /// <param name="y"></param>
  234. /// <returns></returns>
  235. public bool IsNearChanged(float x, float y)
  236. {
  237. if (this.mNearChanged)
  238. {
  239. SpaceCellNode node = this.GetSpaceCellNode(x, y);
  240. if (node != null)
  241. {
  242. if (node.IsNearChanged)
  243. {
  244. return true;
  245. }
  246. for (int i = node.nears.Count - 1; i >= 0; --i)
  247. {
  248. if (node.nears[i].IsNearChanged)
  249. {
  250. return true;
  251. }
  252. }
  253. }
  254. }
  255. return false;
  256. }
  257. public bool IsNearChanged(float x, float y, float r)
  258. {
  259. if (this.mNearChanged)
  260. {
  261. if (r < this.SpaceCellW && r < this.SpaceCellH)
  262. {
  263. SpaceCellNode node = this.GetSpaceCellNode(x, y);
  264. if (node != null)
  265. {
  266. if (node.IsNearChanged) return true;
  267. for (int i = node.nears.Count - 1; i >= 0; --i)
  268. {
  269. if (node.nears[i].IsNearChanged) return true;
  270. }
  271. }
  272. }
  273. else
  274. {
  275. #if JSG_MODIFY_ASTAT_SPACE
  276. int cx1, cy1, cx2, cy2;
  277. this.ToSpaceBlock(x - r, y - r, x + r, y + r, out cx1, out cy1, out cx2, out cy2);
  278. #else
  279. int cx1 = (int)((x - r) / this.SpaceCellW) - 1;
  280. int cy1 = (int)((y - r) / this.SpaceCellH) - 1;
  281. int cx2 = (int)((x + r) / this.SpaceCellW) + 1;
  282. int cy2 = (int)((y + r) / this.SpaceCellH) + 1;
  283. cx1 = Math.Max(cx1, 0);
  284. cy1 = Math.Max(cy1, 0);
  285. cx2 = Math.Min(cx2, this.SpaceXCount - 1);
  286. cy2 = Math.Min(cy2, this.SpaceYCount - 1);
  287. #endif
  288. for (int cx = cx1; cx <= cx2; ++cx)
  289. {
  290. for (int cy = cy1; cy <= cy2; ++cy)
  291. {
  292. SpaceCellNode cn = this.SpaceMatrix[cx, cy];
  293. if (cn.IsNearChanged) return true;
  294. }
  295. }
  296. }
  297. }
  298. return false;
  299. }
  300. public bool IsNearChanged(float x1, float y1, float x2, float y2)
  301. {
  302. if (this.mNearChanged)
  303. {
  304. if (x2 < x1) CUtils.Swap<float>(ref x2, ref x1);
  305. if (y2 < y1) CUtils.Swap<float>(ref y2, ref y1);
  306. #if JSG_MODIFY_ASTAT_SPACE
  307. int cx1, cy1, cx2, cy2;
  308. this.ToSpaceBlock(x1, y1, x2, y2, out cx1, out cy1, out cx2, out cy2);
  309. #else
  310. int cx1 = (int)(x1 / this.SpaceCellW) - 1;
  311. int cy1 = (int)(y1 / this.SpaceCellH) - 1;
  312. int cx2 = (int)(x2 / this.SpaceCellW) + 1;
  313. int cy2 = (int)(y2 / this.SpaceCellH) + 1;
  314. cx1 = Math.Max(cx1, 0);
  315. cy1 = Math.Max(cy1, 0);
  316. cx2 = Math.Min(cx2, this.SpaceXCount - 1);
  317. cy2 = Math.Min(cy2, this.SpaceYCount - 1);
  318. #endif
  319. for (int cx = cx1; cx <= cx2; ++cx)
  320. {
  321. for (int cy = cy1; cy <= cy2; ++cy)
  322. {
  323. SpaceCellNode cn = this.SpaceMatrix[cx, cy];
  324. if (cn.IsNearChanged) return true;
  325. }
  326. }
  327. }
  328. return false;
  329. }
  330. #endregion
  331. //----------------------------------------------------------------------------------------------------------------------------
  332. /// <summary>
  333. /// 获取当前坐标附近的所有单位容量
  334. /// </summary>
  335. /// <param name="x"></param>
  336. /// <param name="y"></param>
  337. /// <returns></returns>
  338. public int GetNearObjectsCapacity(float x, float y)
  339. {
  340. int ret = 0;
  341. SpaceCellNode node = this.GetSpaceCellNode(x, y);
  342. if (node != null)
  343. {
  344. ret += node.Count;
  345. for (int i = node.nears.Count - 1; i >= 0; --i)
  346. {
  347. ret += node.nears[i].Count;
  348. }
  349. }
  350. return Math.Max(ret, 10);
  351. }
  352. /// <summary>
  353. /// 遍历单位
  354. /// </summary>
  355. /// <param name="obj"></param>
  356. /// <param name="cancel">设置为True,立即停止遍历</param>
  357. public delegate void ObjectForEachAction<T>(T obj, ref bool cancel) where T : class;
  358. /// <summary>
  359. /// 获取当前坐标附近的所有单位
  360. /// </summary>
  361. /// <param name="x"></param>
  362. /// <param name="y"></param>
  363. /// <param name="indexer"></param>
  364. /// <returns>is cancel</returns>
  365. public bool ForEachNearObjects<T>(float x, float y, ObjectForEachAction<T> indexer) where T : class
  366. {
  367. SpaceDivision.SpaceCellNode node = GetSpaceCellNode(x, y);
  368. if (node != null)
  369. {
  370. if (node.ForEach<T>(indexer))
  371. {
  372. return true;
  373. }
  374. for (int i = node.nears.Count - 1; i >= 0; --i)
  375. {
  376. if (node.nears[i].ForEach<T>(indexer))
  377. {
  378. return true;
  379. }
  380. }
  381. }
  382. return false;
  383. }
  384. public ZoneItem GetNearPickableItem(ZoneActor owner)
  385. {
  386. SpaceDivision.SpaceCellNode node = GetSpaceCellNode(owner.X, owner.Y);
  387. if (node != null)
  388. {
  389. var ret = node.GetNearPickableItem(owner);
  390. if (ret != null)
  391. {
  392. return ret;
  393. }
  394. for (int i = node.nears.Count - 1; i >= 0; --i)
  395. {
  396. ret = node.nears[i].GetNearPickableItem(owner);
  397. if (ret != null)
  398. {
  399. return ret;
  400. }
  401. }
  402. }
  403. return null;
  404. }
  405. public ZoneItem GetNearPopPanelItem(ZoneActor owner)
  406. {
  407. SpaceDivision.SpaceCellNode node = GetSpaceCellNode(owner.X, owner.Y);
  408. if (node != null)
  409. {
  410. var ret = node.GetNearPopPanelItem(owner);
  411. if (ret != null)
  412. {
  413. return ret;
  414. }
  415. for (int i = node.nears.Count - 1; i >= 0; --i)
  416. {
  417. ret = node.nears[i].GetNearPopPanelItem(owner);
  418. if (ret != null)
  419. {
  420. return ret;
  421. }
  422. }
  423. }
  424. return null;
  425. }
  426. /// <summary>
  427. /// 获取当前坐标附近的所有单位
  428. /// </summary>
  429. /// <param name="x"></param>
  430. /// <param name="y"></param>
  431. /// <param name="r"></param>
  432. /// <param name="indexer"></param>
  433. /// <returns>is cancel</returns>
  434. public bool ForEachNearObjects<T>(float x, float y, float r, ObjectForEachAction<T> indexer) where T : class
  435. {
  436. if (r < SpaceCellW && r < SpaceCellH)
  437. {
  438. SpaceDivision.SpaceCellNode node = GetSpaceCellNode(x, y);
  439. if (node != null)
  440. {
  441. if (node.ForEach<T>(indexer))
  442. {
  443. return true;
  444. }
  445. for (int i = node.nears.Count - 1; i >= 0; --i)
  446. {
  447. if (node.nears[i].ForEach<T>(indexer))
  448. {
  449. return true;
  450. }
  451. }
  452. }
  453. }
  454. else
  455. {
  456. #if JSG_MODIFY_ASTAT_SPACE
  457. int cx1, cy1 , cx2 , cy2;
  458. this.ToSpaceBlock(x - r, y - r, x + r, y + r, out cx1, out cy1, out cx2, out cy2);
  459. #else
  460. int cx1 = (int)((x - r) / this.SpaceCellW) - 1;
  461. int cy1 = (int)((y - r) / this.SpaceCellH) - 1;
  462. int cx2 = (int)((x + r) / this.SpaceCellW) + 1;
  463. int cy2 = (int)((y + r) / this.SpaceCellH) + 1;
  464. cx1 = Math.Max(cx1, 0);
  465. cy1 = Math.Max(cy1, 0);
  466. cx2 = Math.Min(cx2, this.SpaceXCount - 1);
  467. cy2 = Math.Min(cy2, this.SpaceYCount - 1);
  468. #endif
  469. for (int cx = cx1; cx <= cx2; ++cx)
  470. {
  471. for (int cy = cy1; cy <= cy2; ++cy)
  472. {
  473. SpaceDivision.SpaceCellNode cn = this.SpaceMatrix[cx, cy];
  474. if (cn.ForEach<T>(indexer))
  475. {
  476. return true;
  477. }
  478. }
  479. }
  480. }
  481. return false;
  482. }
  483. /// <summary>
  484. /// 获取当前坐标附近的所有单位
  485. /// </summary>
  486. /// <param name="x1"></param>
  487. /// <param name="y1"></param>
  488. /// <param name="x2"></param>
  489. /// <param name="y2"></param>
  490. /// <param name="indexer"></param>
  491. /// <returns>is cancel</returns>
  492. public bool ForEachNearObjectsRect<T>(float x1, float y1, float x2, float y2, ObjectForEachAction<T> indexer) where T : class
  493. {
  494. bool cancel = false;
  495. if (x2 < x1) CUtils.Swap<float>(ref x2, ref x1);
  496. if (y2 < y1) CUtils.Swap<float>(ref y2, ref y1);
  497. #if JSG_MODIFY_ASTAT_SPACE
  498. int cx1, cy1, cx2, cy2;
  499. this.ToSpaceBlock(x1, y1, x2, y2, out cx1, out cy1, out cx2, out cy2);
  500. #else
  501. int cx1 = (int)(x1 / this.SpaceCellW) - 1;
  502. int cy1 = (int)(y1 / this.SpaceCellH) - 1;
  503. int cx2 = (int)(x2 / this.SpaceCellW) + 1;
  504. int cy2 = (int)(y2 / this.SpaceCellH) + 1;
  505. cx1 = Math.Max(cx1, 0);
  506. cy1 = Math.Max(cy1, 0);
  507. cx2 = Math.Min(cx2, this.SpaceXCount - 1);
  508. cy2 = Math.Min(cy2, this.SpaceYCount - 1);
  509. #endif
  510. for (int cx = cx1; cx <= cx2; ++cx)
  511. {
  512. for (int cy = cy1; cy <= cy2; ++cy)
  513. {
  514. SpaceDivision.SpaceCellNode cn = this.SpaceMatrix[cx, cy];
  515. if (cn.ForEach<T>(indexer))
  516. {
  517. return true;
  518. }
  519. }
  520. }
  521. return cancel;
  522. }
  523. //------------------------------------------------------------------------------------------------------------------
  524. /// <summary>
  525. /// 单位链表结构节点
  526. /// </summary>
  527. public class ObjectCellNode
  528. {
  529. public object Object { get { return obj; } }
  530. internal readonly object obj;
  531. internal SpaceCellNode cell;
  532. internal ObjectCellNode next;
  533. internal ObjectCellNode prev;
  534. internal bool mPosDirty;
  535. public ObjectCellNode(object obj)
  536. {
  537. this.obj = obj;
  538. }
  539. public void MarkPosDirty(bool dirty)
  540. {
  541. mPosDirty = dirty;
  542. }
  543. public ObjectCellNode Next { get { return next; } }
  544. public ObjectCellNode Prev { get { return prev; } }
  545. public bool PosDirty() { return mPosDirty;}
  546. internal void Remove()
  547. {
  548. if (next != null)
  549. {
  550. next.prev = this.prev;
  551. }
  552. if (prev != null)
  553. {
  554. prev.next = this.next;
  555. }
  556. this.next = null;
  557. this.prev = null;
  558. }
  559. internal void AddNext(ObjectCellNode next)
  560. {
  561. this.next = next;
  562. next.prev = this;
  563. }
  564. /// <summary>
  565. ///
  566. /// </summary>
  567. /// <typeparam name="T"></typeparam>
  568. /// <param name="action"></param>
  569. /// <returns>is canceled</returns>
  570. public bool ForEach<T>(ObjectForEachAction<T> action) where T : class
  571. {
  572. bool cancel = false;
  573. ObjectCellNode current = this;
  574. do
  575. {
  576. if (current.obj is T)
  577. {
  578. action((T)current.obj, ref cancel);
  579. if (cancel) return cancel;
  580. }
  581. current = current.next;
  582. }
  583. while (current != null);
  584. return cancel;
  585. }
  586. public ZoneItem GetNearPickableItem(ZoneActor owner)
  587. {
  588. var zl = owner.Parent;
  589. ZoneItem item = null;
  590. ObjectCellNode current = this;
  591. do
  592. {
  593. item = current.obj as ZoneItem;
  594. if (item != null && item.Info != null && !item.Info.IsPopPanel && zl.IsCanPickItem(owner, item))
  595. {
  596. return item;
  597. }
  598. current = current.next;
  599. }
  600. while (current != null);
  601. return null;
  602. }
  603. public ZoneItem GetNearPopPanelItem(ZoneActor owner)
  604. {
  605. var zl = owner.Parent;
  606. ZoneItem item = null;
  607. ObjectCellNode current = this;
  608. do
  609. {
  610. item = current.obj as ZoneItem;
  611. if (item != null && item.Info != null && item.Info.IsPopPanel)
  612. {
  613. if (zl.IsCanPickItem(owner, item)) return item;
  614. }
  615. current = current.next;
  616. }
  617. while (current != null);
  618. return null;
  619. }
  620. public bool ForEach(ObjectForEachAction<ObjectCellNode> action)
  621. {
  622. bool cancel = false;
  623. ObjectCellNode current = this;
  624. do
  625. {
  626. action(current, ref cancel);
  627. if (cancel) return cancel;
  628. current = current.next;
  629. }
  630. while (current != null);
  631. return cancel;
  632. }
  633. internal struct Iterator : IEnumerator
  634. {
  635. public readonly ObjectCellNode mBegin;
  636. private bool mStart;
  637. private ObjectCellNode index;
  638. public Iterator(ObjectCellNode begin)
  639. {
  640. this.mBegin = begin;
  641. this.mStart = false;
  642. this.index = null;
  643. }
  644. public object Current
  645. {
  646. get
  647. {
  648. if (index != null) return index.obj;
  649. return null;
  650. }
  651. }
  652. public bool MoveNext()
  653. {
  654. if (!mStart)
  655. {
  656. index = mBegin;
  657. mStart = true;
  658. if (index == null)
  659. return false;
  660. return true;
  661. }
  662. index = index.next;
  663. if (index == null)
  664. return false;
  665. return true;
  666. }
  667. public void Reset()
  668. {
  669. this.mStart = false;
  670. }
  671. public void Dispose() { }
  672. }
  673. }
  674. //------------------------------------------------------------------------------------------------------------------
  675. /// <summary>
  676. /// 空间分割节点,十字链表节点
  677. /// </summary>
  678. public class SpaceCellNode
  679. {
  680. internal readonly int six;
  681. internal readonly int siy;
  682. internal readonly List<SpaceCellNode> nears = new List<SpaceCellNode>();
  683. private ObjectCellNode mHead;
  684. private ObjectCellNode mTail;
  685. internal SpaceCellNode(int six, int siy)
  686. {
  687. this.six = six;
  688. this.siy = siy;
  689. }
  690. internal void Dispose()
  691. {
  692. using(var list = ListObjectPool<ObjectCellNode>.AllocAutoRelease())
  693. {
  694. foreach (var o in list)
  695. {
  696. this.Remove(o, false);
  697. }
  698. }
  699. nears.Clear();
  700. }
  701. public void NearChange()
  702. {
  703. IsNearChanged = true;
  704. }
  705. public void ClearNearChange()
  706. {
  707. IsNearChanged = false;
  708. }
  709. public void Add(ObjectCellNode cell, bool nearchange)
  710. {
  711. if (cell.Next != null || cell.Prev != null)
  712. {
  713. throw new Exception("obj.mCurCellNode.Next != null || obj.mCurCellNode.Prev != null");
  714. }
  715. if (nearchange) IsNearChanged = true;
  716. if (Count == 0)
  717. {
  718. mHead = mTail = cell;
  719. }
  720. else
  721. {
  722. mTail.AddNext(cell);
  723. mTail = cell;
  724. }
  725. cell.cell = this;
  726. Count++;
  727. if (mOnObjectAdded != null)
  728. {
  729. mOnObjectAdded.Invoke(this, cell.obj);
  730. }
  731. }
  732. public void Remove(ObjectCellNode cell, bool nearchange)
  733. {
  734. if (nearchange) IsNearChanged = true;
  735. Count--;
  736. if (Count == 0)
  737. {
  738. mHead = mTail = null;
  739. }
  740. else if (mHead == cell)
  741. {
  742. mHead = mHead.Next;
  743. }
  744. else if (mTail == cell)
  745. {
  746. mTail = mTail.Prev;
  747. }
  748. cell.Remove();
  749. cell.cell = null;
  750. if (mOnObjectRemoved != null)
  751. {
  752. mOnObjectRemoved.Invoke(this, cell.obj);
  753. }
  754. }
  755. public int BX { get { return six; } }
  756. public int BY { get { return siy; } }
  757. public bool IsNearChanged { get; private set; }
  758. public int Count { get; private set; }
  759. [Obsolete]
  760. public List<T> AsChildList<T>() where T : class
  761. {
  762. List<T> ret = new List<T>(this.Count);
  763. this.ForEach<T>((T o, ref bool c) =>
  764. {
  765. ret.Add(o);
  766. });
  767. return ret;
  768. }
  769. public void AsChildList<T>(List<T> ret) where T : class
  770. {
  771. this.ForEach<T>((T o, ref bool c) =>
  772. {
  773. ret.Add(o);
  774. });
  775. }
  776. public void AsNodeList(List<ObjectCellNode> ret)
  777. {
  778. if (mHead != null)
  779. {
  780. mHead.ForEach<ObjectCellNode>((ObjectCellNode o, ref bool cancel)=>
  781. {
  782. ret.Add(o);
  783. });
  784. }
  785. }
  786. /// <summary>
  787. ///
  788. /// </summary>
  789. /// <typeparam name="T"></typeparam>
  790. /// <param name="action"></param>
  791. /// <returns>is canceled</returns>
  792. public bool ForEach<T>(ObjectForEachAction<T> action) where T : class
  793. {
  794. if (mHead != null)
  795. {
  796. return mHead.ForEach<T>(action);
  797. }
  798. return false;
  799. }
  800. public ZoneItem GetNearPickableItem(ZoneActor owner)
  801. {
  802. if (mHead != null)
  803. {
  804. return mHead.GetNearPickableItem(owner);
  805. }
  806. return null;
  807. }
  808. public ZoneItem GetNearPopPanelItem(ZoneActor owner)
  809. {
  810. if (mHead != null)
  811. {
  812. return mHead.GetNearPopPanelItem(owner);
  813. }
  814. return null;
  815. }
  816. public delegate void OnObjectAddedHandler(SpaceCellNode node, object obj);
  817. public delegate void OnObjectRemovedHandler(SpaceCellNode node, object obj);
  818. private OnObjectAddedHandler mOnObjectAdded;
  819. private OnObjectRemovedHandler mOnObjectRemoved;
  820. public event OnObjectAddedHandler OnObjectAdded { add { mOnObjectAdded += value; } remove { mOnObjectAdded -= value; } }
  821. public event OnObjectRemovedHandler OnObjectRemoved { add { mOnObjectRemoved += value; } remove { mOnObjectRemoved -= value; } }
  822. }
  823. }
  824. }