hytale-server/com/hypixel/hytale/math/block/BlockConeUtil.java

171 lines
6.8 KiB
Java

package com.hypixel.hytale.math.block;
import com.hypixel.hytale.function.predicate.TriIntObjPredicate;
import javax.annotation.Nonnull;
public class BlockConeUtil {
public static <T> void forEachBlock(
int originX, int originY, int originZ, int radiusX, int height, int radiusZ, T t, @Nonnull TriIntObjPredicate<T> consumer
) {
if (radiusX <= 0) {
throw new IllegalArgumentException(String.valueOf(radiusX));
} else if (height <= 0) {
throw new IllegalArgumentException(String.valueOf(height));
} else if (radiusZ <= 0) {
throw new IllegalArgumentException(String.valueOf(radiusZ));
} else {
float radiusXAdjusted = radiusX + 0.41F;
float radiusZAdjusted = radiusZ + 0.41F;
for (int y = height - 1; y >= 0; y--) {
double rf = 1.0 - (double)y / height;
double dx = radiusXAdjusted * rf;
int maxX;
int minX = -(maxX = (int)dx);
for (int x = minX; x <= maxX; x++) {
double qx = 1.0 - x * x / (dx * dx);
double dz = Math.sqrt(qx) * radiusZAdjusted * rf;
int maxZ;
int minZ = -(maxZ = (int)dz);
for (int z = minZ; z <= maxZ; z++) {
if (!consumer.test(originX + x, originY + y, originZ + z, t)) {
return;
}
}
}
}
}
}
public static <T> void forEachBlock(
int originX, int originY, int originZ, int radiusX, int height, int radiusZ, int thickness, T t, @Nonnull TriIntObjPredicate<T> consumer
) {
forEachBlock(originX, originY, originZ, radiusX, height, radiusZ, thickness, false, t, consumer);
}
public static <T> void forEachBlock(
int originX, int originY, int originZ, int radiusX, int height, int radiusZ, int thickness, boolean capped, T t, @Nonnull TriIntObjPredicate<T> consumer
) {
if (thickness < 1) {
forEachBlock(originX, originY, originZ, radiusX, height, radiusZ, t, consumer);
} else if (radiusX <= 0) {
throw new IllegalArgumentException(String.valueOf(radiusX));
} else if (height <= 0) {
throw new IllegalArgumentException(String.valueOf(height));
} else if (radiusZ <= 0) {
throw new IllegalArgumentException(String.valueOf(radiusZ));
} else {
float radiusXAdjusted = radiusX + 0.41F;
for (int y = height - 1; y >= 0; y--) {
boolean cap = capped && y < thickness;
double rf = 1.0 - (double)y / height;
double dx = radiusXAdjusted * rf;
double dxInvSqr = 1.0 / (dx * dx);
double innerDx = dx > thickness ? dx - thickness : 0.0;
double innerDxInvSqr = innerDx > 0.0 ? 1.0 / (innerDx * innerDx) : 0.0;
int maxX;
int minX = -(maxX = (int)dx);
for (int x = minX; x <= maxX; x++) {
double dz = Math.sqrt(1.0 - x * x * dxInvSqr) * dx;
int maxZ;
int minZ = -(maxZ = (int)dz);
double innerMaxZ = cap ? 0.0 : Math.sqrt(1.0 - x * x * innerDxInvSqr) * innerDx;
double innerMinZ = cap ? 0.0 : -innerMaxZ;
for (int z = minZ; z <= maxZ; z++) {
if ((!(z > innerMinZ) || !(z < innerMaxZ)) && !consumer.test(originX + x, originY + y, originZ + z, t)) {
return;
}
}
}
}
}
}
public static <T> void forEachBlockInverted(
int originX, int originY, int originZ, int radiusX, int height, int radiusZ, T t, @Nonnull TriIntObjPredicate<T> consumer
) {
if (radiusX <= 0) {
throw new IllegalArgumentException(String.valueOf(radiusX));
} else if (height <= 0) {
throw new IllegalArgumentException(String.valueOf(height));
} else if (radiusZ <= 0) {
throw new IllegalArgumentException(String.valueOf(radiusZ));
} else {
float radiusXAdjusted = radiusX + 0.41F;
float radiusZAdjusted = radiusZ + 0.41F;
for (int y = height - 1; y >= 0; y--) {
double rf = 1.0 - (double)y / height;
double dx = radiusXAdjusted * rf;
int maxX;
int minX = -(maxX = (int)dx);
for (int x = minX; x <= maxX; x++) {
double qx = 1.0 - x * x / (dx * dx);
double dz = Math.sqrt(qx) * radiusZAdjusted * rf;
int maxZ;
int minZ = -(maxZ = (int)dz);
for (int z = minZ; z <= maxZ; z++) {
if (!consumer.test(originX + x, originY + height - 1 - y, originZ + z, t)) {
return;
}
}
}
}
}
}
public static <T> void forEachBlockInverted(
int originX, int originY, int originZ, int radiusX, int height, int radiusZ, int thickness, T t, @Nonnull TriIntObjPredicate<T> consumer
) {
forEachBlock(originX, originY, originZ, radiusX, height, radiusZ, thickness, false, t, consumer);
}
public static <T> void forEachBlockInverted(
int originX, int originY, int originZ, int radiusX, int height, int radiusZ, int thickness, boolean capped, T t, @Nonnull TriIntObjPredicate<T> consumer
) {
if (thickness < 1) {
forEachBlockInverted(originX, originY, originZ, radiusX, height, radiusZ, t, consumer);
} else if (radiusX <= 0) {
throw new IllegalArgumentException(String.valueOf(radiusX));
} else if (height <= 0) {
throw new IllegalArgumentException(String.valueOf(height));
} else if (radiusZ <= 0) {
throw new IllegalArgumentException(String.valueOf(radiusZ));
} else {
float radiusXAdjusted = radiusX + 0.41F;
for (int y = height - 1; y >= 0; y--) {
boolean cap = capped && y < thickness;
double rf = 1.0 - (double)y / height;
double dx = radiusXAdjusted * rf;
double dxInvSqr = 1.0 / (dx * dx);
double innerDx = dx > thickness ? dx - thickness : 0.0;
double innerDxInvSqr = innerDx > 0.0 ? 1.0 / (innerDx * innerDx) : 0.0;
int maxX;
int minX = -(maxX = (int)dx);
for (int x = minX; x <= maxX; x++) {
double dz = Math.sqrt(1.0 - x * x * dxInvSqr) * dx;
int maxZ;
int minZ = -(maxZ = (int)dz);
double innerMaxZ = cap ? 0.0 : Math.sqrt(1.0 - x * x * innerDxInvSqr) * innerDx;
double innerMinZ = cap ? 0.0 : -innerMaxZ;
for (int z = minZ; z <= maxZ; z++) {
if ((!(z > innerMinZ) || !(z < innerMaxZ)) && !consumer.test(originX + x, originY + height - 1 - y, originZ + z, t)) {
return;
}
}
}
}
}
}
}