54 lines
1.5 KiB
Java
54 lines
1.5 KiB
Java
package net.minecraft.world.entity.ai.navigation;
|
|
|
|
import net.minecraft.core.BlockPos;
|
|
import net.minecraft.world.entity.EntityType;
|
|
import net.minecraft.world.entity.Mob;
|
|
import net.minecraft.world.level.Level;
|
|
import net.minecraft.world.level.pathfinder.PathFinder;
|
|
import net.minecraft.world.level.pathfinder.SwimNodeEvaluator;
|
|
import net.minecraft.world.phys.Vec3;
|
|
|
|
public class WaterBoundPathNavigation extends PathNavigation {
|
|
private boolean allowBreaching;
|
|
|
|
public WaterBoundPathNavigation(Mob mob, Level level) {
|
|
super(mob, level);
|
|
}
|
|
|
|
@Override
|
|
protected PathFinder createPathFinder(int maxVisitedNodes) {
|
|
this.allowBreaching = this.mob.getType() == EntityType.DOLPHIN;
|
|
this.nodeEvaluator = new SwimNodeEvaluator(this.allowBreaching);
|
|
this.nodeEvaluator.setCanPassDoors(false);
|
|
return new PathFinder(this.nodeEvaluator, maxVisitedNodes);
|
|
}
|
|
|
|
@Override
|
|
protected boolean canUpdatePath() {
|
|
return this.allowBreaching || this.mob.isInLiquid();
|
|
}
|
|
|
|
@Override
|
|
protected Vec3 getTempMobPos() {
|
|
return new Vec3(this.mob.getX(), this.mob.getY(0.5), this.mob.getZ());
|
|
}
|
|
|
|
@Override
|
|
protected double getGroundY(Vec3 vec) {
|
|
return vec.y;
|
|
}
|
|
|
|
@Override
|
|
protected boolean canMoveDirectly(Vec3 posVec31, Vec3 posVec32) {
|
|
return isClearForMovementBetween(this.mob, posVec31, posVec32, false);
|
|
}
|
|
|
|
@Override
|
|
public boolean isStableDestination(BlockPos pos) {
|
|
return !this.level.getBlockState(pos).isSolidRender();
|
|
}
|
|
|
|
@Override
|
|
public void setCanFloat(boolean canSwim) {
|
|
}
|
|
}
|