Uses of Interface
net.citizensnpcs.api.astar.AStarStorage
Packages that use AStarStorage
-
Uses of AStarStorage in net.citizensnpcs.api.astar
Classes in net.citizensnpcs.api.astar that implement AStarStorageModifier and TypeClassDescriptionclass
A base implementation ofAStarStorage
that uses aPriorityQueue
for the frontier andHashMap
s for the open/closed sets.Fields in net.citizensnpcs.api.astar with type parameters of type AStarStorageMethod parameters in net.citizensnpcs.api.astar with type arguments of type AStarStorageModifier and TypeMethodDescriptionstatic <N extends AStarNode,
P extends Plan>
AStarMachine<N, P> AStarMachine.createWithStorage
(Supplier<AStarStorage> storageSupplier) Creates an AStarMachine that uses the given
to createAStarStorage
instances.void
AStarMachine.setStorageSupplier
(Supplier<AStarStorage> newSupplier) Sets theSupplier
to use to generate instances ofAStarStorage
for use while searching.