Code/net/minecraft/world/entity/ItemBasedSteering.java

50 lines
1.5 KiB
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.entity;
import net.minecraft.network.syncher.EntityDataAccessor;
import net.minecraft.network.syncher.SynchedEntityData;
import net.minecraft.util.Mth;
import net.minecraft.util.RandomSource;
public class ItemBasedSteering {
private static final int MIN_BOOST_TIME = 140;
private static final int MAX_BOOST_TIME = 700;
private final SynchedEntityData entityData;
private final EntityDataAccessor<Integer> boostTimeAccessor;
private boolean boosting;
private int boostTime;
public ItemBasedSteering(SynchedEntityData p_20841_, EntityDataAccessor<Integer> p_20842_) {
this.entityData = p_20841_;
this.boostTimeAccessor = p_20842_;
}
public void onSynced() {
this.boosting = true;
this.boostTime = 0;
}
public boolean boost(RandomSource p_217033_) {
if (this.boosting) {
return false;
} else {
this.boosting = true;
this.boostTime = 0;
this.entityData.set(this.boostTimeAccessor, p_217033_.nextInt(841) + 140);
return true;
}
}
public void tickBoost() {
if (this.boosting && this.boostTime++ > this.boostTimeTotal()) {
this.boosting = false;
}
}
public float boostFactor() {
return this.boosting ? 1.0F + 1.15F * Mth.sin((float)this.boostTime / this.boostTimeTotal() * (float) Math.PI) : 1.0F;
}
private int boostTimeTotal() {
return this.entityData.get(this.boostTimeAccessor);
}
}