abstract-pathfinder
v0.1.0
Published
Agnostic A* pathfinding
Downloads
86
Readme
abstract-pathfinder
Type-agnostic A* pathfinding.
Doesn't care how your data is structured - just implement a minimal set of accessors, and this module will apply A* to whatever data or graph you're using.
Now built in typescript! Takes any arbitrary type for the graph nodes.
Installation:
pnpm i abstract-pathfinder
Usage:
import { Pathfinder } from 'abstract-pathfinder'
type MyNodeType = { x: number; y: number } // or whatever
const finder = new Pathfinder<MyNodeType>({
nodeToPrimitive: (node) => 'a', // unique key for each node
getNeighbors: (node) => [], // array of neighboring nodes
getMoveCost: (a, b) => 1 , // move cost between neighboring nodes
getHeuristic: (a, b) => 1, // guess at move cost between arbitrary nodes
})
const path = finder.findPath(start, end) // array of nodes, or [] if no path found
By:
Made with 🍺 by fenomas.