mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
55 lines
1.9 KiB
Java
55 lines
1.9 KiB
Java
package com.minelittlepony.unicopia.util;
|
|
|
|
import java.util.List;
|
|
import java.util.function.DoubleSupplier;
|
|
import java.util.function.Predicate;
|
|
import java.util.function.Supplier;
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.util.math.Box;
|
|
import net.minecraft.util.math.Vec3d;
|
|
import net.minecraft.util.math.random.Random;
|
|
import net.minecraft.world.EntityView;
|
|
|
|
public interface VecHelper {
|
|
|
|
static Vec3d divide(Vec3d one, Vec3d two) {
|
|
return new Vec3d(one.x / two.x, one.y / two.y, one.z / two.z);
|
|
}
|
|
|
|
static Vec3d supply(DoubleSupplier rng) {
|
|
return new Vec3d(rng.getAsDouble(), rng.getAsDouble(), rng.getAsDouble());
|
|
}
|
|
|
|
static Supplier<Vec3d> supplier(DoubleSupplier rng) {
|
|
return () -> supply(rng);
|
|
}
|
|
|
|
static Supplier<Vec3d> sphere(Random rng) {
|
|
return sphere(rng, 1);
|
|
}
|
|
|
|
static Supplier<Vec3d> sphere(Random rng, double radius) {
|
|
return supplier(() -> (rng.nextGaussian() - 0.5) * radius);
|
|
}
|
|
|
|
static Predicate<Entity> inRange(Vec3d center, double range) {
|
|
double rad = Math.pow(range, 2);
|
|
return e -> {
|
|
return e.squaredDistanceTo(center) <= rad
|
|
|| e.squaredDistanceTo(center.getX(), center.getY() - e.getStandingEyeHeight(), center.getZ()) <= rad;
|
|
};
|
|
}
|
|
|
|
static List<Entity> findInRange(@Nullable Entity origin, EntityView w, Vec3d pos, double radius, @Nullable Predicate<Entity> predicate) {
|
|
double diameter = radius * 2;
|
|
return w.getOtherEntities(origin, Box.of(pos, diameter, diameter, diameter), predicate == null ? inRange(pos, radius) : inRange(pos, radius).and(predicate));
|
|
}
|
|
|
|
static List<Entity> findInRange(@Nullable Entity origin, EntityView w, Vec3d pos, double radius) {
|
|
double diameter = radius * 2;
|
|
return w.getOtherEntities(origin, Box.of(pos, diameter, diameter, diameter), inRange(pos, radius));
|
|
}
|
|
}
|