MBHaxe/src/collision/Grid.hx
2024-06-12 21:58:26 +05:30

194 lines
5.1 KiB
Haxe

package collision;
import haxe.Exception;
import h3d.Vector;
import h3d.col.Bounds;
class Grid {
public var bounds:Bounds; // The bounds of the grid
public var cellSize:Vector; // The dimensions of one cell
static var CELL_SIZE = 16;
public var CELL_DIV = new Vector(CELL_SIZE, CELL_SIZE); // split the bounds into cells of dimensions 1/16th of the corresponding dimensions of the bounds
var cells:Array<Array<Int>> = [];
var surfaces:Array<CollisionSurface> = [];
var searchKey:Int = 0;
public function new(bounds:Bounds) {
this.bounds = bounds.clone();
this.cellSize = new Vector(bounds.xSize / CELL_DIV.x, bounds.ySize / CELL_DIV.y);
for (i in 0...CELL_SIZE) {
for (j in 0...CELL_SIZE) {
this.cells.push([]);
}
}
}
public function insert(surface:CollisionSurface) {
// Assuming surface has built a bounding box already
if (this.bounds.containsBounds(surface.boundingBox)) {
var idx = this.surfaces.length;
this.surfaces.push(surface);
} else {
throw new Exception("Surface is not contained in the grid's bounds");
}
}
public function build() {
for (i in 0...CELL_SIZE) {
var minX = this.bounds.xMin;
var maxX = this.bounds.xMin;
minX += i * this.cellSize.x;
maxX += (i + 1) * this.cellSize.x;
for (j in 0...CELL_SIZE) {
var minY = this.bounds.yMin;
var maxY = this.bounds.yMin;
minY += j * this.cellSize.y;
maxY += (j + 1) * this.cellSize.y;
var binRect = new h2d.col.Bounds();
binRect.xMin = minX;
binRect.yMin = minY;
binRect.xMax = maxX;
binRect.yMax = maxY;
for (idx in 0...this.surfaces.length) {
var surface = this.surfaces[idx];
var hullRect = new h2d.col.Bounds();
hullRect.xMin = surface.boundingBox.xMin;
hullRect.yMin = surface.boundingBox.yMin;
hullRect.xMax = surface.boundingBox.xMax;
hullRect.yMax = surface.boundingBox.yMax;
if (hullRect.intersects(binRect)) {
this.cells[16 * i + j].push(idx);
}
}
}
}
}
// searchbox should be in LOCAL coordinates
public function boundingSearch(searchbox:Bounds) {
var queryMinX = Math.max(searchbox.xMin, bounds.xMin);
var queryMinY = Math.max(searchbox.yMin, bounds.yMin);
var queryMaxX = Math.min(searchbox.xMax, bounds.xMax);
var queryMaxY = Math.min(searchbox.yMax, bounds.yMax);
var xStart = Math.floor((queryMinX - bounds.xMin) / this.cellSize.x);
var yStart = Math.floor((queryMinY - bounds.yMin) / this.cellSize.y);
var xEnd = Math.ceil((queryMaxX - bounds.xMin) / this.cellSize.x);
var yEnd = Math.ceil((queryMaxY - bounds.yMin) / this.cellSize.y);
if (xStart < 0)
xStart = 0;
if (yStart < 0)
yStart = 0;
if (xEnd > CELL_SIZE)
xEnd = CELL_SIZE;
if (yEnd > CELL_SIZE)
yEnd = CELL_SIZE;
var foundSurfaces = [];
searchKey++;
// Insert the surface references from [xStart, yStart, zStart] to [xEnd, yEnd, zEnd] into the map
for (i in xStart...xEnd) {
for (j in yStart...yEnd) {
for (surfIdx in cells[16 * i + j]) {
var surf = surfaces[surfIdx];
if (surf.key == searchKey)
continue;
surf.key = searchKey;
if (searchbox.containsBounds(surf.boundingBox) || searchbox.collide(surf.boundingBox)) {
foundSurfaces.push(surf);
surf.key = searchKey;
}
}
}
}
return foundSurfaces;
}
function elegantPair(x:Int, y:Int) {
return (x >= y) ? (x * x + x + y) : (y * y + x);
}
function hashVector(x:Int, y:Int, z:Int) {
return elegantPair(elegantPair(x, y), z);
}
public function rayCast(origin:Vector, direction:Vector) {
var cell = origin.sub(this.bounds.getMin().toVector());
cell.x /= this.cellSize.x;
cell.y /= this.cellSize.y;
var stepX, outX, X = Math.floor(cell.x);
var stepY, outY, Y = Math.floor(cell.y);
if ((X < 0) || (X >= CELL_DIV.x) || (Y < 0) || (Y >= CELL_DIV.y))
return [];
var cb = new Vector();
if (direction.x > 0) {
stepX = 1;
outX = CELL_DIV.x;
cb.x = this.bounds.xMin + (X + 1) * this.cellSize.x;
} else {
stepX = -1;
outX = -1;
cb.x = this.bounds.xMin + X * this.cellSize.x;
}
if (direction.y > 0.0) {
stepY = 1;
outY = CELL_DIV.y;
cb.y = this.bounds.yMin + (Y + 1) * this.cellSize.y;
} else {
stepY = -1;
outY = -1;
cb.y = this.bounds.yMin + Y * this.cellSize.y;
}
var tmax = new Vector();
var tdelta = new Vector();
var rxr, ryr, rzr;
if (direction.x != 0) {
rxr = 1.0 / direction.x;
tmax.x = (cb.x - origin.x) * rxr;
tdelta.x = this.cellSize.x * stepX * rxr;
} else
tmax.x = 1000000;
if (direction.y != 0) {
ryr = 1.0 / direction.y;
tmax.y = (cb.y - origin.y) * ryr;
tdelta.y = this.cellSize.y * stepY * ryr;
} else
tmax.y = 1000000;
searchKey++;
var results = [];
while (true) {
var cell = cells[16 * X + Y];
for (idx in cell) {
var surf = surfaces[idx];
if (surf.key == searchKey)
continue;
surf.key = searchKey;
surf.rayCast(origin, direction, results);
}
if (tmax.x < tmax.y) {
X = X + stepX;
if (X == outX)
break;
tmax.x += tdelta.x;
} else {
Y = Y + stepY;
if (Y == outY)
break;
tmax.y += tdelta.y;
}
}
return results;
}
}