Spaces:
Build error
Build error
File size: 6,476 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
package net.minecraft.world.entity;
import com.google.common.annotations.VisibleForTesting;
import javax.annotation.Nullable;
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.world.DifficultyInstance;
import net.minecraft.world.entity.vehicle.AbstractBoat;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.ServerLevelAccessor;
public abstract class AgeableMob extends PathfinderMob {
private static final EntityDataAccessor<Boolean> DATA_BABY_ID = SynchedEntityData.defineId(AgeableMob.class, EntityDataSerializers.BOOLEAN);
public static final int BABY_START_AGE = -24000;
private static final int FORCED_AGE_PARTICLE_TICKS = 40;
protected int age;
protected int forcedAge;
protected int forcedAgeTimer;
protected AgeableMob(EntityType<? extends AgeableMob> p_146738_, Level p_146739_) {
super(p_146738_, p_146739_);
}
@Override
public SpawnGroupData finalizeSpawn(ServerLevelAccessor p_146746_, DifficultyInstance p_146747_, EntitySpawnReason p_366700_, @Nullable SpawnGroupData p_146749_) {
if (p_146749_ == null) {
p_146749_ = new AgeableMob.AgeableMobGroupData(true);
}
AgeableMob.AgeableMobGroupData ageablemob$ageablemobgroupdata = (AgeableMob.AgeableMobGroupData)p_146749_;
if (ageablemob$ageablemobgroupdata.isShouldSpawnBaby()
&& ageablemob$ageablemobgroupdata.getGroupSize() > 0
&& p_146746_.getRandom().nextFloat() <= ageablemob$ageablemobgroupdata.getBabySpawnChance()) {
this.setAge(-24000);
}
ageablemob$ageablemobgroupdata.increaseGroupSizeByOne();
return super.finalizeSpawn(p_146746_, p_146747_, p_366700_, p_146749_);
}
@Nullable
public abstract AgeableMob getBreedOffspring(ServerLevel p_146743_, AgeableMob p_146744_);
@Override
protected void defineSynchedData(SynchedEntityData.Builder p_333447_) {
super.defineSynchedData(p_333447_);
p_333447_.define(DATA_BABY_ID, false);
}
public boolean canBreed() {
return false;
}
public int getAge() {
if (this.level().isClientSide) {
return this.entityData.get(DATA_BABY_ID) ? -1 : 1;
} else {
return this.age;
}
}
public void ageUp(int p_146741_, boolean p_146742_) {
int i = this.getAge();
i += p_146741_ * 20;
if (i > 0) {
i = 0;
}
int j = i - i;
this.setAge(i);
if (p_146742_) {
this.forcedAge += j;
if (this.forcedAgeTimer == 0) {
this.forcedAgeTimer = 40;
}
}
if (this.getAge() == 0) {
this.setAge(this.forcedAge);
}
}
public void ageUp(int p_146759_) {
this.ageUp(p_146759_, false);
}
public void setAge(int p_146763_) {
int i = this.getAge();
this.age = p_146763_;
if (i < 0 && p_146763_ >= 0 || i >= 0 && p_146763_ < 0) {
this.entityData.set(DATA_BABY_ID, p_146763_ < 0);
this.ageBoundaryReached();
}
}
@Override
public void addAdditionalSaveData(CompoundTag p_146761_) {
super.addAdditionalSaveData(p_146761_);
p_146761_.putInt("Age", this.getAge());
p_146761_.putInt("ForcedAge", this.forcedAge);
}
@Override
public void readAdditionalSaveData(CompoundTag p_146752_) {
super.readAdditionalSaveData(p_146752_);
this.setAge(p_146752_.getInt("Age"));
this.forcedAge = p_146752_.getInt("ForcedAge");
}
@Override
public void onSyncedDataUpdated(EntityDataAccessor<?> p_146754_) {
if (DATA_BABY_ID.equals(p_146754_)) {
this.refreshDimensions();
}
super.onSyncedDataUpdated(p_146754_);
}
@Override
public void aiStep() {
super.aiStep();
if (this.level().isClientSide) {
if (this.forcedAgeTimer > 0) {
if (this.forcedAgeTimer % 4 == 0) {
this.level().addParticle(ParticleTypes.HAPPY_VILLAGER, this.getRandomX(1.0), this.getRandomY() + 0.5, this.getRandomZ(1.0), 0.0, 0.0, 0.0);
}
this.forcedAgeTimer--;
}
} else if (this.isAlive()) {
int i = this.getAge();
if (i < 0) {
this.setAge(++i);
} else if (i > 0) {
this.setAge(--i);
}
}
}
protected void ageBoundaryReached() {
if (!this.isBaby() && this.isPassenger() && this.getVehicle() instanceof AbstractBoat abstractboat && !abstractboat.hasEnoughSpaceFor(this)) {
this.stopRiding();
}
}
@Override
public boolean isBaby() {
return this.getAge() < 0;
}
@Override
public void setBaby(boolean p_146756_) {
this.setAge(p_146756_ ? -24000 : 0);
}
public static int getSpeedUpSecondsWhenFeeding(int p_216968_) {
return (int)((float)(p_216968_ / 20) * 0.1F);
}
@VisibleForTesting
public int getForcedAge() {
return this.forcedAge;
}
@VisibleForTesting
public int getForcedAgeTimer() {
return this.forcedAgeTimer;
}
public static class AgeableMobGroupData implements SpawnGroupData {
private int groupSize;
private final boolean shouldSpawnBaby;
private final float babySpawnChance;
public AgeableMobGroupData(boolean p_146775_, float p_146776_) {
this.shouldSpawnBaby = p_146775_;
this.babySpawnChance = p_146776_;
}
public AgeableMobGroupData(boolean p_146773_) {
this(p_146773_, 0.05F);
}
public AgeableMobGroupData(float p_146771_) {
this(true, p_146771_);
}
public int getGroupSize() {
return this.groupSize;
}
public void increaseGroupSizeByOne() {
this.groupSize++;
}
public boolean isShouldSpawnBaby() {
return this.shouldSpawnBaby;
}
public float getBabySpawnChance() {
return this.babySpawnChance;
}
}
} |