CreateMod/src/main/java/com/simibubi/create/foundation/utility/VecHelper.java
Timo van Veen 2bcc12b096
Use .lengthSqr() for compare operations (#4827)
- Optimisations to some of Create's vector math shortcuts
2023-07-03 15:38:16 +02:00

355 lines
11 KiB
Java

package com.simibubi.create.foundation.utility;
import java.util.Random;
import javax.annotation.Nullable;
import com.mojang.math.Quaternion;
import com.mojang.math.Vector3f;
import com.simibubi.create.foundation.mixin.accessor.GameRendererAccessor;
import net.minecraft.client.Camera;
import net.minecraft.client.Minecraft;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.core.Direction.Axis;
import net.minecraft.core.Vec3i;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.nbt.DoubleTag;
import net.minecraft.nbt.ListTag;
import net.minecraft.nbt.Tag;
import net.minecraft.network.FriendlyByteBuf;
import net.minecraft.util.Mth;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.level.block.Mirror;
import net.minecraft.world.phys.Vec3;
public class VecHelper {
public static final Vec3 CENTER_OF_ORIGIN = new Vec3(.5, .5, .5);
public static Vec3 rotate(Vec3 vec, Vec3 rotationVec) {
return rotate(vec, rotationVec.x, rotationVec.y, rotationVec.z);
}
public static Vec3 rotate(Vec3 vec, double xRot, double yRot, double zRot) {
return rotate(rotate(rotate(vec, xRot, Axis.X), yRot, Axis.Y), zRot, Axis.Z);
}
public static Vec3 rotateCentered(Vec3 vec, double deg, Axis axis) {
Vec3 shift = getCenterOf(BlockPos.ZERO);
return VecHelper.rotate(vec.subtract(shift), deg, axis)
.add(shift);
}
public static Vec3 rotate(Vec3 vec, double deg, Axis axis) {
if (deg == 0)
return vec;
if (vec == Vec3.ZERO)
return vec;
float angle = (float) (deg / 180f * Math.PI);
double sin = Mth.sin(angle);
double cos = Mth.cos(angle);
double x = vec.x;
double y = vec.y;
double z = vec.z;
if (axis == Axis.X)
return new Vec3(x, y * cos - z * sin, z * cos + y * sin);
if (axis == Axis.Y)
return new Vec3(x * cos + z * sin, y, z * cos - x * sin);
if (axis == Axis.Z)
return new Vec3(x * cos - y * sin, y * cos + x * sin, z);
return vec;
}
public static Vec3 mirrorCentered(Vec3 vec, Mirror mirror) {
Vec3 shift = getCenterOf(BlockPos.ZERO);
return VecHelper.mirror(vec.subtract(shift), mirror)
.add(shift);
}
public static Vec3 mirror(Vec3 vec, Mirror mirror) {
if (mirror == null || mirror == Mirror.NONE)
return vec;
if (vec == Vec3.ZERO)
return vec;
double x = vec.x;
double y = vec.y;
double z = vec.z;
if (mirror == Mirror.LEFT_RIGHT)
return new Vec3(x, y, -z);
if (mirror == Mirror.FRONT_BACK)
return new Vec3(-x, y, z);
return vec;
}
public static Vec3 lookAt(Vec3 vec, Vec3 fwd) {
fwd = fwd.normalize();
Vec3 up = new Vec3(0, 1, 0);
double dot = fwd.dot(up);
if (Math.abs(dot) > 1 - 1.0E-3)
up = new Vec3(0, 0, dot > 0 ? 1 : -1);
Vec3 right = fwd.cross(up)
.normalize();
up = right.cross(fwd)
.normalize();
double x = vec.x * right.x + vec.y * up.x + vec.z * fwd.x;
double y = vec.x * right.y + vec.y * up.y + vec.z * fwd.y;
double z = vec.x * right.z + vec.y * up.z + vec.z * fwd.z;
return new Vec3(x, y, z);
}
public static boolean isVecPointingTowards(Vec3 vec, Direction direction) {
return Vec3.atLowerCornerOf(direction.getNormal())
.dot(vec.normalize()) > 0.125; // slight tolerance to activate perpendicular movement actors
}
public static Vec3 getCenterOf(Vec3i pos) {
if (pos.equals(Vec3i.ZERO))
return CENTER_OF_ORIGIN;
return Vec3.atLowerCornerOf(pos)
.add(.5f, .5f, .5f);
}
public static Vec3 offsetRandomly(Vec3 vec, Random r, float radius) {
return new Vec3(vec.x + (r.nextFloat() - .5f) * 2 * radius, vec.y + (r.nextFloat() - .5f) * 2 * radius,
vec.z + (r.nextFloat() - .5f) * 2 * radius);
}
public static Vec3 axisAlingedPlaneOf(Vec3 vec) {
vec = vec.normalize();
return new Vec3(1, 1, 1).subtract(Math.abs(vec.x), Math.abs(vec.y), Math.abs(vec.z));
}
public static Vec3 axisAlingedPlaneOf(Direction face) {
return axisAlingedPlaneOf(Vec3.atLowerCornerOf(face.getNormal()));
}
public static ListTag writeNBT(Vec3 vec) {
ListTag listnbt = new ListTag();
listnbt.add(DoubleTag.valueOf(vec.x));
listnbt.add(DoubleTag.valueOf(vec.y));
listnbt.add(DoubleTag.valueOf(vec.z));
return listnbt;
}
public static CompoundTag writeNBTCompound(Vec3 vec) {
CompoundTag compoundTag = new CompoundTag();
compoundTag.put("V", writeNBT(vec));
return compoundTag;
}
public static Vec3 readNBT(ListTag list) {
if (list.isEmpty())
return Vec3.ZERO;
return new Vec3(list.getDouble(0), list.getDouble(1), list.getDouble(2));
}
public static Vec3 readNBTCompound(CompoundTag nbt) {
return readNBT(nbt.getList("V", Tag.TAG_DOUBLE));
}
public static void write(Vec3 vec, FriendlyByteBuf buffer) {
buffer.writeDouble(vec.x);
buffer.writeDouble(vec.y);
buffer.writeDouble(vec.z);
}
public static Vec3 read(FriendlyByteBuf buffer) {
return new Vec3(buffer.readDouble(), buffer.readDouble(), buffer.readDouble());
}
public static Vec3 voxelSpace(double x, double y, double z) {
return new Vec3(x, y, z).scale(1 / 16f);
}
public static int getCoordinate(Vec3i pos, Axis axis) {
return axis.choose(pos.getX(), pos.getY(), pos.getZ());
}
public static float getCoordinate(Vec3 vec, Axis axis) {
return (float) axis.choose(vec.x, vec.y, vec.z);
}
public static boolean onSameAxis(BlockPos pos1, BlockPos pos2, Axis axis) {
if (pos1.equals(pos2))
return true;
for (Axis otherAxis : Axis.values())
if (axis != otherAxis)
if (getCoordinate(pos1, otherAxis) != getCoordinate(pos2, otherAxis))
return false;
return true;
}
public static Vec3 clamp(Vec3 vec, float maxLength) {
return vec.lengthSqr() > maxLength * maxLength ? vec.normalize()
.scale(maxLength) : vec;
}
public static Vec3 lerp(float p, Vec3 from, Vec3 to) {
return from.add(to.subtract(from)
.scale(p));
}
public static Vec3 slerp(float p, Vec3 from, Vec3 to) {
double theta = Math.acos(from.dot(to));
return from.scale(Mth.sin(1 - p) * theta)
.add(to.scale(Mth.sin((float) (theta * p))))
.scale(1 / Mth.sin((float) theta));
}
public static Vec3 clampComponentWise(Vec3 vec, float maxLength) {
return new Vec3(Mth.clamp(vec.x, -maxLength, maxLength), Mth.clamp(vec.y, -maxLength, maxLength),
Mth.clamp(vec.z, -maxLength, maxLength));
}
public static Vec3 componentMin(Vec3 vec1, Vec3 vec2) {
return new Vec3(Math.min(vec1.x, vec2.x), Math.min(vec1.y, vec2.y), Math.min(vec1.z, vec2.z));
}
public static Vec3 componentMax(Vec3 vec1, Vec3 vec2) {
return new Vec3(Math.max(vec1.x, vec2.x), Math.max(vec1.y, vec2.y), Math.max(vec1.z, vec2.z));
}
public static Vec3 project(Vec3 vec, Vec3 ontoVec) {
if (ontoVec.equals(Vec3.ZERO))
return Vec3.ZERO;
return ontoVec.scale(vec.dot(ontoVec) / ontoVec.lengthSqr());
}
@Nullable
public static Vec3 intersectSphere(Vec3 origin, Vec3 lineDirection, Vec3 sphereCenter, double radius) {
if (lineDirection.equals(Vec3.ZERO))
return null;
if (lineDirection.lengthSqr() != 1)
lineDirection = lineDirection.normalize();
Vec3 diff = origin.subtract(sphereCenter);
double lineDotDiff = lineDirection.dot(diff);
double delta = lineDotDiff * lineDotDiff - (diff.lengthSqr() - radius * radius);
if (delta < 0)
return null;
double t = -lineDotDiff + Math.sqrt(delta);
return origin.add(lineDirection.scale(t));
}
// https://forums.minecraftforge.net/topic/88562-116solved-3d-to-2d-conversion/?do=findComment&comment=413573
// slightly modified
public static Vec3 projectToPlayerView(Vec3 target, float partialTicks) {
/*
* The (centered) location on the screen of the given 3d point in the world.
* Result is (dist right of center screen, dist up from center screen, if < 0,
* then in front of view plane)
*/
Camera ari = Minecraft.getInstance().gameRenderer.getMainCamera();
Vec3 camera_pos = ari.getPosition();
Quaternion camera_rotation_conj = ari.rotation()
.copy();
camera_rotation_conj.conj();
Vector3f result3f = new Vector3f((float) (camera_pos.x - target.x), (float) (camera_pos.y - target.y),
(float) (camera_pos.z - target.z));
result3f.transform(camera_rotation_conj);
// ----- compensate for view bobbing (if active) -----
// the following code adapted from GameRenderer::applyBobbing (to invert it)
Minecraft mc = Minecraft.getInstance();
if (mc.options.bobView) {
Entity renderViewEntity = mc.getCameraEntity();
if (renderViewEntity instanceof Player) {
Player playerentity = (Player) renderViewEntity;
float distwalked_modified = playerentity.walkDist;
float f = distwalked_modified - playerentity.walkDistO;
float f1 = -(distwalked_modified + f * partialTicks);
float f2 = Mth.lerp(partialTicks, playerentity.oBob, playerentity.bob);
Quaternion q2 =
new Quaternion(Vector3f.XP, Math.abs(Mth.cos(f1 * (float) Math.PI - 0.2F) * f2) * 5.0F, true);
q2.conj();
result3f.transform(q2);
Quaternion q1 = new Quaternion(Vector3f.ZP, Mth.sin(f1 * (float) Math.PI) * f2 * 3.0F, true);
q1.conj();
result3f.transform(q1);
Vector3f bob_translation = new Vector3f((Mth.sin(f1 * (float) Math.PI) * f2 * 0.5F),
(-Math.abs(Mth.cos(f1 * (float) Math.PI) * f2)), 0.0f);
bob_translation.setY(-bob_translation.y()); // this is weird but hey, if it works
result3f.add(bob_translation);
}
}
// ----- adjust for fov -----
float fov = (float) ((GameRendererAccessor) mc.gameRenderer).create$callGetFov(ari, partialTicks, true);
float half_height = (float) mc.getWindow()
.getGuiScaledHeight() / 2;
float scale_factor = half_height / (result3f.z() * (float) Math.tan(Math.toRadians(fov / 2)));
return new Vec3(-result3f.x() * scale_factor, result3f.y() * scale_factor, result3f.z());
}
public static Vec3 bezier(Vec3 p1, Vec3 p2, Vec3 q1, Vec3 q2, float t) {
Vec3 v1 = lerp(t, p1, q1);
Vec3 v2 = lerp(t, q1, q2);
Vec3 v3 = lerp(t, q2, p2);
Vec3 inner1 = lerp(t, v1, v2);
Vec3 inner2 = lerp(t, v2, v3);
Vec3 result = lerp(t, inner1, inner2);
return result;
}
public static Vec3 bezierDerivative(Vec3 p1, Vec3 p2, Vec3 q1, Vec3 q2, float t) {
return p1.scale(-3 * t * t + 6 * t - 3)
.add(q1.scale(9 * t * t - 12 * t + 3))
.add(q2.scale(-9 * t * t + 6 * t))
.add(p2.scale(3 * t * t));
}
@Nullable
public static double[] intersectRanged(Vec3 p1, Vec3 q1, Vec3 p2, Vec3 q2, Axis plane) {
Vec3 pDiff = p2.subtract(p1);
Vec3 qDiff = q2.subtract(q1);
double[] intersect = intersect(p1, q1, pDiff.normalize(), qDiff.normalize(), plane);
if (intersect == null)
return null;
if (intersect[0] < 0 || intersect[1] < 0)
return null;
if (intersect[0] * intersect[0] > pDiff.lengthSqr() || intersect[1] * intersect[1] > qDiff.lengthSqr())
return null;
return intersect;
}
@Nullable
public static double[] intersect(Vec3 p1, Vec3 p2, Vec3 r, Vec3 s, Axis plane) {
if (plane == Axis.X) {
p1 = new Vec3(p1.y, 0, p1.z);
p2 = new Vec3(p2.y, 0, p2.z);
r = new Vec3(r.y, 0, r.z);
s = new Vec3(s.y, 0, s.z);
}
if (plane == Axis.Z) {
p1 = new Vec3(p1.x, 0, p1.y);
p2 = new Vec3(p2.x, 0, p2.y);
r = new Vec3(r.x, 0, r.y);
s = new Vec3(s.x, 0, s.y);
}
Vec3 qminusp = p2.subtract(p1);
double rcs = r.x * s.z - r.z * s.x;
if (Mth.equal(rcs, 0))
return null;
Vec3 rdivrcs = r.scale(1 / rcs);
Vec3 sdivrcs = s.scale(1 / rcs);
double t = qminusp.x * sdivrcs.z - qminusp.z * sdivrcs.x;
double u = qminusp.x * rdivrcs.z - qminusp.z * rdivrcs.x;
return new double[] { t, u };
}
}