PathFinder.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. using CommonLang;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace CommonAI.RTS
  6. {
  7. public interface ITerrain<T> : IDisposable where T : MapNode
  8. {
  9. void ForEachNodes(Action<T> action);
  10. int TotalNodeCount { get; }
  11. }
  12. public abstract class MapNode : IDisposable
  13. {
  14. internal TempMapNode tempNode;
  15. /// <summary>
  16. /// 临近节点
  17. /// </summary>
  18. public abstract MapNode[] Nexts { get; }
  19. /// <summary>
  20. /// 测试通过
  21. /// </summary>
  22. /// <param name="other"></param>
  23. /// <returns></returns>
  24. public abstract bool TestCross(MapNode other);
  25. /// <summary>
  26. /// g(n) 是在状态空间中从初始节点到n节点的实际代价。值越大,优先级越低。
  27. /// </summary>
  28. /// <param name="target"></param>
  29. /// <returns></returns>
  30. public abstract float GetG(MapNode target);
  31. /// <summary>
  32. /// h(n) 是从n到目标节点最佳路径的估计代价。值越大,优先级越低。
  33. /// </summary>
  34. /// <param name="father"></param>
  35. /// <returns></returns>
  36. public abstract float GetH(MapNode father);
  37. /// <summary>
  38. /// 销毁节点
  39. /// </summary>
  40. public abstract void Dispose();
  41. }
  42. //-----------------------------------------------------------------------------------------------------------------
  43. public abstract class WayPoint : IDisposable
  44. {
  45. public object Tag { get; set; }
  46. public MapNode node { get; private set; }
  47. public WayPoint next { get; private set; }
  48. public WayPoint prev { get; private set; }
  49. public WayPoint tail
  50. {
  51. get
  52. {
  53. WayPoint wp = this;
  54. while (wp.next != null) { wp = wp.next; }
  55. return wp;
  56. }
  57. }
  58. /// <summary>
  59. /// 从当前节点开始算总长
  60. /// </summary>
  61. public int count
  62. {
  63. get
  64. {
  65. int ret = 0;
  66. WayPoint wp = this;
  67. while (wp != null) { ret++; wp = wp.next; }
  68. return ret;
  69. }
  70. }
  71. public WayPoint(MapNode map_node)
  72. {
  73. this.node = map_node;
  74. }
  75. public virtual void Dispose()
  76. {
  77. this.node = null;
  78. this.next = null;
  79. this.prev = null;
  80. }
  81. public abstract WayPoint Clone();
  82. public void LinkNext(WayPoint n)
  83. {
  84. if (this.next != null)
  85. {
  86. this.next.prev = null;
  87. }
  88. this.next = n;
  89. if (n != null)
  90. {
  91. n.prev = this;
  92. }
  93. }
  94. }
  95. //-----------------------------------------------------------------------------------------------------------------
  96. /// <summary>
  97. /// 抽象的A*寻路算法,子类可以自定义实现如何寻路。
  98. /// @author WAZA
  99. /// </summary>
  100. public abstract class RTSAstar<T> : Disposable where T : MapNode
  101. {
  102. private ITerrain<T> terrain;
  103. private TempMapNodeList.OpenList src_open_list;
  104. private TempMapNodeList.CloseList src_close_list;
  105. public int TotalNodeCount { get { return terrain.TotalNodeCount; } }
  106. public void Init(ITerrain<T> map)
  107. {
  108. this.terrain = map;
  109. this.src_open_list = new TempMapNodeList.OpenList();
  110. this.src_close_list = new TempMapNodeList.CloseList();
  111. terrain.ForEachNodes((node) =>
  112. {
  113. var temp = new TempMapNode(node);
  114. node.tempNode = temp;
  115. });
  116. }
  117. protected override void Disposing()
  118. {
  119. terrain.ForEachNodes((node) =>
  120. {
  121. node.tempNode.Dispose();
  122. });
  123. terrain.Dispose();
  124. terrain = null;
  125. src_open_list = null;
  126. src_close_list = null;
  127. }
  128. public abstract WayPoint GenWayPoint(MapNode node);
  129. public WayPoint findPath(MapNode src_node, MapNode dst_node)
  130. {
  131. return findPath(src_node.tempNode, dst_node.tempNode);
  132. }
  133. protected WayPoint findPath(TempMapNode src_node, TempMapNode dst_node)
  134. {
  135. WayPoint head = GenWayPoint(src_node.data);
  136. if (src_node.data.Equals(dst_node.data))
  137. {
  138. return head;
  139. }
  140. src_open_list.clear();
  141. src_close_list.clear();
  142. src_node.setFather(src_node, dst_node);
  143. src_open_list.add(src_node);
  144. do
  145. {
  146. // search min F
  147. TempMapNode cur_node = src_open_list.getMinF();
  148. // put the min F to closed
  149. src_open_list.remove(cur_node);
  150. src_close_list.add(cur_node);
  151. // find next node
  152. for (int i = cur_node.data.Nexts.Length - 1; i >= 0; --i)
  153. {
  154. TempMapNode near = cur_node.data.Nexts[i].tempNode;
  155. if (!near.data.TestCross(cur_node.data))
  156. {
  157. continue;
  158. }
  159. // ignore what if the block can not across or already in close table
  160. if (src_close_list.contains(near))
  161. {
  162. continue;
  163. }
  164. // push and if is not in open table
  165. if (!src_open_list.contains(near))
  166. {
  167. near.setFather(cur_node, dst_node);
  168. src_open_list.add(near);
  169. }
  170. }
  171. // stop when :
  172. // 1. dst node already in close list
  173. if (cur_node.data.Equals(dst_node.data))
  174. {
  175. // finded the path
  176. WayPoint end = null;//GenWayPoint(dst_node.data);
  177. for (int i = terrain.TotalNodeCount - 1; i >= 0; i--)
  178. {
  179. // linked to head
  180. if (cur_node.data.Equals(src_node.data) || (cur_node.s_father == cur_node))
  181. {
  182. head.LinkNext(end);
  183. break;
  184. }
  185. else
  186. {
  187. WayPoint next = GenWayPoint(cur_node.data);
  188. next.LinkNext(end);
  189. end = next;
  190. }
  191. cur_node = cur_node.s_father;
  192. }
  193. break;
  194. }
  195. // 2. open list is empty
  196. if (src_open_list.isEmpty())
  197. {
  198. // not find the path
  199. break;
  200. }
  201. } while (true);
  202. return head;
  203. }
  204. }
  205. //---------------------------------------------------------------------------------------------------------
  206. public class TempMapNode : IDisposable
  207. {
  208. /**对应的地图数据*/
  209. public MapNode data { get; private set; }
  210. /**每次寻路时,暂存的上一个节点*/
  211. internal TempMapNode s_father = null;
  212. // 当前所在的列表 //
  213. internal TempMapNodeList m_curList = null;
  214. internal TempMapNode m_prev = null;
  215. internal TempMapNode m_next = null;
  216. private float s_g = 0;
  217. private float s_h = 0;
  218. private float s_f = 0;
  219. internal float F { get { return s_f; } }
  220. internal TempMapNode(MapNode data)
  221. {
  222. this.data = data;
  223. }
  224. /// <summary>
  225. /// F = G + H
  226. /// 这里:
  227. /// </summary>
  228. /// <param name="father"></param>
  229. /// <param name="target"></param>
  230. internal void setFather(TempMapNode father, TempMapNode target)
  231. {
  232. this.s_father = father;
  233. this.s_g = father.s_g + data.GetG(target.data);
  234. this.s_h = data.GetH(father.data);
  235. this.s_f = (s_g + s_h);
  236. }
  237. public void Dispose()
  238. {
  239. data = null;
  240. s_father = null;
  241. m_curList = null;
  242. m_prev = null;
  243. m_next = null;
  244. }
  245. }
  246. //---------------------------------------------------------------------------------------------------------
  247. internal abstract class TempMapNodeList
  248. {
  249. private TempMapNode head = null;
  250. private TempMapNode last = null;
  251. internal class OpenList : TempMapNodeList
  252. {
  253. }
  254. //--------------------------------------------------------------------------
  255. internal class CloseList : TempMapNodeList
  256. {
  257. }
  258. //--------------------------------------------------------------------------
  259. internal TempMapNodeList()
  260. {
  261. }
  262. internal bool isEmpty()
  263. {
  264. return head == null;
  265. }
  266. internal bool contains(TempMapNode node)
  267. {
  268. return node.m_curList == this;
  269. }
  270. internal virtual TempMapNode getMinF()
  271. {
  272. float min = float.MaxValue;
  273. TempMapNode ret = null;
  274. for (TempMapNode a = head; a != null; a = a.m_next)
  275. {
  276. //float v = a.F;
  277. if (min > a.F)
  278. {
  279. ret = a;
  280. min = a.F;
  281. }
  282. }
  283. return ret;
  284. }
  285. internal virtual void add(TempMapNode node)
  286. {
  287. if (node.m_curList == null)
  288. {
  289. if (last == null)
  290. {
  291. head = last = node;
  292. }
  293. else
  294. {
  295. last.m_next = node;
  296. node.m_prev = last;
  297. last = node;
  298. }
  299. node.m_curList = this;
  300. }
  301. else
  302. {
  303. throw new Exception("Node is already in a List !");
  304. }
  305. }
  306. internal virtual void remove(TempMapNode node)
  307. {
  308. if (node.m_curList == this)
  309. {
  310. if (head == node)
  311. {
  312. head = node.m_next;
  313. }
  314. if (last == node)
  315. {
  316. last = node.m_prev;
  317. }
  318. if (node.m_next != null)
  319. {
  320. node.m_next.m_prev = node.m_prev;
  321. }
  322. if (node.m_prev != null)
  323. {
  324. node.m_prev.m_next = node.m_next;
  325. }
  326. node.m_next = null;
  327. node.m_prev = null;
  328. node.m_curList = null;
  329. }
  330. else
  331. {
  332. throw new Exception("Node is not contains in this list !");
  333. }
  334. }
  335. internal virtual void clear()
  336. {
  337. if (head != null)
  338. {
  339. for (TempMapNode i = head; i != null; i = i.m_next)
  340. {
  341. i.m_curList = null;
  342. }
  343. TempMapNode p = head;
  344. TempMapNode q = null;
  345. do
  346. {
  347. q = p.m_next;
  348. p.m_next = null;
  349. p = q;
  350. }
  351. while (p != null);
  352. p = last;
  353. do
  354. {
  355. q = p.m_prev;
  356. p.m_prev = null;
  357. p = q;
  358. }
  359. while (p != null);
  360. this.head = null;
  361. this.last = null;
  362. }
  363. }
  364. }
  365. //---------------------------------------------------------------------------------------------------------
  366. }