2020-07-15 22:44:49 +00:00
|
|
|
package com.thebrokenrail.energonrelics.block.entity;
|
|
|
|
|
|
|
|
import com.thebrokenrail.energonrelics.Config;
|
|
|
|
import com.thebrokenrail.energonrelics.EnergonRelics;
|
|
|
|
import com.thebrokenrail.energonrelics.block.DefensiveLaserBlock;
|
|
|
|
import com.thebrokenrail.energonrelics.energy.core.EnergyReceiverBlockEntity;
|
|
|
|
import com.thebrokenrail.energonrelics.energy.core.util.Action;
|
|
|
|
import net.minecraft.block.BlockState;
|
|
|
|
import net.minecraft.block.entity.BlockEntityType;
|
2020-07-17 00:13:45 +00:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.ItemEntity;
|
2020-07-15 22:44:49 +00:00
|
|
|
import net.minecraft.entity.LivingEntity;
|
2020-07-17 00:13:45 +00:00
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2020-07-15 22:44:49 +00:00
|
|
|
import net.minecraft.nbt.CompoundTag;
|
|
|
|
import net.minecraft.particle.ParticleTypes;
|
|
|
|
import net.minecraft.server.world.ServerWorld;
|
|
|
|
import net.minecraft.util.hit.HitResult;
|
2020-07-17 01:42:15 +00:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2020-07-15 22:44:49 +00:00
|
|
|
import net.minecraft.util.math.Box;
|
|
|
|
import net.minecraft.util.math.MathHelper;
|
|
|
|
import net.minecraft.util.math.Vec3d;
|
|
|
|
import net.minecraft.world.RayTraceContext;
|
2020-07-17 01:42:15 +00:00
|
|
|
import net.minecraft.world.World;
|
2020-07-17 00:13:45 +00:00
|
|
|
import net.minecraft.world.explosion.Explosion;
|
2020-07-15 22:44:49 +00:00
|
|
|
|
2020-07-17 00:13:45 +00:00
|
|
|
import java.util.Comparator;
|
2020-07-15 22:44:49 +00:00
|
|
|
import java.util.List;
|
2020-07-17 00:13:45 +00:00
|
|
|
import java.util.Objects;
|
2020-07-15 22:44:49 +00:00
|
|
|
import java.util.Optional;
|
|
|
|
import java.util.function.Predicate;
|
|
|
|
|
|
|
|
public class DefensiveLaserBlockEntity extends EnergyReceiverBlockEntity {
|
2020-07-17 00:13:45 +00:00
|
|
|
private static final float ROTATION_INCREMENT = 4;
|
2020-07-15 22:44:49 +00:00
|
|
|
|
|
|
|
public final Rotation rotation = new Rotation(0, 0, "Rotation");
|
|
|
|
|
2020-07-17 01:42:15 +00:00
|
|
|
private static Vec3d getPosVec(BlockPos pos) {
|
|
|
|
return new Vec3d(pos.getX() + 0.5d, pos.getY() + 0.5d, pos.getZ() + 0.5d);
|
|
|
|
}
|
|
|
|
|
2020-07-15 22:44:49 +00:00
|
|
|
private Vec3d getPosVec() {
|
2020-07-17 01:42:15 +00:00
|
|
|
return getPosVec(getPos());
|
2020-07-15 22:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public BlockState getCachedState() {
|
|
|
|
if (hasWorld()) {
|
|
|
|
return super.getCachedState();
|
|
|
|
} else {
|
|
|
|
return EnergonRelics.DEFENSIVE_LASER_BLOCK.getDefaultState();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class Rotation {
|
|
|
|
private float yaw = 0;
|
|
|
|
private float pitch = 0;
|
|
|
|
private final String key;
|
|
|
|
|
|
|
|
private Rotation(float yaw, float pitch, String key) {
|
|
|
|
setRaw(yaw, pitch);
|
|
|
|
this.key = key;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void fromTag(CompoundTag tag) {
|
|
|
|
CompoundTag rotation = tag.getCompound(key);
|
|
|
|
setRaw(rotation.getInt("Yaw"), rotation.getInt("Pitch"));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void toTag(CompoundTag tag) {
|
|
|
|
CompoundTag rotation = new CompoundTag();
|
|
|
|
rotation.putFloat("Yaw", yaw);
|
|
|
|
rotation.putFloat("Pitch", pitch);
|
|
|
|
tag.put(key, rotation);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setRaw(float yaw, float pitch) {
|
|
|
|
setYaw(yaw);
|
|
|
|
setPitch(pitch);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setYaw(float yaw) {
|
|
|
|
this.yaw = yaw % 360;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setPitch(float pitch) {
|
2020-07-16 18:50:18 +00:00
|
|
|
this.pitch = pitch % 360;
|
2020-07-15 22:44:49 +00:00
|
|
|
}
|
|
|
|
|
2020-07-16 18:50:18 +00:00
|
|
|
public float getYaw() {
|
|
|
|
return yaw;
|
2020-07-15 22:44:49 +00:00
|
|
|
}
|
|
|
|
|
2020-07-16 18:50:18 +00:00
|
|
|
public float getPitch() {
|
|
|
|
return pitch;
|
2020-07-15 22:44:49 +00:00
|
|
|
}
|
|
|
|
|
2020-07-16 18:50:18 +00:00
|
|
|
private void change(float diffYaw, float diffPitch) {
|
|
|
|
setRaw(yaw + diffYaw, pitch + diffPitch);
|
|
|
|
markDirty();
|
2020-07-15 22:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private Vec3d getRayVector() {
|
2020-07-17 00:13:45 +00:00
|
|
|
return DefensiveLaserBlockEntity.getRayVector(yaw, pitch);
|
2020-07-15 22:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private float getAngleChange(float from, float to) {
|
|
|
|
float diff = MathHelper.subtractAngles(from, to);
|
|
|
|
return MathHelper.clamp(diff, -ROTATION_INCREMENT, ROTATION_INCREMENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void target(float targetYaw, float targetPitch) {
|
2020-07-16 18:50:18 +00:00
|
|
|
float yawChange = getAngleChange(yaw, targetYaw);
|
|
|
|
float pitchChange = getAngleChange(pitch, targetPitch);
|
2020-07-15 22:44:49 +00:00
|
|
|
change(yawChange, pitchChange);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-17 00:13:45 +00:00
|
|
|
private static Vec3d getRayVector(float yaw, float pitch) {
|
|
|
|
float pitchRad = pitch * (float) DEG2RAD;
|
|
|
|
float yawRad = yaw * (float) DEG2RAD;
|
|
|
|
float cosYaw = MathHelper.cos(yawRad);
|
|
|
|
float sinYaw = MathHelper.sin(yawRad);
|
|
|
|
float cosPitch = MathHelper.cos(pitchRad);
|
|
|
|
float sinPitch = MathHelper.sin(pitchRad);
|
|
|
|
return new Vec3d(sinYaw * cosPitch, -sinPitch, cosYaw * cosPitch);
|
|
|
|
}
|
|
|
|
|
2020-07-15 22:44:49 +00:00
|
|
|
public DefensiveLaserBlockEntity(BlockEntityType<?> type) {
|
|
|
|
super(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static final double DEG2RAD = Math.PI / 180d;
|
|
|
|
private static final double RAD2DEG = 180d / Math.PI;
|
|
|
|
|
2020-07-17 00:13:45 +00:00
|
|
|
private float getTargetPitch(Vec3d targetPos) {
|
2020-07-15 22:44:49 +00:00
|
|
|
Vec3d pos = getPosVec();
|
2020-07-17 00:13:45 +00:00
|
|
|
double diffX = targetPos.getX() - pos.getX();
|
|
|
|
double diffY = targetPos.getY() - pos.getY();
|
|
|
|
double diffZ = targetPos.getZ() - pos.getZ();
|
2020-07-15 22:44:49 +00:00
|
|
|
double g = MathHelper.sqrt(diffX * diffX + diffZ * diffZ);
|
|
|
|
return (float) -(MathHelper.atan2(diffY, g) * RAD2DEG);
|
|
|
|
}
|
|
|
|
|
2020-07-17 00:13:45 +00:00
|
|
|
private float getTargetYaw(Vec3d targetPos) {
|
2020-07-15 22:44:49 +00:00
|
|
|
Vec3d pos = getPosVec();
|
2020-07-17 00:13:45 +00:00
|
|
|
double diffX = targetPos.getX() - pos.getX();
|
|
|
|
double diffZ = targetPos.getZ() - pos.getZ();
|
|
|
|
return -((float) (MathHelper.atan2(diffZ, diffX) * RAD2DEG) - 90.0F);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static final int COUNTDOWN = 28;
|
|
|
|
|
|
|
|
private LivingEntity target;
|
|
|
|
private int countdown = 0;
|
|
|
|
|
|
|
|
private boolean firing = false;
|
|
|
|
|
|
|
|
private Predicate<LivingEntity> getTargetPredicate(boolean useCurrentRotation) {
|
|
|
|
return entity -> {
|
|
|
|
if (entity.isAlive() && (!(entity instanceof PlayerEntity) || !((PlayerEntity) entity).isCreative()) && !entity.isInvisible() && entity.getPos().distanceTo(getPosVec()) <= Config.DEFENSIVE_LASER_RANGE) {
|
|
|
|
Vec3d entityPos = entity.getPos();
|
|
|
|
Vec3d start;
|
|
|
|
if (useCurrentRotation) {
|
|
|
|
start = rotation.getRayVector().add(getPosVec());
|
|
|
|
} else {
|
|
|
|
start = getRayVector(getTargetYaw(entityPos), getTargetPitch(entityPos)).add(getPosVec());
|
|
|
|
}
|
|
|
|
HitResult result = entity.getEntityWorld().rayTrace(new RayTraceContext(start, entityPos, RayTraceContext.ShapeType.COLLIDER, RayTraceContext.FluidHandling.ANY, getDummyEntity()));
|
|
|
|
return result.getType() == HitResult.Type.MISS;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
private List<LivingEntity> getEntities(Predicate<LivingEntity> predicate) {
|
|
|
|
return Objects.requireNonNull(getWorld()).getEntities(LivingEntity.class, new Box(getPos()).expand(Config.DEFENSIVE_LASER_RANGE), predicate);
|
|
|
|
}
|
|
|
|
|
|
|
|
private Entity getDummyEntity() {
|
|
|
|
Vec3d posVec = getPosVec();
|
|
|
|
return new ItemEntity(getWorld(), posVec.getX(), posVec.getY(), posVec.getZ());
|
2020-07-15 22:44:49 +00:00
|
|
|
}
|
|
|
|
|
2020-07-17 01:42:15 +00:00
|
|
|
private void fire(World world, BlockPos pos) {
|
|
|
|
List<LivingEntity> entities = getEntities(entity -> true);
|
|
|
|
Vec3d posVec = getPosVec(pos);
|
|
|
|
Vec3d collision = null;
|
|
|
|
for (LivingEntity entity : entities) {
|
|
|
|
Optional<Vec3d> optional = entity.getBoundingBox().rayTrace(posVec, posVec.add(rotation.getRayVector().multiply(Config.DEFENSIVE_LASER_RANGE)));
|
|
|
|
if (optional.isPresent()) {
|
|
|
|
Vec3d vec = optional.get();
|
|
|
|
if (collision == null || vec.distanceTo(posVec) < collision.distanceTo(posVec)) {
|
|
|
|
collision = optional.get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Vec3d rotationVec = rotation.getRayVector();
|
|
|
|
Vec3d start = rotationVec.add(posVec);
|
|
|
|
Vec3d end = rotationVec.multiply(Config.DEFENSIVE_LASER_RANGE).add(posVec);
|
|
|
|
HitResult result = world.rayTrace(new RayTraceContext(start, end, RayTraceContext.ShapeType.COLLIDER, RayTraceContext.FluidHandling.ANY, getDummyEntity()));
|
|
|
|
if (result.getType() != HitResult.Type.MISS && (collision == null || result.getPos().distanceTo(posVec) < collision.distanceTo(posVec))) {
|
|
|
|
collision = result.getPos();
|
|
|
|
}
|
|
|
|
|
|
|
|
double distance;
|
|
|
|
if (collision != null) {
|
|
|
|
world.createExplosion(null, collision.getX(), collision.getY(), collision.getZ(), 3, Explosion.DestructionType.NONE);
|
|
|
|
|
|
|
|
distance = posVec.distanceTo(collision);
|
|
|
|
} else {
|
|
|
|
distance = Config.DEFENSIVE_LASER_RANGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
double multiplier = 6d;
|
|
|
|
distance = distance * multiplier;
|
|
|
|
for (int i = 0; i < distance; i++) {
|
|
|
|
Vec3d vec = rotationVec.multiply(i / multiplier).add(posVec);
|
|
|
|
((ServerWorld) world).spawnParticles(ParticleTypes.END_ROD, vec.getX(), vec.getY(), vec.getZ(), 1, 0, 0, 0, 0.25f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 22:44:49 +00:00
|
|
|
@Override
|
|
|
|
protected void tickEnergy() {
|
|
|
|
assert getWorld() != null;
|
|
|
|
addAction(Action.createBlockStatePropertyAction(Config.DEFENSIVE_LASER_IDLE_ENERGY_REQUIRED, DefensiveLaserBlock.POWERED, true, false));
|
|
|
|
if (getCachedState().get(DefensiveLaserBlock.POWERED)) {
|
|
|
|
if (countdown > 0) {
|
|
|
|
countdown--;
|
|
|
|
}
|
|
|
|
if (countdown == 1) {
|
2020-07-17 00:13:45 +00:00
|
|
|
addAction(new Action(Config.DEFENSIVE_LASER_FIRE_ENERGY_REQUIRED, (world, pos, state) -> {
|
|
|
|
firing = false;
|
2020-07-17 01:42:15 +00:00
|
|
|
fire(world, pos);
|
2020-07-17 00:13:45 +00:00
|
|
|
}, (world, pos, state) -> firing = false));
|
2020-07-15 22:44:49 +00:00
|
|
|
target = null;
|
2020-07-17 00:13:45 +00:00
|
|
|
firing = true;
|
|
|
|
} else if (countdown < 1 && !firing) {
|
2020-07-15 22:44:49 +00:00
|
|
|
if (target == null) {
|
2020-07-17 00:13:45 +00:00
|
|
|
List<LivingEntity> entities = getEntities(getTargetPredicate(false));
|
2020-07-15 22:44:49 +00:00
|
|
|
if (entities.size() > 0) {
|
2020-07-17 00:13:45 +00:00
|
|
|
Vec3d posVec = getPosVec();
|
|
|
|
entities.sort(Comparator.comparingDouble(entity -> entity.getPos().distanceTo(posVec)));
|
2020-07-15 22:44:49 +00:00
|
|
|
target = entities.get(0);
|
|
|
|
}
|
|
|
|
} else {
|
2020-07-17 00:13:45 +00:00
|
|
|
if (getTargetPredicate(false).test(target)) {
|
2020-07-15 22:44:49 +00:00
|
|
|
Optional<Vec3d> optional = target.getBoundingBox().rayTrace(getPosVec(), getPosVec().add(rotation.getRayVector().multiply(Config.DEFENSIVE_LASER_RANGE)));
|
2020-07-17 00:13:45 +00:00
|
|
|
if (optional.isPresent() && getTargetPredicate(true).test(target)) {
|
2020-07-15 22:44:49 +00:00
|
|
|
countdown = COUNTDOWN;
|
|
|
|
} else {
|
|
|
|
Vec3d targetPos = target.getPos();
|
2020-07-17 00:13:45 +00:00
|
|
|
float targetYaw = getTargetYaw(targetPos);
|
|
|
|
float targetPitch = getTargetPitch(targetPos);
|
2020-07-15 22:44:49 +00:00
|
|
|
rotation.target(targetYaw, targetPitch);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
target = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public CompoundTag toTag(CompoundTag tag) {
|
|
|
|
super.toTag(tag);
|
|
|
|
rotation.toTag(tag);
|
|
|
|
tag.putInt("Countdown", countdown);
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void fromTag(BlockState state, CompoundTag tag) {
|
|
|
|
super.fromTag(state, tag);
|
|
|
|
rotation.fromTag(tag);
|
|
|
|
countdown = tag.getInt("Countdown");
|
2020-07-17 00:13:45 +00:00
|
|
|
firing = false;
|
2020-07-15 22:44:49 +00:00
|
|
|
}
|
|
|
|
}
|