367 lines
14 KiB
Java
367 lines
14 KiB
Java
package com.atsuishio.superbwarfare.entity.projectile;
|
|
|
|
import com.atsuishio.superbwarfare.Mod;
|
|
import com.atsuishio.superbwarfare.config.server.ExplosionConfig;
|
|
import com.atsuishio.superbwarfare.entity.vehicle.base.VehicleEntity;
|
|
import com.atsuishio.superbwarfare.entity.vehicle.damage.DamageModifier;
|
|
import com.atsuishio.superbwarfare.init.*;
|
|
import com.atsuishio.superbwarfare.network.message.receive.ClientIndicatorMessage;
|
|
import com.atsuishio.superbwarfare.tools.*;
|
|
import net.minecraft.core.BlockPos;
|
|
import net.minecraft.core.particles.ParticleTypes;
|
|
import net.minecraft.nbt.CompoundTag;
|
|
import net.minecraft.nbt.ListTag;
|
|
import net.minecraft.network.syncher.EntityDataAccessor;
|
|
import net.minecraft.network.syncher.EntityDataSerializers;
|
|
import net.minecraft.network.syncher.SynchedEntityData;
|
|
import net.minecraft.server.level.ServerLevel;
|
|
import net.minecraft.server.level.ServerPlayer;
|
|
import net.minecraft.sounds.SoundEvent;
|
|
import net.minecraft.sounds.SoundEvents;
|
|
import net.minecraft.sounds.SoundSource;
|
|
import net.minecraft.util.Mth;
|
|
import net.minecraft.world.damagesource.DamageSource;
|
|
import net.minecraft.world.entity.Entity;
|
|
import net.minecraft.world.entity.EntityType;
|
|
import net.minecraft.world.entity.LivingEntity;
|
|
import net.minecraft.world.entity.animal.Pig;
|
|
import net.minecraft.world.entity.boss.enderdragon.EnderDragon;
|
|
import net.minecraft.world.item.Item;
|
|
import net.minecraft.world.level.Explosion;
|
|
import net.minecraft.world.level.Level;
|
|
import net.minecraft.world.phys.BlockHitResult;
|
|
import net.minecraft.world.phys.EntityHitResult;
|
|
import net.minecraft.world.phys.Vec3;
|
|
import net.neoforged.neoforge.event.EventHooks;
|
|
import net.neoforged.neoforge.network.PacketDistributor;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.joml.Math;
|
|
import software.bernie.geckolib.animatable.GeoEntity;
|
|
import software.bernie.geckolib.animatable.instance.AnimatableInstanceCache;
|
|
import software.bernie.geckolib.animation.*;
|
|
import software.bernie.geckolib.util.GeckoLibUtil;
|
|
|
|
import java.util.HashSet;
|
|
import java.util.List;
|
|
import java.util.Set;
|
|
|
|
public class Agm65Entity extends FastThrowableProjectile implements GeoEntity, ExplosiveProjectile {
|
|
|
|
public static final EntityDataAccessor<Float> HEALTH = SynchedEntityData.defineId(Agm65Entity.class, EntityDataSerializers.FLOAT);
|
|
public static final EntityDataAccessor<String> TARGET_UUID = SynchedEntityData.defineId(Agm65Entity.class, EntityDataSerializers.STRING);
|
|
private final AnimatableInstanceCache cache = GeckoLibUtil.createInstanceCache(this);
|
|
|
|
public Set<Long> loadedChunks = new HashSet<>();
|
|
|
|
private float damage = ExplosionConfig.AGM_65_DAMAGE.get();
|
|
private float explosionDamage = ExplosionConfig.AGM_65_EXPLOSION_DAMAGE.get();
|
|
private float explosionRadius = ExplosionConfig.AGM_65_EXPLOSION_RADIUS.get().floatValue();
|
|
private boolean distracted = false;
|
|
private int durability;
|
|
|
|
public Agm65Entity(EntityType<? extends Agm65Entity> type, Level world) {
|
|
super(type, world);
|
|
this.noCulling = true;
|
|
this.durability = 25;
|
|
}
|
|
|
|
public Agm65Entity(LivingEntity entity, Level level) {
|
|
super(ModEntities.AGM_65.get(), entity, level);
|
|
this.noCulling = true;
|
|
|
|
this.durability = 25;
|
|
}
|
|
|
|
public void setTargetUuid(String uuid) {
|
|
this.entityData.set(TARGET_UUID, uuid);
|
|
}
|
|
|
|
@Override
|
|
protected @NotNull Item getDefaultItem() {
|
|
return ModItems.AGM.get();
|
|
}
|
|
|
|
|
|
private static final DamageModifier DAMAGE_MODIFIER = DamageModifier.createDefaultModifier();
|
|
|
|
@Override
|
|
public boolean hurt(@NotNull DamageSource source, float amount) {
|
|
amount = DAMAGE_MODIFIER.compute(source, amount);
|
|
this.entityData.set(HEALTH, this.entityData.get(HEALTH) - amount);
|
|
|
|
return super.hurt(source, amount);
|
|
}
|
|
|
|
@Override
|
|
protected void defineSynchedData(SynchedEntityData.@NotNull Builder builder) {
|
|
super.defineSynchedData(builder);
|
|
|
|
builder.define(HEALTH, 30f)
|
|
.define(TARGET_UUID, "none");
|
|
}
|
|
|
|
@Override
|
|
public boolean isPickable() {
|
|
return !this.isRemoved();
|
|
}
|
|
|
|
@Override
|
|
public void readAdditionalSaveData(@NotNull CompoundTag compound) {
|
|
super.readAdditionalSaveData(compound);
|
|
if (compound.contains("Health")) {
|
|
this.entityData.set(HEALTH, compound.getFloat("Health"));
|
|
}
|
|
if (compound.contains("Damage")) {
|
|
this.damage = compound.getFloat("Damage");
|
|
}
|
|
if (compound.contains("ExplosionDamage")) {
|
|
this.explosionDamage = compound.getFloat("ExplosionDamage");
|
|
}
|
|
if (compound.contains("Radius")) {
|
|
this.explosionRadius = compound.getFloat("Radius");
|
|
}
|
|
if (compound.contains("Durability")) {
|
|
this.durability = compound.getInt("Durability");
|
|
}
|
|
|
|
if (compound.contains("Chunks")) {
|
|
ListTag listTag = compound.getList("Chunks", 10);
|
|
for (int i = 0; i < listTag.size(); i++) {
|
|
CompoundTag tag = listTag.getCompound(i);
|
|
this.loadedChunks.add(tag.getLong("Pos"));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void addAdditionalSaveData(@NotNull CompoundTag compound) {
|
|
super.addAdditionalSaveData(compound);
|
|
compound.putFloat("Health", this.entityData.get(HEALTH));
|
|
compound.putFloat("Damage", this.damage);
|
|
compound.putFloat("ExplosionDamage", this.explosionDamage);
|
|
compound.putFloat("Radius", this.explosionRadius);
|
|
compound.putInt("Durability", this.durability);
|
|
|
|
ListTag listTag = new ListTag();
|
|
for (long chunkPos : this.loadedChunks) {
|
|
CompoundTag tag = new CompoundTag();
|
|
tag.putLong("Pos", chunkPos);
|
|
listTag.add(tag);
|
|
}
|
|
compound.put("Chunks", listTag);
|
|
}
|
|
|
|
@Override
|
|
public boolean shouldRenderAtSqrDistance(double pDistance) {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
protected void onHitEntity(EntityHitResult result) {
|
|
Entity entity = result.getEntity();
|
|
if (entity == this.getOwner() || (this.getOwner() != null && entity == this.getOwner().getVehicle()))
|
|
return;
|
|
if (this.level() instanceof ServerLevel) {
|
|
if (this.getOwner() instanceof LivingEntity living) {
|
|
if (!living.level().isClientSide() && living instanceof ServerPlayer player) {
|
|
living.level().playSound(null, living.blockPosition(), ModSounds.INDICATION.get(), SoundSource.VOICE, 1, 1);
|
|
|
|
PacketDistributor.sendToPlayer(player, new ClientIndicatorMessage(0, 5));
|
|
}
|
|
}
|
|
|
|
entity.hurt(ModDamageTypes.causeCannonFireDamage(this.level().registryAccess(), this, this.getOwner()), this.damage);
|
|
|
|
if (entity instanceof LivingEntity) {
|
|
entity.invulnerableTime = 0;
|
|
}
|
|
|
|
causeExplode(result.getLocation());
|
|
|
|
discard();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onHitBlock(@NotNull BlockHitResult blockHitResult) {
|
|
if (this.level() instanceof ServerLevel) {
|
|
BlockPos resultPos = blockHitResult.getBlockPos();
|
|
float hardness = this.level().getBlockState(resultPos).getBlock().defaultDestroyTime();
|
|
if (hardness != -1) {
|
|
if (ExplosionConfig.EXPLOSION_DESTROY.get()) {
|
|
if (firstHit) {
|
|
causeExplode(blockHitResult.getLocation());
|
|
firstHit = false;
|
|
Mod.queueServerWork(3, this::discard);
|
|
}
|
|
this.level().destroyBlock(resultPos, true);
|
|
}
|
|
}
|
|
if (!ExplosionConfig.EXPLOSION_DESTROY.get()) {
|
|
causeExplode(blockHitResult.getLocation());
|
|
this.discard();
|
|
}
|
|
}
|
|
}
|
|
|
|
private void causeExplode(Vec3 vec3) {
|
|
CustomExplosion explosion = new CustomExplosion(this.level(), this,
|
|
ModDamageTypes.causeProjectileBoomDamage(this.level().registryAccess(),
|
|
this,
|
|
this.getOwner()),
|
|
explosionDamage,
|
|
vec3.x,
|
|
vec3.y,
|
|
vec3.z,
|
|
explosionRadius,
|
|
ExplosionConfig.EXPLOSION_DESTROY.get() ? Explosion.BlockInteraction.DESTROY : Explosion.BlockInteraction.KEEP, true).
|
|
setDamageMultiplier(1);
|
|
explosion.explode();
|
|
EventHooks.onExplosionStart(this.level(), explosion);
|
|
explosion.finalizeExplosion(false);
|
|
ParticleTool.spawnHugeExplosionParticles(this.level(), vec3);
|
|
}
|
|
|
|
@Override
|
|
public void tick() {
|
|
super.tick();
|
|
|
|
if (this.level() instanceof ServerLevel serverLevel && tickCount > 1) {
|
|
double l = getDeltaMovement().length();
|
|
for (double i = 0; i < l; i++) {
|
|
Vec3 startPos = new Vec3(this.xo, this.yo, this.zo);
|
|
Vec3 pos = startPos.add(getDeltaMovement().normalize().scale(-i));
|
|
ParticleTool.sendParticle(serverLevel, ParticleTypes.CAMPFIRE_COSY_SMOKE, pos.x, pos.y, pos.z,
|
|
1, 0, 0, 0, 0.001, true);
|
|
}
|
|
// 更新需要加载的区块
|
|
ChunkLoadTool.updateLoadedChunks(serverLevel, this, this.loadedChunks);
|
|
}
|
|
|
|
|
|
Entity entity = EntityFindUtil.findEntity(this.level(), entityData.get(TARGET_UUID));
|
|
List<Entity> decoy = SeekTool.seekLivingEntities(this, this.level(), 32, 90);
|
|
|
|
for (var e : decoy) {
|
|
if (e.getType().is(ModTags.EntityTypes.DECOY) && !this.distracted) {
|
|
this.entityData.set(TARGET_UUID, e.getStringUUID());
|
|
this.distracted = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!entityData.get(TARGET_UUID).equals("none")) {
|
|
if (entity != null) {
|
|
if (entity.level() instanceof ServerLevel) {
|
|
if ((!entity.getPassengers().isEmpty() || entity instanceof VehicleEntity) && entity.tickCount % ((int) Math.max(0.04 * this.distanceTo(entity), 2)) == 0) {
|
|
entity.level().playSound(null, entity.getOnPos(), entity instanceof Pig ? SoundEvents.PIG_HURT : ModSounds.MISSILE_WARNING.get(), SoundSource.PLAYERS, 2, 1f);
|
|
}
|
|
|
|
Vec3 targetPos = new Vec3(entity.getX(), entity.getY() + (entity instanceof EnderDragon ? -2 : 0) + 0.1 * distanceTo(entity), entity.getZ());
|
|
|
|
Vec3 toVec = getEyePosition().vectorTo(targetPos).normalize();
|
|
if (this.tickCount > 8) {
|
|
boolean lostTarget = (VectorTool.calculateAngle(getDeltaMovement(), toVec) > 80);
|
|
if (!lostTarget) {
|
|
setDeltaMovement(getDeltaMovement().add(toVec.scale(4)).scale(0.65).add(entity.getDeltaMovement().scale(0.2)));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (this.tickCount == 8) {
|
|
this.level().playSound(null, BlockPos.containing(position()), ModSounds.MISSILE_START.get(), SoundSource.PLAYERS, 4, 1);
|
|
if (!this.level().isClientSide() && this.level() instanceof ServerLevel serverLevel) {
|
|
ParticleTool.sendParticle(serverLevel, ParticleTypes.CLOUD, this.xo, this.yo, this.zo, 15, 0.8, 0.8, 0.8, 0.01, true);
|
|
ParticleTool.sendParticle(serverLevel, ParticleTypes.CAMPFIRE_COSY_SMOKE, this.xo, this.yo, this.zo, 10, 0.8, 0.8, 0.8, 0.01, true);
|
|
}
|
|
}
|
|
|
|
if (this.tickCount > 8) {
|
|
this.setDeltaMovement(this.getDeltaMovement().multiply(1.06, 1.06, 1.06));
|
|
}
|
|
|
|
if (this.tickCount > 200 || this.isInWater() || this.entityData.get(HEALTH) <= 0) {
|
|
if (this.level() instanceof ServerLevel) {
|
|
ProjectileTool.causeCustomExplode(this,
|
|
ModDamageTypes.causeProjectileBoomDamage(this.level().registryAccess(), this, this.getOwner()),
|
|
this, this.explosionDamage, this.explosionRadius, 1);
|
|
}
|
|
this.discard();
|
|
}
|
|
|
|
float f = (float) Mth.clamp(1 - 0.005 * getDeltaMovement().length(), 0.001, 1);
|
|
|
|
this.setDeltaMovement(this.getDeltaMovement().multiply(f, f, f));
|
|
destroyBlock();
|
|
}
|
|
|
|
@Override
|
|
public void onRemovedFromLevel() {
|
|
if (this.level() instanceof ServerLevel serverLevel) {
|
|
ChunkLoadTool.unloadAllChunks(serverLevel, this, this.loadedChunks);
|
|
}
|
|
super.onRemovedFromLevel();
|
|
}
|
|
|
|
@Override
|
|
public boolean isNoGravity() {
|
|
return true;
|
|
}
|
|
|
|
private PlayState movementPredicate(AnimationState<Agm65Entity> event) {
|
|
return event.setAndContinue(RawAnimation.begin().thenLoop("animation.jvm.idle"));
|
|
}
|
|
|
|
@Override
|
|
protected double getDefaultGravity() {
|
|
return tickCount > 8 ? 0 : 0.15F;
|
|
}
|
|
|
|
@Override
|
|
public void registerControllers(AnimatableManager.ControllerRegistrar data) {
|
|
data.add(new AnimationController<>(this, "movement", 0, this::movementPredicate));
|
|
}
|
|
|
|
@Override
|
|
public AnimatableInstanceCache getAnimatableInstanceCache() {
|
|
return this.cache;
|
|
}
|
|
|
|
@Override
|
|
public boolean shouldSyncMotion() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public @NotNull SoundEvent getCloseSound() {
|
|
return ModSounds.ROCKET_ENGINE.get();
|
|
}
|
|
|
|
@Override
|
|
public @NotNull SoundEvent getSound() {
|
|
return ModSounds.ROCKET_FLY.get();
|
|
}
|
|
|
|
@Override
|
|
public float getVolume() {
|
|
return 0.7f;
|
|
}
|
|
|
|
// TODO setter
|
|
@Override
|
|
public void setDamage(float damage) {
|
|
this.damage = damage;
|
|
}
|
|
|
|
@Override
|
|
public void setExplosionDamage(float explosionDamage) {
|
|
this.explosionDamage = explosionDamage;
|
|
}
|
|
|
|
@Override
|
|
public void setExplosionRadius(float radius) {
|
|
this.explosionRadius = radius;
|
|
}
|
|
}
|