package net.minecraft.world.entity.ambient; import java.time.LocalDate; import java.time.temporal.ChronoField; import net.minecraft.core.BlockPos; 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.sounds.SoundEvent; import net.minecraft.sounds.SoundEvents; import net.minecraft.util.Mth; import net.minecraft.util.RandomSource; import net.minecraft.world.damagesource.DamageSource; import net.minecraft.world.entity.AnimationState; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.Mob; import net.minecraft.world.entity.MobSpawnType; import net.minecraft.world.entity.ai.attributes.AttributeSupplier; import net.minecraft.world.entity.ai.attributes.Attributes; import net.minecraft.world.entity.ai.targeting.TargetingConditions; import net.minecraft.world.level.Level; import net.minecraft.world.level.LevelAccessor; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.phys.Vec3; import org.jetbrains.annotations.Nullable; public class Bat extends AmbientCreature { public static final float FLAP_LENGTH_SECONDS = 0.5F; public static final float TICKS_PER_FLAP = 10.0F; private static final EntityDataAccessor DATA_ID_FLAGS = SynchedEntityData.defineId(Bat.class, EntityDataSerializers.BYTE); private static final int FLAG_RESTING = 1; private static final TargetingConditions BAT_RESTING_TARGETING = TargetingConditions.forNonCombat().range(4.0); public final AnimationState flyAnimationState = new AnimationState(); public final AnimationState restAnimationState = new AnimationState(); @Nullable private BlockPos targetPosition; public Bat(EntityType entityType, Level level) { super(entityType, level); if (!level.isClientSide) { this.setResting(true); } } @Override public boolean isFlapping() { return !this.isResting() && this.tickCount % 10.0F == 0.0F; } @Override protected void defineSynchedData(SynchedEntityData.Builder builder) { super.defineSynchedData(builder); builder.define(DATA_ID_FLAGS, (byte)0); } @Override protected float getSoundVolume() { return 0.1F; } @Override public float getVoicePitch() { return super.getVoicePitch() * 0.95F; } @Nullable @Override public SoundEvent getAmbientSound() { return this.isResting() && this.random.nextInt(4) != 0 ? null : SoundEvents.BAT_AMBIENT; } @Override protected SoundEvent getHurtSound(DamageSource damageSource) { return SoundEvents.BAT_HURT; } @Override protected SoundEvent getDeathSound() { return SoundEvents.BAT_DEATH; } @Override public boolean isPushable() { return false; } @Override protected void doPush(Entity entity) { } @Override protected void pushEntities() { } public static AttributeSupplier.Builder createAttributes() { return Mob.createMobAttributes().add(Attributes.MAX_HEALTH, 6.0); } public boolean isResting() { return (this.entityData.get(DATA_ID_FLAGS) & 1) != 0; } public void setResting(boolean isResting) { byte b = this.entityData.get(DATA_ID_FLAGS); if (isResting) { this.entityData.set(DATA_ID_FLAGS, (byte)(b | 1)); } else { this.entityData.set(DATA_ID_FLAGS, (byte)(b & -2)); } } @Override public void tick() { super.tick(); if (this.isResting()) { this.setDeltaMovement(Vec3.ZERO); this.setPosRaw(this.getX(), Mth.floor(this.getY()) + 1.0 - this.getBbHeight(), this.getZ()); } else { this.setDeltaMovement(this.getDeltaMovement().multiply(1.0, 0.6, 1.0)); } this.setupAnimationStates(); } @Override protected void customServerAiStep() { super.customServerAiStep(); BlockPos blockPos = this.blockPosition(); BlockPos blockPos2 = blockPos.above(); if (this.isResting()) { boolean bl = this.isSilent(); if (this.level().getBlockState(blockPos2).isRedstoneConductor(this.level(), blockPos)) { if (this.random.nextInt(200) == 0) { this.yHeadRot = this.random.nextInt(360); } if (this.level().getNearestPlayer(BAT_RESTING_TARGETING, this) != null) { this.setResting(false); if (!bl) { this.level().levelEvent(null, 1025, blockPos, 0); } } } else { this.setResting(false); if (!bl) { this.level().levelEvent(null, 1025, blockPos, 0); } } } else { if (this.targetPosition != null && (!this.level().isEmptyBlock(this.targetPosition) || this.targetPosition.getY() <= this.level().getMinBuildHeight())) { this.targetPosition = null; } if (this.targetPosition == null || this.random.nextInt(30) == 0 || this.targetPosition.closerToCenterThan(this.position(), 2.0)) { this.targetPosition = BlockPos.containing( this.getX() + this.random.nextInt(7) - this.random.nextInt(7), this.getY() + this.random.nextInt(6) - 2.0, this.getZ() + this.random.nextInt(7) - this.random.nextInt(7) ); } double d = this.targetPosition.getX() + 0.5 - this.getX(); double e = this.targetPosition.getY() + 0.1 - this.getY(); double f = this.targetPosition.getZ() + 0.5 - this.getZ(); Vec3 vec3 = this.getDeltaMovement(); Vec3 vec32 = vec3.add((Math.signum(d) * 0.5 - vec3.x) * 0.1F, (Math.signum(e) * 0.7F - vec3.y) * 0.1F, (Math.signum(f) * 0.5 - vec3.z) * 0.1F); this.setDeltaMovement(vec32); float g = (float)(Mth.atan2(vec32.z, vec32.x) * 180.0F / (float)Math.PI) - 90.0F; float h = Mth.wrapDegrees(g - this.getYRot()); this.zza = 0.5F; this.setYRot(this.getYRot() + h); if (this.random.nextInt(100) == 0 && this.level().getBlockState(blockPos2).isRedstoneConductor(this.level(), blockPos2)) { this.setResting(true); } } } @Override protected Entity.MovementEmission getMovementEmission() { return Entity.MovementEmission.EVENTS; } @Override protected void checkFallDamage(double y, boolean onGround, BlockState state, BlockPos pos) { } @Override public boolean isIgnoringBlockTriggers() { return true; } @Override public boolean hurt(DamageSource source, float amount) { if (this.isInvulnerableTo(source)) { return false; } else { if (!this.level().isClientSide && this.isResting()) { this.setResting(false); } return super.hurt(source, amount); } } @Override public void readAdditionalSaveData(CompoundTag compound) { super.readAdditionalSaveData(compound); this.entityData.set(DATA_ID_FLAGS, compound.getByte("BatFlags")); } @Override public void addAdditionalSaveData(CompoundTag compound) { super.addAdditionalSaveData(compound); compound.putByte("BatFlags", this.entityData.get(DATA_ID_FLAGS)); } public static boolean checkBatSpawnRules(EntityType bat, LevelAccessor level, MobSpawnType spawnType, BlockPos pos, RandomSource random) { if (pos.getY() >= level.getSeaLevel()) { return false; } else { int i = level.getMaxLocalRawBrightness(pos); int j = 4; if (isHalloween()) { j = 7; } else if (random.nextBoolean()) { return false; } return i > random.nextInt(j) ? false : checkMobSpawnRules(bat, level, spawnType, pos, random); } } private static boolean isHalloween() { LocalDate localDate = LocalDate.now(); int i = localDate.get(ChronoField.DAY_OF_MONTH); int j = localDate.get(ChronoField.MONTH_OF_YEAR); return j == 10 && i >= 20 || j == 11 && i <= 3; } private void setupAnimationStates() { if (this.isResting()) { this.flyAnimationState.stop(); this.restAnimationState.startIfStopped(this.tickCount); } else { this.restAnimationState.stop(); this.flyAnimationState.startIfStopped(this.tickCount); } } }