31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package com.hypixel.hytale.server.npc.navigation;
|
|
|
|
import com.hypixel.hytale.component.Resource;
|
|
import com.hypixel.hytale.component.ResourceType;
|
|
import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
|
|
import com.hypixel.hytale.server.npc.NPCPlugin;
|
|
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
|
|
import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
|
|
import javax.annotation.Nonnull;
|
|
|
|
public class AStarNodePoolProviderSimple implements AStarNodePoolProvider, Resource<EntityStore> {
|
|
@Nonnull
|
|
protected Int2ObjectMap<AStarNodePoolSimple> nodePools = new Int2ObjectOpenHashMap();
|
|
|
|
public static ResourceType<EntityStore, AStarNodePoolProviderSimple> getResourceType() {
|
|
return NPCPlugin.get().getAStarNodePoolProviderSimpleResourceType();
|
|
}
|
|
|
|
@Nonnull
|
|
@Override
|
|
public AStarNodePool getPool(int childNodeCount) {
|
|
return (AStarNodePool)this.nodePools.computeIfAbsent(childNodeCount, AStarNodePoolSimple::new);
|
|
}
|
|
|
|
@Nonnull
|
|
@Override
|
|
public Resource<EntityStore> clone() {
|
|
return new AStarNodePoolProviderSimple();
|
|
}
|
|
}
|