2023-11-04 14:00:17 -04:00
|
|
|
package mindustry.ai;
|
|
|
|
|
|
|
|
import arc.*;
|
|
|
|
import arc.graphics.*;
|
|
|
|
import arc.graphics.g2d.*;
|
|
|
|
import arc.math.*;
|
|
|
|
import arc.math.geom.*;
|
|
|
|
import arc.struct.*;
|
2023-11-04 17:18:53 -04:00
|
|
|
import arc.util.*;
|
2023-11-04 17:37:29 -04:00
|
|
|
import mindustry.annotations.Annotations.*;
|
2023-11-04 17:18:53 -04:00
|
|
|
import mindustry.content.*;
|
2023-11-04 14:00:17 -04:00
|
|
|
import mindustry.game.EventType.*;
|
2023-11-04 17:18:53 -04:00
|
|
|
import mindustry.game.*;
|
2023-11-04 17:37:29 -04:00
|
|
|
import mindustry.gen.*;
|
2023-11-04 14:00:17 -04:00
|
|
|
import mindustry.graphics.*;
|
|
|
|
|
|
|
|
import static mindustry.Vars.*;
|
|
|
|
import static mindustry.ai.Pathfinder.*;
|
|
|
|
|
2023-11-04 17:18:53 -04:00
|
|
|
//https://webdocs.cs.ualberta.ca/~mmueller/ps/hpastar.pdf
|
|
|
|
//https://www.gameaipro.com/GameAIPro/GameAIPro_Chapter23_Crowd_Pathfinding_and_Steering_Using_Flow_Field_Tiles.pdf
|
2023-11-04 14:00:17 -04:00
|
|
|
public class HierarchyPathFinder{
|
|
|
|
static final boolean debug = true;
|
|
|
|
|
|
|
|
static final int[] offsets = {
|
|
|
|
1, 0, //right: bottom to top
|
|
|
|
0, 1, //top: left to right
|
|
|
|
0, 0, //left: bottom to top
|
|
|
|
0, 0 //bottom: left to right
|
|
|
|
};
|
|
|
|
|
|
|
|
static final int[] moveDirs = {
|
|
|
|
0, 1,
|
|
|
|
1, 0,
|
|
|
|
0, 1,
|
|
|
|
1, 0
|
|
|
|
};
|
|
|
|
|
|
|
|
static final int[] nextOffsets = {
|
|
|
|
1, 0,
|
|
|
|
0, 1,
|
|
|
|
-1, 0,
|
|
|
|
0, -1
|
|
|
|
};
|
|
|
|
|
|
|
|
//maps pathCost -> flattened array of clusters in 2D
|
|
|
|
Cluster[][] clusters;
|
|
|
|
int clusterSize = 12;
|
|
|
|
|
|
|
|
int cwidth, cheight;
|
|
|
|
|
2023-11-06 19:21:29 -05:00
|
|
|
static PathfindQueue frontier = new PathfindQueue();
|
|
|
|
//node index -> total cost
|
|
|
|
static IntFloatMap costs = new IntFloatMap();
|
|
|
|
//
|
|
|
|
static IntSet usedEdges = new IntSet();
|
|
|
|
|
|
|
|
static LongSeq tmpEdges = new LongSeq();
|
|
|
|
|
|
|
|
//node index (NodeIndex struct) -> node it came from
|
|
|
|
static IntIntMap cameFrom = new IntIntMap();
|
|
|
|
|
2023-11-04 14:00:17 -04:00
|
|
|
public HierarchyPathFinder(){
|
|
|
|
|
|
|
|
Events.on(WorldLoadEvent.class, event -> {
|
|
|
|
//TODO 5 path costs, arbitrary number
|
|
|
|
clusters = new Cluster[5][];
|
|
|
|
clusterSize = 12; //TODO arbitrary
|
|
|
|
cwidth = Mathf.ceil((float)world.width() / clusterSize);
|
|
|
|
cheight = Mathf.ceil((float)world.height() / clusterSize);
|
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
for(int cy = 0; cy < cwidth; cy++){
|
|
|
|
for(int cx = 0; cx < cheight; cx++){
|
2023-11-04 14:00:17 -04:00
|
|
|
createCluster(Team.sharded.id, costGround, cx, cy);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//TODO very inefficient, this is only for debugging
|
|
|
|
Events.on(TileChangeEvent.class, e -> {
|
|
|
|
createCluster(Team.sharded.id, costGround, e.tile.x / clusterSize, e.tile.y / clusterSize);
|
|
|
|
});
|
|
|
|
|
|
|
|
if(debug){
|
|
|
|
Events.run(Trigger.draw, () -> {
|
|
|
|
int team = Team.sharded.id;
|
|
|
|
int cost = costGround;
|
|
|
|
|
|
|
|
if(clusters == null || clusters[cost] == null) return;
|
|
|
|
|
|
|
|
Draw.draw(Layer.overlayUI, () -> {
|
|
|
|
Lines.stroke(1f);
|
|
|
|
for(int cx = 0; cx < cwidth; cx++){
|
|
|
|
for(int cy = 0; cy < cheight; cy++){
|
|
|
|
var cluster = clusters[cost][cy * cwidth + cx];
|
|
|
|
if(cluster != null){
|
|
|
|
Draw.color(Color.green);
|
|
|
|
|
|
|
|
Lines.rect(cx * clusterSize * tilesize - tilesize/2f, cy * clusterSize * tilesize - tilesize/2f, clusterSize * tilesize, clusterSize * tilesize);
|
2023-11-04 17:37:29 -04:00
|
|
|
|
2023-11-04 14:00:17 -04:00
|
|
|
|
|
|
|
for(int d = 0; d < 4; d++){
|
|
|
|
IntSeq portals = cluster.portals[d];
|
|
|
|
if(portals != null){
|
|
|
|
|
|
|
|
for(int i = 0; i < portals.size; i++){
|
|
|
|
int pos = portals.items[i];
|
|
|
|
int from = Point2.x(pos), to = Point2.y(pos);
|
|
|
|
float width = tilesize * (Math.abs(from - to) + 1), height = tilesize;
|
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
portalToVec(cluster, cx, cy, d, i, Tmp.v1);
|
|
|
|
|
|
|
|
Draw.color(Color.red);
|
|
|
|
Lines.ellipse(30, Tmp.v1.x, Tmp.v1.y, width / 2f, height / 2f, d * 90f - 90f);
|
|
|
|
|
|
|
|
LongSeq connections = cluster.portalConnections[d] == null ? null : cluster.portalConnections[d][i];
|
|
|
|
|
|
|
|
if(connections != null){
|
|
|
|
Draw.color(Color.magenta);
|
|
|
|
for(int coni = 0; coni < connections.size; coni ++){
|
|
|
|
long con = connections.items[coni];
|
|
|
|
|
|
|
|
portalToVec(cluster, cx, cy, IntraEdge.dir(con), IntraEdge.portal(con), Tmp.v2);
|
2023-11-04 14:00:17 -04:00
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
float
|
|
|
|
x1 = Tmp.v1.x, y1 = Tmp.v1.y,
|
|
|
|
x2 = Tmp.v2.x, y2 = Tmp.v2.y,
|
|
|
|
mx = (cx * clusterSize + clusterSize / 2f) * tilesize, my = (cy * clusterSize + clusterSize / 2f) * tilesize;
|
|
|
|
//Lines.curve(x1, y1, mx, my, mx, my, x2, y2, 20);
|
|
|
|
Lines.line(x1, y1, x2, y2);
|
2023-11-04 14:00:17 -04:00
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
}
|
|
|
|
}
|
2023-11-04 14:00:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-11-04 17:18:53 -04:00
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
//TODO draw connections.
|
|
|
|
|
|
|
|
/*
|
2023-11-04 17:18:53 -04:00
|
|
|
Draw.color(Color.magenta);
|
|
|
|
for(var con : cluster.cons){
|
|
|
|
float
|
|
|
|
x1 = Point2.x(con.posFrom) * tilesize, y1 = Point2.y(con.posFrom) * tilesize,
|
|
|
|
x2 = Point2.x(con.posTo) * tilesize, y2 = Point2.y(con.posTo) * tilesize,
|
|
|
|
mx = (cx * clusterSize + clusterSize/2f) * tilesize, my = (cy * clusterSize + clusterSize/2f) * tilesize;
|
|
|
|
//Lines.curve(x1, y1, mx, my, mx, my, x2, y2, 20);
|
|
|
|
Lines.line(x1, y1, x2, y2);
|
2023-11-04 17:37:29 -04:00
|
|
|
}*/
|
2023-11-04 14:00:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Draw.reset();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
void portalToVec(Cluster cluster, int cx, int cy, int d, int i, Vec2 out){
|
|
|
|
int pos = cluster.portals[d].items[i];
|
|
|
|
int from = Point2.x(pos), to = Point2.y(pos);
|
|
|
|
int addX = moveDirs[d * 2], addY = moveDirs[d * 2 + 1];
|
|
|
|
float average = (from + to) / 2f;
|
|
|
|
|
|
|
|
float
|
|
|
|
x = (addX * average + cx * clusterSize + offsets[d * 2] * (clusterSize - 1) + nextOffsets[d * 2] / 2f) * tilesize,
|
|
|
|
y = (addY * average + cy * clusterSize + offsets[d * 2 + 1] * (clusterSize - 1) + nextOffsets[d * 2 + 1] / 2f) * tilesize;
|
|
|
|
|
|
|
|
out.set(x, y);
|
|
|
|
}
|
|
|
|
|
2023-11-04 14:00:17 -04:00
|
|
|
void createCluster(int team, int pathCost, int cx, int cy){
|
|
|
|
if(clusters[pathCost] == null) clusters[pathCost] = new Cluster[cwidth * cheight];
|
|
|
|
Cluster cluster = clusters[pathCost][cy * cwidth + cx];
|
|
|
|
if(cluster == null){
|
|
|
|
cluster = clusters[pathCost][cy * cwidth + cx] = new Cluster();
|
|
|
|
}else{
|
|
|
|
//reset data
|
|
|
|
for(var p : cluster.portals){
|
|
|
|
p.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
//clear all connections, since portals changed, they need to be recomputed.
|
|
|
|
cluster.portalConnections = new LongSeq[4][];
|
|
|
|
|
2023-11-04 17:18:53 -04:00
|
|
|
//TODO: other cluster inner edges should be recomputed if changed.
|
|
|
|
|
2023-11-04 14:00:17 -04:00
|
|
|
//TODO look it up based on number.
|
|
|
|
PathCost cost = ControlPathfinder.costGround;
|
|
|
|
|
|
|
|
for(int direction = 0; direction < 4; direction++){
|
|
|
|
int otherX = cx + Geometry.d4x(direction), otherY = cy + Geometry.d4y(direction);
|
|
|
|
//out of bounds, no portals in this direction
|
|
|
|
if(otherX < 0 || otherY < 0 || otherX >= cwidth || otherY >= cheight){
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Cluster other = clusters[pathCost][otherX + otherY * cwidth];
|
|
|
|
IntSeq portals;
|
|
|
|
|
|
|
|
if(other == null){
|
|
|
|
//create new portals at direction
|
2023-11-04 17:18:53 -04:00
|
|
|
portals = cluster.portals[direction] = new IntSeq(4);
|
2023-11-04 14:00:17 -04:00
|
|
|
}else{
|
|
|
|
//share portals with the other cluster
|
|
|
|
portals = cluster.portals[direction] = other.portals[(direction + 2) % 4];
|
2023-11-04 17:37:29 -04:00
|
|
|
|
|
|
|
//clear the portals, they're being recalculated now
|
|
|
|
portals.clear();
|
2023-11-04 14:00:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int addX = moveDirs[direction * 2], addY = moveDirs[direction * 2 + 1];
|
|
|
|
int
|
|
|
|
baseX = cx * clusterSize + offsets[direction * 2] * (clusterSize - 1),
|
|
|
|
baseY = cy * clusterSize + offsets[direction * 2 + 1] * (clusterSize - 1),
|
|
|
|
nextBaseX = baseX + Geometry.d4[direction].x,
|
|
|
|
nextBaseY = baseY + Geometry.d4[direction].y;
|
|
|
|
|
|
|
|
int lastPortal = -1;
|
|
|
|
boolean prevSolid = true;
|
|
|
|
|
|
|
|
for(int i = 0; i < clusterSize; i++){
|
|
|
|
int x = baseX + addX * i, y = baseY + addY * i;
|
|
|
|
|
|
|
|
//scan for portals
|
|
|
|
if(solid(team, cost, x, y) || solid(team, cost, nextBaseX + addX * i, nextBaseY + addY * i)){
|
|
|
|
int previous = i - 1;
|
|
|
|
//hit a wall, create portals between the two points
|
|
|
|
if(!prevSolid && previous >= lastPortal){
|
|
|
|
//portals are an inclusive range
|
|
|
|
portals.add(Point2.pack(previous, lastPortal));
|
|
|
|
}
|
|
|
|
prevSolid = true;
|
|
|
|
}else{
|
|
|
|
//empty area encountered, mark the location of portal start
|
|
|
|
if(prevSolid){
|
|
|
|
lastPortal = i;
|
|
|
|
}
|
|
|
|
prevSolid = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//at the end of the loop, close any un-initialized portals; this is copy pasted code
|
|
|
|
int previous = clusterSize - 1;
|
|
|
|
if(!prevSolid && previous >= lastPortal){
|
|
|
|
//portals are an inclusive range
|
|
|
|
portals.add(Point2.pack(previous, lastPortal));
|
|
|
|
}
|
|
|
|
}
|
2023-11-04 17:18:53 -04:00
|
|
|
|
|
|
|
connectInnerEdges(cx, cy, team, cost, cluster);
|
|
|
|
}
|
|
|
|
|
|
|
|
void connectInnerEdges(int cx, int cy, int team, PathCost cost, Cluster cluster){
|
|
|
|
int minX = cx * clusterSize, minY = cy * clusterSize, maxX = Math.min(minX + clusterSize - 1, wwidth - 1), maxY = Math.min(minY + clusterSize - 1, wheight - 1);
|
|
|
|
|
|
|
|
usedEdges.clear();
|
|
|
|
|
|
|
|
//TODO: how the hell to identify a vertex?
|
|
|
|
//cluster (i16) | direction (i2) | index (i14)
|
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
//TODO: clear portal connections. also share them?
|
|
|
|
|
2023-11-04 17:18:53 -04:00
|
|
|
for(int direction = 0; direction < 4; direction++){
|
|
|
|
var portals = cluster.portals[direction];
|
|
|
|
if(portals == null) continue;
|
|
|
|
|
|
|
|
int addX = moveDirs[direction * 2], addY = moveDirs[direction * 2 + 1];
|
|
|
|
|
|
|
|
for(int i = 0; i < portals.size; i++){
|
|
|
|
usedEdges.add(Point2.pack(direction, i));
|
|
|
|
|
|
|
|
int
|
|
|
|
portal = portals.items[i],
|
|
|
|
from = Point2.x(portal), to = Point2.y(portal),
|
|
|
|
average = (from + to) / 2,
|
|
|
|
x = (addX * average + cx * clusterSize + offsets[direction * 2] * (clusterSize - 1)),
|
|
|
|
y = (addY * average + cy * clusterSize + offsets[direction * 2 + 1] * (clusterSize - 1));
|
|
|
|
|
|
|
|
for(int otherDir = 0; otherDir < 4; otherDir++){
|
|
|
|
var otherPortals = cluster.portals[otherDir];
|
2023-11-04 17:37:29 -04:00
|
|
|
if(otherPortals == null) continue;
|
2023-11-04 17:18:53 -04:00
|
|
|
|
|
|
|
for(int j = 0; j < otherPortals.size; j++){
|
|
|
|
|
|
|
|
//TODO redundant calculations?
|
|
|
|
if(!usedEdges.contains(Point2.pack(otherDir, j))){
|
|
|
|
|
|
|
|
int
|
|
|
|
other = otherPortals.items[j],
|
|
|
|
otherFrom = Point2.x(other), otherTo = Point2.y(other),
|
|
|
|
otherAverage = (otherFrom + otherTo) / 2,
|
|
|
|
ox = cx * clusterSize + offsets[otherDir * 2] * (clusterSize - 1),
|
|
|
|
oy = cy * clusterSize + offsets[otherDir * 2 + 1] * (clusterSize - 1),
|
|
|
|
otherX = (moveDirs[otherDir * 2] * otherAverage + ox),
|
|
|
|
otherY = (moveDirs[otherDir * 2 + 1] * otherAverage + oy);
|
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
//HOW (redundant nodes?)
|
2023-11-04 17:18:53 -04:00
|
|
|
if(Point2.pack(x, y) == Point2.pack(otherX, otherY)){
|
2023-11-04 17:37:29 -04:00
|
|
|
continue;
|
2023-11-04 17:18:53 -04:00
|
|
|
}
|
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
float connectionCost = innerAstar(
|
2023-11-06 19:21:29 -05:00
|
|
|
team, cost,
|
|
|
|
minX, minY, maxX, maxY,
|
|
|
|
x + y * wwidth,
|
|
|
|
otherX + otherY * wwidth,
|
|
|
|
(moveDirs[otherDir * 2] * otherFrom + ox),
|
|
|
|
(moveDirs[otherDir * 2 + 1] * otherFrom + oy),
|
|
|
|
(moveDirs[otherDir * 2] * otherTo + ox),
|
|
|
|
(moveDirs[otherDir * 2 + 1] * otherTo + oy)
|
2023-11-04 17:18:53 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
if(connectionCost != -1f){
|
2023-11-04 17:37:29 -04:00
|
|
|
if(cluster.portalConnections[direction] == null) cluster.portalConnections[direction] = new LongSeq[cluster.portals[direction].size];
|
|
|
|
if(cluster.portalConnections[otherDir] == null) cluster.portalConnections[otherDir] = new LongSeq[cluster.portals[otherDir].size];
|
|
|
|
if(cluster.portalConnections[direction][i] == null) cluster.portalConnections[direction][i] = new LongSeq(8);
|
|
|
|
if(cluster.portalConnections[otherDir][j] == null) cluster.portalConnections[otherDir][j] = new LongSeq(8);
|
2023-11-04 17:18:53 -04:00
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
//TODO: can there be duplicate edges??
|
|
|
|
cluster.portalConnections[direction][i].add(IntraEdge.get(otherDir, j, connectionCost));
|
|
|
|
cluster.portalConnections[otherDir][j].add(IntraEdge.get(direction, i, connectionCost));
|
|
|
|
|
|
|
|
//Fx.debugLine.at(x* tilesize, y * tilesize, 0f, Color.purple, new Vec2[]{new Vec2(x, y).scl(tilesize), new Vec2(otherX, otherY).scl(tilesize)});
|
2023-11-04 17:18:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//distance heuristic: manhattan
|
|
|
|
private static float heuristic(int a, int b){
|
|
|
|
int x = a % wwidth, x2 = b % wwidth, y = a / wwidth, y2 = b / wwidth;
|
|
|
|
return Math.abs(x - x2) + Math.abs(y - y2);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static int tcost(int team, PathCost cost, int tilePos){
|
|
|
|
return cost.getCost(team, pathfinder.tiles[tilePos]);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static float tileCost(int team, PathCost type, int a, int b){
|
|
|
|
//currently flat cost
|
|
|
|
return cost(team, type, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return -1 if no path was found */
|
2023-11-04 17:37:29 -04:00
|
|
|
float innerAstar(int team, PathCost cost, int minX, int minY, int maxX, int maxY, int startPos, int goalPos, int goalX1, int goalY1, int goalX2, int goalY2){
|
2023-11-04 17:18:53 -04:00
|
|
|
frontier.clear();
|
|
|
|
costs.clear();
|
|
|
|
|
|
|
|
costs.put(startPos, 0);
|
|
|
|
frontier.add(startPos, 0);
|
|
|
|
|
|
|
|
if(debug && false){
|
|
|
|
Fx.debugLine.at(Point2.x(startPos) * tilesize, Point2.y(startPos) * tilesize, 0f, Color.purple,
|
|
|
|
new Vec2[]{new Vec2(Point2.x(startPos), Point2.y(startPos)).scl(tilesize), new Vec2(Point2.x(goalPos), Point2.y(goalPos)).scl(tilesize)});
|
|
|
|
}
|
|
|
|
|
|
|
|
while(frontier.size > 0){
|
|
|
|
int current = frontier.poll();
|
|
|
|
|
|
|
|
int cx = current % wwidth, cy = current / wwidth;
|
|
|
|
|
|
|
|
//found the goal (it's in the portal rectangle)
|
|
|
|
//TODO portal rectangle approach does not work.
|
|
|
|
if((cx >= goalX1 && cy >= goalY1 && cx <= goalX2 && cy <= goalY2) || current == goalPos){
|
|
|
|
return costs.get(current);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(Point2 point : Geometry.d4){
|
|
|
|
int newx = cx + point.x, newy = cy + point.y;
|
|
|
|
int next = newx + wwidth * newy;
|
|
|
|
|
|
|
|
if(newx > maxX || newy > maxY || newx < minX || newy < minY) continue;
|
|
|
|
|
|
|
|
//TODO fallback mode for enemy walls or whatever
|
|
|
|
if(tcost(team, cost, next) == impassable) continue;
|
|
|
|
|
|
|
|
float add = tileCost(team, cost, current, next);
|
|
|
|
|
|
|
|
if(add < 0) continue;
|
|
|
|
|
2023-11-06 19:21:29 -05:00
|
|
|
float newCost = costs.get(current) + add;
|
2023-11-04 17:18:53 -04:00
|
|
|
|
|
|
|
//a cost of 0 means "not set"
|
2023-11-06 19:21:29 -05:00
|
|
|
if(newCost < costs.get(next, Float.POSITIVE_INFINITY)){
|
2023-11-04 17:18:53 -04:00
|
|
|
costs.put(next, newCost);
|
|
|
|
float priority = newCost + heuristic(next, goalPos);
|
|
|
|
frontier.add(next, priority);
|
2023-11-06 19:21:29 -05:00
|
|
|
|
|
|
|
//cameFrom.put(next, current);
|
2023-11-04 17:18:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1f;
|
2023-11-04 14:00:17 -04:00
|
|
|
}
|
|
|
|
|
2023-11-06 19:21:29 -05:00
|
|
|
int makeNodeIndex(int cx, int cy, int dir, int portal){
|
|
|
|
//to make sure there's only one way to refer to each node, the direction must be 0 or 1 (referring to portals on the top or right edge)
|
|
|
|
|
|
|
|
//direction can only be 2 if cluster X is 0 (left edge of map)
|
|
|
|
if(dir == 2 && cx != 0){
|
|
|
|
dir = 0;
|
|
|
|
cx --;
|
|
|
|
}
|
|
|
|
|
|
|
|
//direction can only be 3 if cluster Y is 0 (bottom edge of map)
|
|
|
|
if(dir == 3 && cy != 0){
|
|
|
|
dir = 1;
|
|
|
|
cy --;
|
|
|
|
}
|
|
|
|
return NodeIndex.get(cx + cy * cwidth, dir, portal);
|
|
|
|
}
|
|
|
|
|
|
|
|
//distance heuristic: manhattan
|
|
|
|
private float clusterNodeHeuristic(int pathCost, int nodeA, int nodeB){
|
|
|
|
int
|
|
|
|
clusterA = NodeIndex.cluster(nodeA),
|
|
|
|
dirA = NodeIndex.dir(nodeA),
|
|
|
|
portalA = NodeIndex.portal(nodeA),
|
|
|
|
clusterB = NodeIndex.cluster(nodeB),
|
|
|
|
dirB = NodeIndex.dir(nodeB),
|
|
|
|
portalB = NodeIndex.portal(nodeB);
|
|
|
|
|
|
|
|
int rangeA = clusters[pathCost][clusterA].portals[dirA].items[portalA];
|
|
|
|
int rangeB = clusters[pathCost][clusterB].portals[dirB].items[portalB];
|
|
|
|
|
|
|
|
float
|
|
|
|
averageA = (Point2.x(rangeA) + Point2.y(rangeA)) / 2f,
|
|
|
|
x1 = (moveDirs[dirA * 2] * averageA + (clusterA % cwidth) * clusterSize + offsets[dirA * 2] * (clusterSize - 1) + nextOffsets[dirA * 2] / 2f),
|
|
|
|
y1 = (moveDirs[dirA * 2 + 1] * averageA + (clusterA / cwidth) * clusterSize + offsets[dirA * 2 + 1] * (clusterSize - 1) + nextOffsets[dirA * 2 + 1] / 2f),
|
|
|
|
|
|
|
|
averageB = (Point2.x(rangeB) + Point2.y(rangeB)) / 2f,
|
|
|
|
x2 = (moveDirs[dirB * 2] * averageB + (clusterB % cwidth) * clusterSize + offsets[dirB * 2] * (clusterSize - 1) + nextOffsets[dirB * 2] / 2f),
|
|
|
|
y2 = (moveDirs[dirB * 2 + 1] * averageB + (clusterB / cwidth) * clusterSize + offsets[dirB * 2 + 1] * (clusterSize - 1) + nextOffsets[dirB * 2 + 1] / 2f);
|
|
|
|
|
|
|
|
return Math.abs(x1 - x2) + Math.abs(y1 - y2);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Nullable IntSeq clusterAstar(int pathCost, int startNodeIndex, int endNodeIndex){
|
|
|
|
frontier.clear();
|
|
|
|
costs.clear();
|
|
|
|
|
|
|
|
costs.put(startNodeIndex, 0);
|
|
|
|
frontier.add(endNodeIndex, 0);
|
|
|
|
cameFrom.clear();
|
|
|
|
|
|
|
|
boolean foundEnd = false;
|
|
|
|
|
|
|
|
while(frontier.size > 0){
|
|
|
|
int current = frontier.poll();
|
|
|
|
|
|
|
|
if(current == endNodeIndex){
|
|
|
|
foundEnd = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
//tmpEdges holds intra edges
|
|
|
|
tmpEdges.clear();
|
|
|
|
|
|
|
|
int cluster = NodeIndex.cluster(current), dir = NodeIndex.dir(current), portal = NodeIndex.portal(current);
|
|
|
|
int cx = cluster % wwidth, cy = cluster / wwidth;
|
|
|
|
Cluster clust = clusters[pathCost][cluster];
|
|
|
|
LongSeq innerCons = clust.portalConnections[dir][portal];
|
|
|
|
|
|
|
|
//edges for the cluster the node is 'in'
|
|
|
|
if(innerCons != null){
|
|
|
|
checkEdges(pathCost, current, cx, cy, innerCons);
|
|
|
|
}
|
|
|
|
|
|
|
|
int nextCx = cx + Geometry.d4[dir].x, nextCy = cy + Geometry.d4[dir].y;
|
|
|
|
if(nextCx >= 0 && nextCy >= 0 && nextCx < cwidth && nextCy < cheight){
|
|
|
|
int nextClusteri = nextCx + nextCy * cwidth;
|
|
|
|
Cluster nextCluster = clusters[pathCost][nextClusteri];
|
|
|
|
int relativeDir = (dir + 2) % 4;
|
|
|
|
LongSeq outerCons = nextCluster.portalConnections[relativeDir] == null ? null : nextCluster.portalConnections[relativeDir][portal];
|
|
|
|
if(outerCons != null){
|
|
|
|
checkEdges(pathCost, current, nextCx, nextCy, outerCons);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(foundEnd){
|
|
|
|
IntSeq result = new IntSeq();
|
|
|
|
|
|
|
|
int cur = endNodeIndex;
|
|
|
|
while(cur != startNodeIndex){
|
|
|
|
result.add(cur);
|
|
|
|
cur = cameFrom.get(cur);
|
|
|
|
}
|
|
|
|
|
|
|
|
result.reverse();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
void checkEdges(int pathCost, int current, int cx, int cy, LongSeq connections){
|
|
|
|
for(int i = 0; i < connections.size; i++){
|
|
|
|
long con = connections.items[i];
|
|
|
|
float cost = IntraEdge.cost(con);
|
|
|
|
int otherDir = IntraEdge.dir(con), otherPortal = IntraEdge.portal(con);
|
|
|
|
int next = makeNodeIndex(cx, cy, otherDir, otherPortal);
|
|
|
|
|
|
|
|
float newCost = costs.get(current) + cost;
|
|
|
|
|
|
|
|
if(newCost < costs.get(next, Float.POSITIVE_INFINITY)){
|
|
|
|
costs.put(next, newCost);
|
|
|
|
frontier.add(next, newCost + clusterNodeHeuristic(pathCost, current, next));
|
|
|
|
cameFrom.put(next, current);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-04 14:00:17 -04:00
|
|
|
Cluster cluster(int pathCost, int cx, int cy){
|
|
|
|
return clusters[pathCost][cx + cwidth * cy];
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean solid(int team, PathCost type, int x, int y){
|
|
|
|
return x < 0 || y < 0 || x >= wwidth || y >= wheight || solid(team, type, x + y * wwidth, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean solid(int team, PathCost type, int tilePos, boolean checkWall){
|
|
|
|
int cost = cost(team, type, tilePos);
|
|
|
|
return cost == impassable || (checkWall && cost >= 6000);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static int cost(int team, PathCost cost, int tilePos){
|
|
|
|
if(state.rules.limitMapArea && !Team.get(team).isAI()){
|
|
|
|
int x = tilePos % wwidth, y = tilePos / wwidth;
|
|
|
|
if(x < state.rules.limitX || y < state.rules.limitY || x > state.rules.limitX + state.rules.limitWidth || y > state.rules.limitY + state.rules.limitHeight){
|
|
|
|
return impassable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cost.getCost(team, pathfinder.tiles[tilePos]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static class Cluster{
|
|
|
|
IntSeq[] portals = new IntSeq[4];
|
2023-11-04 17:37:29 -04:00
|
|
|
//maps rotation + index of portal to list of IntraEdge objects
|
|
|
|
LongSeq[][] portalConnections = new LongSeq[4][];
|
2023-11-04 17:18:53 -04:00
|
|
|
}
|
2023-11-04 14:00:17 -04:00
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
@Struct
|
|
|
|
static class IntraEdgeStruct{
|
|
|
|
@StructField(8)
|
|
|
|
int dir;
|
|
|
|
@StructField(8)
|
|
|
|
int portal;
|
2023-11-04 14:00:17 -04:00
|
|
|
|
2023-11-04 17:37:29 -04:00
|
|
|
float cost;
|
2023-11-04 14:00:17 -04:00
|
|
|
}
|
2023-11-06 19:21:29 -05:00
|
|
|
|
|
|
|
@Struct
|
|
|
|
static class NodeIndexStruct{
|
|
|
|
@StructField(22)
|
|
|
|
int cluster;
|
|
|
|
@StructField(2)
|
|
|
|
int dir;
|
|
|
|
@StructField(8)
|
|
|
|
int portal;
|
|
|
|
}
|
2023-11-04 14:00:17 -04:00
|
|
|
}
|