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.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.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.damagesource.DamageTypes; import net.minecraft.world.entity.AreaEffectCloud; 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.entity.monster.Monster; import net.minecraft.world.entity.projectile.ThrownPotion; 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 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.List; public class JavelinMissileEntity extends FastThrowableProjectile implements GeoEntity, ExplosiveProjectile { public static final EntityDataAccessor HEALTH = SynchedEntityData.defineId(JavelinMissileEntity.class, EntityDataSerializers.FLOAT); public static final EntityDataAccessor TARGET_UUID = SynchedEntityData.defineId(JavelinMissileEntity.class, EntityDataSerializers.STRING); public static final EntityDataAccessor TOP = SynchedEntityData.defineId(JavelinMissileEntity.class, EntityDataSerializers.BOOLEAN); public static final EntityDataAccessor TARGET_X = SynchedEntityData.defineId(JavelinMissileEntity.class, EntityDataSerializers.FLOAT); public static final EntityDataAccessor TARGET_Y = SynchedEntityData.defineId(JavelinMissileEntity.class, EntityDataSerializers.FLOAT); public static final EntityDataAccessor TARGET_Z = SynchedEntityData.defineId(JavelinMissileEntity.class, EntityDataSerializers.FLOAT); private final AnimatableInstanceCache cache = GeckoLibUtil.createInstanceCache(this); private float monsterMultiplier = 0.0f; private float damage = 500.0f; private float explosionDamage = 140f; private float explosionRadius = 6f; private boolean distracted = false; private int guideType = 0; public JavelinMissileEntity(EntityType type, Level world) { super(type, world); this.noCulling = true; } public JavelinMissileEntity(LivingEntity entity, Level level, float damage, float explosionDamage, float explosionRadius, int guideType, Vec3 targetPos) { super(ModEntities.JAVELIN_MISSILE.get(), entity, level); this.damage = damage; this.explosionDamage = explosionDamage; this.explosionRadius = explosionRadius; this.guideType = guideType; this.entityData.set(TARGET_X, (float) targetPos.x); this.entityData.set(TARGET_Y, (float) targetPos.y); this.entityData.set(TARGET_Z, (float) targetPos.z); this.durability = 50; } public void setMonsterMultiplier(float monsterMultiplier) { this.monsterMultiplier = monsterMultiplier; } @Override protected @NotNull Item getDefaultItem() { return ModItems.JAVELIN_MISSILE.get(); } public void setTargetUuid(String uuid) { this.entityData.set(TARGET_UUID, uuid); } public void setAttackMode(boolean mode) { this.entityData.set(TOP, mode); } @Override public boolean hurt(DamageSource source, float amount) { if (source.getDirectEntity() instanceof ThrownPotion || source.getDirectEntity() instanceof AreaEffectCloud) return false; if (source.is(DamageTypes.FALL)) return false; if (source.is(DamageTypes.CACTUS)) return false; if (source.is(DamageTypes.DROWN)) return false; if (source.is(DamageTypes.DRAGON_BREATH)) return false; if (source.is(DamageTypes.WITHER)) return false; if (source.is(DamageTypes.WITHER_SKULL)) return false; 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, 10f) .define(TARGET_UUID, "none") .define(TOP, false) .define(TARGET_X, 0f) .define(TARGET_Y, 0f) .define(TARGET_Z, 0f); } @Override public boolean isPickable() { return !this.isRemoved(); } @Override public void readAdditionalSaveData(@NotNull CompoundTag compound) { super.readAdditionalSaveData(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"); } } @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); } @Override public boolean shouldRenderAtSqrDistance(double pDistance) { return true; } @Override public boolean isNoGravity() { return true; } @Override protected void onHitEntity(EntityHitResult result) { float damageMultiplier = 1 + this.monsterMultiplier; Entity entity = result.getEntity(); if (this.getOwner() != null && this.getOwner().getVehicle() != null && entity == this.getOwner().getVehicle()) return; if (this.level() instanceof ServerLevel) { if (entity == this.getOwner() || (this.getOwner() != null && entity == this.getOwner().getVehicle())) return; 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)); } } if (entity instanceof Monster monster) { monster.hurt(ModDamageTypes.causeCannonFireDamage(this.level().registryAccess(), this, this.getOwner()), (entityData.get(TOP) ? 1.25f : 1f) * this.damage * damageMultiplier); } else { entity.hurt(ModDamageTypes.causeCannonFireDamage(this.level().registryAccess(), this, this.getOwner()), (entityData.get(TOP) ? 1.25f : 1f) * this.damage); } if (entity instanceof LivingEntity) { entity.invulnerableTime = 0; } causeExplode(result.getLocation()); this.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(this.monsterMultiplier); explosion.explode(); EventHooks.onExplosionStart(this.level(), explosion); explosion.finalizeExplosion(false); ParticleTool.spawnHugeExplosionParticles(this.level(), vec3); } @Override public void tick() { super.tick(); Entity entity = EntityFindUtil.findEntity(this.level(), entityData.get(TARGET_UUID)); List 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 (guideType == 0 || !entityData.get(TARGET_UUID).equals("none")) { if (entity != null) { if (entity.level() instanceof ServerLevel) { this.entityData.set(TARGET_X, (float) entity.getX()); this.entityData.set(TARGET_Y, (float) entity.getY() + 0.5f * entity.getBbHeight()); this.entityData.set(TARGET_Z, (float) entity.getZ()); 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); } } } double px = this.getX(); double ex = this.entityData.get(TARGET_X); double pz = this.getZ(); double ez = this.entityData.get(TARGET_Z); boolean dir = Math.sqrt(Math.pow(px - ex, 2) + Math.pow(pz - ez, 2)) < 30; Vec3 targetPos = new Vec3(this.entityData.get(TARGET_X), this.entityData.get(TARGET_Y) + (entity instanceof EnderDragon ? -3 : 0), this.entityData.get(TARGET_Z)); if (entity != null) { Vec3 toVec = getEyePosition().vectorTo(targetPos.add(entity.getDeltaMovement().scale(0.5))).normalize(); if (this.tickCount > 3) { if (entityData.get(TOP)) { if (!dir) { Vec3 targetTopPos = new Vec3(this.entityData.get(TARGET_X), this.entityData.get(TARGET_Y) + Mth.clamp(5 * this.tickCount, 0, 90), this.entityData.get(TARGET_Z)); Vec3 toTopVec = getEyePosition().vectorTo(targetTopPos).normalize(); setDeltaMovement(getDeltaMovement().add(toTopVec.scale(0.5))); } else { boolean lostTarget = this.getY() < entity.getY(); if (!lostTarget) { setDeltaMovement(getDeltaMovement().add(toVec).scale(0.87)); } } } else { boolean lostTarget = (VectorTool.calculateAngle(getDeltaMovement(), toVec) > 80); if (!lostTarget) { setDeltaMovement(getDeltaMovement().add(toVec).scale(0.87)); } } } } } else if (guideType == 1) { double px = this.getX(); double ex = this.entityData.get(TARGET_X); double pz = this.getZ(); double ez = this.entityData.get(TARGET_Z); boolean dir = Math.sqrt(Math.pow(px - ex, 2) + Math.pow(pz - ez, 2)) < 30; Vec3 targetPos = new Vec3(this.entityData.get(TARGET_X), this.entityData.get(TARGET_Y), this.entityData.get(TARGET_Z)); Vec3 toVec = getEyePosition().vectorTo(targetPos).normalize(); if (this.tickCount > 3) { if (entityData.get(TOP)) { if (!dir) { Vec3 targetTopPos = new Vec3(this.entityData.get(TARGET_X), this.entityData.get(TARGET_Y) + Mth.clamp(5 * this.tickCount, 0, 90), this.entityData.get(TARGET_Z)); Vec3 toTopVec = getEyePosition().vectorTo(targetTopPos).normalize(); setDeltaMovement(getDeltaMovement().add(toTopVec.scale(0.5))); } else { boolean lostTarget = this.getY() < this.entityData.get(TARGET_Y); if (!lostTarget) { setDeltaMovement(getDeltaMovement().add(toVec).scale(0.87)); } } } else { boolean lostTarget = (VectorTool.calculateAngle(getDeltaMovement(), toVec) > 80); if (!lostTarget) { setDeltaMovement(getDeltaMovement().add(toVec).scale(0.87)); } } } } if (this.tickCount == 4) { 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 > 4) { if (!this.level().isClientSide() && this.level() instanceof ServerLevel serverLevel) { ParticleTool.sendParticle(serverLevel, ParticleTypes.CAMPFIRE_COSY_SMOKE, this.xo, this.yo, this.zo, 1, 0, 0, 0, 0, true); } } 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, this.monsterMultiplier); } this.discard(); } // 控制速度 if (this.getDeltaMovement().length() < 2.6) { this.setDeltaMovement(this.getDeltaMovement().multiply(1.06, 1.06, 1.06)); } if (this.getDeltaMovement().length() > 2.9) { this.setDeltaMovement(this.getDeltaMovement().multiply(0.9, 0.9, 0.9)); } this.setDeltaMovement(this.getDeltaMovement().multiply(0.96, 0.96, 0.96)); destroyBlock(); } private PlayState movementPredicate(AnimationState event) { return event.setAndContinue(RawAnimation.begin().thenLoop("animation.jvm.idle")); } @Override protected double getDefaultGravity() { return 0F; } @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.4f; } @Override public void setDamage(float damage) { this.damage = damage; } @Override public void setExplosionDamage(float damage) { this.explosionDamage = damage; } @Override public void setExplosionRadius(float radius) { this.explosionRadius = radius; } }