Hierarchical Pathfinding

A Rust crate to find Paths on a Grid using HPA* (Hierarchical Pathfinding A*) and Hierarchical Dijkstra.

Build Tests

Description

Provides a fast algorithm for finding Paths on a Grid-like structure by caching segments of Paths to form a Node Graph. Finding a Path in that Graph is a lot faster than on the Grid itself, but results in Paths that are slightly worse than the optimal Path.

Implementation based on the Paper "Near Optimal Hierarchical Path-Finding".

Advantages

Disadvantages

Use Case

Finding Paths on a Grid is an expensive Operation. Consider the following Setup:

The Setup

In order to calculate a Path from Start to End using regular A*, it is necessary to check a lot of Tiles:

A*

(This is simply a small example, longer Paths require a quadratic increase in Tile checks, and unreachable Goals require the check of every single Tile)

The Solution that Hierarchical Pathfinding provides is to divide the Grid into Chunks and cache the Paths between Chunk entrances as a Graph of Nodes:

The Graph

This allows Paths to be generated by connecting the Start and End to the Nodes within the Chunk and using the Graph for the rest:

The Solution

Example

```rust use hierarchical_pathfinding::prelude::*;

let mut pathfinding = PathCache::new( (width, height), // the size of the Grid |(x, y)| walkingcost(x, y), // get the cost for walking over a Tile ManhattanNeighborhood::new(width, height), // the Neighborhood PathCacheConfig { chunksize: 3, ..Default::default() }, // config );

let start = (0, 0); let goal = (4, 4);

// findpath returns Some(Path) on success let path = pathfinding.findpath( start, goal, |(x, y)| walking_cost(x, y), );

if let Some(path) = path { println!("Number of steps: {}", path.length()); println!("Total Cost: {}", path.cost()); for (x, y) in path { println!("Go to {}, {}", x, y); } } ```