Abstract
AbstractPath-finding is a fundamental problem in computer games, and its efficiency is mainly determined by the number of nodes it will expand. A* algorithm is unsuitable for path-finding on large map under limited computer sources and real-time demand, because the number of nodes it will expand grows fast with the size of the search space. HPA* can greatly improve the efficiency by generating abstract graph of the given map to memorize the map information before doing pathfinding. Through evenly partitioning the map as preprocessing, it can also reduce the influence of terrain factor on the output. As a result, it finds near optimal paths instead of optimal ones. And the evenly partition on the map doesnt consider the terrain distribution, which may still cause resource waste to some extent. In this paper, we present DT-HPA* (Hierarchical Path-Finding A* based on Decision Tree), a hierarchical path-finding approach on the map which has been divided by decision tree. This approach views each point on the map as an instance, and divides the map according to cut-points of continuous valued decision tree. The result of division is that the map is cut into some rectangular regions in different size, and retains the regions contain a kind of terrain. The experimental results show that, compared to HPA*, DT-HPA* can find more optimal paths with fewer detected nodes.KeywordsGame intelligenceHierarchical path-findingInformation entropyDecision treeDT-HPA*
Talk to us
Join us for a 30 min session where you can share your feedback and ask us any queries you have
Disclaimer: All third-party content on this website/platform is and will remain the property of their respective owners and is provided on "as is" basis without any warranties, express or implied. Use of third-party content does not indicate any affiliation, sponsorship with or endorsement by them. Any references to third-party content is to identify the corresponding services and shall be considered fair use under The CopyrightLaw.