2020-04-15 14:22:03 +02:00
|
|
|
package com.minelittlepony.unicopia.util;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
|
|
|
import java.util.List;
|
2020-01-16 12:35:46 +01:00
|
|
|
import java.util.function.Predicate;
|
2021-08-04 15:38:03 +02:00
|
|
|
import org.jetbrains.annotations.Nullable;
|
2018-09-16 00:45:44 +02:00
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
import net.minecraft.entity.Entity;
|
2020-01-16 12:35:46 +01:00
|
|
|
import net.minecraft.util.math.Box;
|
2018-09-12 01:29:49 +02:00
|
|
|
import net.minecraft.util.math.Vec3d;
|
2019-01-20 00:07:59 +01:00
|
|
|
import net.minecraft.world.World;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2020-04-15 19:06:45 +02:00
|
|
|
public interface VecHelper {
|
2019-01-20 00:07:59 +01:00
|
|
|
|
2021-01-29 17:37:41 +01:00
|
|
|
static Predicate<Entity> inRange(Vec3d center, double range) {
|
2020-10-04 12:58:01 +02:00
|
|
|
double rad = Math.pow(range, 2);
|
|
|
|
return e -> {
|
2021-01-29 17:37:41 +01:00
|
|
|
return e.squaredDistanceTo(center) <= rad
|
|
|
|
|| e.squaredDistanceTo(center.getX(), center.getY() - e.getStandingEyeHeight(), center.getZ()) <= rad;
|
2020-10-04 12:58:01 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-01-29 17:37:41 +01:00
|
|
|
static List<Entity> findInRange(@Nullable Entity origin, World w, Vec3d pos, double radius, @Nullable Predicate<Entity> predicate) {
|
2021-08-04 15:38:03 +02:00
|
|
|
double diameter = radius * 2;
|
|
|
|
return w.getOtherEntities(origin, Box.of(pos, diameter, diameter, diameter), predicate == null ? inRange(pos, radius) : inRange(pos, radius).and(predicate));
|
2019-01-20 00:07:59 +01:00
|
|
|
}
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|