Class Summary |
AStarPathFinder |
A path finder implementation that uses the AStar heuristic based algorithm to determine a path. |
ClosestHeuristic |
A heuristic that uses the tile that is closest to the target as the next best tile. |
ClosestSquaredHeuristic |
A heuristic that uses the tile that is closest to the target as the next best tile. |
ManhattanHeuristic |
A heuristic that drives the search based on the Manhattan distance between the current location and the target |
Node |
|
Path |
A path determined by some path finding algorithm. |
Step |
|