303 lines
10 KiB
Java
303 lines
10 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.init.ModDamageTypes;
|
|
import com.atsuishio.superbwarfare.init.ModEntities;
|
|
import com.atsuishio.superbwarfare.init.ModItems;
|
|
import com.atsuishio.superbwarfare.init.ModSounds;
|
|
import com.atsuishio.superbwarfare.network.message.receive.ClientIndicatorMessage;
|
|
import com.atsuishio.superbwarfare.network.message.receive.ClientMotionSyncMessage;
|
|
import com.atsuishio.superbwarfare.tools.ChunkLoadTool;
|
|
import com.atsuishio.superbwarfare.tools.CustomExplosion;
|
|
import com.atsuishio.superbwarfare.tools.ParticleTool;
|
|
import net.minecraft.core.BlockPos;
|
|
import net.minecraft.core.particles.ParticleTypes;
|
|
import net.minecraft.nbt.CompoundTag;
|
|
import net.minecraft.nbt.ListTag;
|
|
import net.minecraft.server.level.ServerLevel;
|
|
import net.minecraft.server.level.ServerPlayer;
|
|
import net.minecraft.sounds.SoundEvent;
|
|
import net.minecraft.sounds.SoundSource;
|
|
import net.minecraft.world.entity.Entity;
|
|
import net.minecraft.world.entity.EntityType;
|
|
import net.minecraft.world.entity.LivingEntity;
|
|
import net.minecraft.world.item.Item;
|
|
import net.minecraft.world.level.Explosion;
|
|
import net.minecraft.world.level.Level;
|
|
import net.minecraft.world.level.block.state.BlockState;
|
|
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 javax.annotation.ParametersAreNonnullByDefault;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
public class CannonShellEntity extends FastThrowableProjectile implements GeoEntity, ExplosiveProjectile {
|
|
|
|
private final AnimatableInstanceCache cache = GeckoLibUtil.createInstanceCache(this);
|
|
|
|
private float damage = 0;
|
|
private float radius = 0;
|
|
private float explosionDamage = 0;
|
|
private float fireProbability = 0;
|
|
private int fireTime = 0;
|
|
public Set<Long> loadedChunks = new HashSet<>();
|
|
private float gravity = 0.1f;
|
|
|
|
public CannonShellEntity(EntityType<? extends CannonShellEntity> type, Level world) {
|
|
super(type, world);
|
|
this.noCulling = true;
|
|
}
|
|
|
|
public CannonShellEntity(LivingEntity entity, Level world, float damage, float radius, float explosionDamage, float fireProbability, int fireTime, float gravity) {
|
|
super(ModEntities.CANNON_SHELL.get(), entity, world);
|
|
this.damage = damage;
|
|
this.radius = radius;
|
|
this.explosionDamage = explosionDamage;
|
|
this.fireProbability = fireProbability;
|
|
this.fireTime = fireTime;
|
|
this.gravity = gravity;
|
|
}
|
|
|
|
public CannonShellEntity durability(int durability) {
|
|
this.durability = durability;
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
@ParametersAreNonnullByDefault
|
|
public boolean isColliding(BlockPos pPos, BlockState pState) {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public void addAdditionalSaveData(@NotNull CompoundTag pCompound) {
|
|
super.addAdditionalSaveData(pCompound);
|
|
|
|
pCompound.putFloat("Damage", this.damage);
|
|
pCompound.putFloat("ExplosionDamage", this.explosionDamage);
|
|
pCompound.putFloat("Radius", this.radius);
|
|
pCompound.putFloat("FireProbability", this.fireProbability);
|
|
pCompound.putInt("FireTime", this.fireTime);
|
|
pCompound.putInt("Durability", this.durability);
|
|
|
|
ListTag listTag = new ListTag();
|
|
for (long chunkPos : this.loadedChunks) {
|
|
CompoundTag tag = new CompoundTag();
|
|
tag.putLong("Pos", chunkPos);
|
|
listTag.add(tag);
|
|
}
|
|
pCompound.put("Chunks", listTag);
|
|
}
|
|
|
|
@Override
|
|
public void readAdditionalSaveData(@NotNull CompoundTag pCompound) {
|
|
super.readAdditionalSaveData(pCompound);
|
|
|
|
if (pCompound.contains("Damage")) {
|
|
this.damage = pCompound.getFloat("Damage");
|
|
}
|
|
|
|
if (pCompound.contains("ExplosionDamage")) {
|
|
this.explosionDamage = pCompound.getFloat("ExplosionDamage");
|
|
}
|
|
|
|
if (pCompound.contains("Radius")) {
|
|
this.radius = pCompound.getFloat("Radius");
|
|
}
|
|
|
|
if (pCompound.contains("FireProbability")) {
|
|
this.fireProbability = pCompound.getFloat("FireProbability");
|
|
}
|
|
|
|
if (pCompound.contains("FireTime")) {
|
|
this.fireTime = pCompound.getInt("FireTime");
|
|
}
|
|
|
|
if (pCompound.contains("Durability")) {
|
|
this.durability = pCompound.getInt("Durability");
|
|
}
|
|
|
|
if (pCompound.contains("Chunks")) {
|
|
ListTag listTag = pCompound.getList("Chunks", 10);
|
|
for (int i = 0; i < listTag.size(); i++) {
|
|
CompoundTag tag = listTag.getCompound(i);
|
|
this.loadedChunks.add(tag.getLong("Pos"));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected @NotNull Item getDefaultItem() {
|
|
return ModItems.HE_5_INCHES.get();
|
|
}
|
|
|
|
@Override
|
|
public boolean shouldRenderAtSqrDistance(double pDistance) {
|
|
return true;
|
|
}
|
|
|
|
@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();
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onHitEntity(@NotNull EntityHitResult entityHitResult) {
|
|
if (this.level() instanceof ServerLevel) {
|
|
Entity entity = entityHitResult.getEntity();
|
|
if (this.getOwner() != null && entity == this.getOwner().getVehicle())
|
|
return;
|
|
entity.hurt(ModDamageTypes.causeCannonFireDamage(this.level().registryAccess(), this, this.getOwner()), this.damage);
|
|
|
|
if (entity instanceof LivingEntity) {
|
|
entity.invulnerableTime = 0;
|
|
}
|
|
|
|
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));
|
|
}
|
|
}
|
|
|
|
ParticleTool.cannonHitParticles(this.level(), this.position(), this);
|
|
causeExplode(entityHitResult.getLocation());
|
|
if (entity instanceof VehicleEntity) {
|
|
this.discard();
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void tick() {
|
|
super.tick();
|
|
if (this.level() instanceof ServerLevel serverLevel) {
|
|
ParticleTool.sendParticle(serverLevel, ParticleTypes.SMOKE, this.xo, this.yo, this.zo,
|
|
1, 0, 0, 0, 0.001, true);
|
|
|
|
// 更新需要加载的区块
|
|
ChunkLoadTool.updateLoadedChunks(serverLevel, this, this.loadedChunks);
|
|
}
|
|
|
|
destroyBlock();
|
|
|
|
if (this.tickCount > 600 || this.isInWater()) {
|
|
if (this.level() instanceof ServerLevel) {
|
|
causeExplode(position());
|
|
}
|
|
this.discard();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void syncMotion() {
|
|
if (!this.level().isClientSide) {
|
|
PacketDistributor.sendToAllPlayers(new ClientMotionSyncMessage(this));
|
|
}
|
|
}
|
|
|
|
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(),
|
|
radius,
|
|
ExplosionConfig.EXPLOSION_DESTROY.get() ? Explosion.BlockInteraction.DESTROY : Explosion.BlockInteraction.KEEP, true).
|
|
setDamageMultiplier(1);
|
|
explosion.explode();
|
|
EventHooks.onExplosionStart(this.level(), explosion);
|
|
explosion.finalizeExplosion(false);
|
|
if (radius > 9) {
|
|
ParticleTool.spawnHugeExplosionParticles(this.level(), vec3);
|
|
} else {
|
|
ParticleTool.spawnMediumExplosionParticles(this.level(), vec3);
|
|
}
|
|
discard();
|
|
}
|
|
|
|
private PlayState movementPredicate(AnimationState<CannonShellEntity> event) {
|
|
return event.setAndContinue(RawAnimation.begin().thenLoop("animation.cannon_shell.idle"));
|
|
}
|
|
|
|
@Override
|
|
protected double getDefaultGravity() {
|
|
return gravity;
|
|
}
|
|
|
|
@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 void onRemovedFromLevel() {
|
|
if (this.level() instanceof ServerLevel serverLevel) {
|
|
ChunkLoadTool.unloadAllChunks(serverLevel, this, this.loadedChunks);
|
|
}
|
|
super.onRemovedFromLevel();
|
|
}
|
|
|
|
@Override
|
|
public @NotNull SoundEvent getSound() {
|
|
return ModSounds.SHELL_FLY.get();
|
|
}
|
|
|
|
@Override
|
|
public float getVolume() {
|
|
return 0.07f;
|
|
}
|
|
|
|
@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.radius = radius;
|
|
}
|
|
}
|