minecraft-src/net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase.java
2025-07-04 03:15:13 +03:00

61 lines
1.7 KiB
Java

package net.minecraft.world.entity.boss.enderdragon.phases;
import com.mojang.logging.LogUtils;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.world.entity.boss.enderdragon.EnderDragon;
import net.minecraft.world.phys.Vec3;
import org.jetbrains.annotations.Nullable;
import org.slf4j.Logger;
public class DragonChargePlayerPhase extends AbstractDragonPhaseInstance {
private static final Logger LOGGER = LogUtils.getLogger();
private static final int CHARGE_RECOVERY_TIME = 10;
@Nullable
private Vec3 targetLocation;
private int timeSinceCharge;
public DragonChargePlayerPhase(EnderDragon enderDragon) {
super(enderDragon);
}
@Override
public void doServerTick(ServerLevel level) {
if (this.targetLocation == null) {
LOGGER.warn("Aborting charge player as no target was set.");
this.dragon.getPhaseManager().setPhase(EnderDragonPhase.HOLDING_PATTERN);
} else if (this.timeSinceCharge > 0 && this.timeSinceCharge++ >= 10) {
this.dragon.getPhaseManager().setPhase(EnderDragonPhase.HOLDING_PATTERN);
} else {
double d = this.targetLocation.distanceToSqr(this.dragon.getX(), this.dragon.getY(), this.dragon.getZ());
if (d < 100.0 || d > 22500.0 || this.dragon.horizontalCollision || this.dragon.verticalCollision) {
this.timeSinceCharge++;
}
}
}
@Override
public void begin() {
this.targetLocation = null;
this.timeSinceCharge = 0;
}
public void setTarget(Vec3 targetLocation) {
this.targetLocation = targetLocation;
}
@Override
public float getFlySpeed() {
return 3.0F;
}
@Nullable
@Override
public Vec3 getFlyTargetLocation() {
return this.targetLocation;
}
@Override
public EnderDragonPhase<DragonChargePlayerPhase> getPhase() {
return EnderDragonPhase.CHARGING_PLAYER;
}
}