baritone/src/main/java/baritone/pathing/movement/MovementHelper.java

472 lines
20 KiB
Java
Raw Normal View History

2018-08-08 03:16:53 +00:00
/*
* This file is part of Baritone.
*
* Baritone is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
2018-08-08 03:16:53 +00:00
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Baritone is distributed in the hope that it will be useful,
2018-08-08 03:16:53 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
2018-08-08 03:16:53 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
2018-08-08 03:16:53 +00:00
* along with Baritone. If not, see <https://www.gnu.org/licenses/>.
*/
2018-08-22 20:15:56 +00:00
package baritone.pathing.movement;
2018-08-22 20:15:56 +00:00
import baritone.Baritone;
2018-09-25 01:32:39 +00:00
import baritone.api.pathing.movement.ActionCosts;
import baritone.api.utils.*;
import baritone.api.utils.input.Input;
2018-08-22 20:15:56 +00:00
import baritone.pathing.movement.MovementState.MovementTarget;
import baritone.utils.BlockStateInterface;
import baritone.utils.Helper;
import baritone.utils.ToolSet;
import net.minecraft.block.*;
import net.minecraft.block.properties.PropertyBool;
import net.minecraft.block.state.IBlockState;
2018-08-06 22:53:35 +00:00
import net.minecraft.client.entity.EntityPlayerSP;
2018-08-02 17:49:31 +00:00
import net.minecraft.init.Blocks;
2018-10-10 23:29:48 +00:00
import net.minecraft.item.ItemPickaxe;
2018-08-06 22:53:35 +00:00
import net.minecraft.item.ItemStack;
2018-08-25 22:24:00 +00:00
import net.minecraft.util.EnumFacing;
2018-08-06 22:53:35 +00:00
import net.minecraft.util.NonNullList;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraft.world.chunk.EmptyChunk;
/**
* Static helpers for cost calculation
*
* @author leijurv
*/
2018-08-04 02:14:50 +00:00
public interface MovementHelper extends ActionCosts, Helper {
2018-11-13 21:14:29 +00:00
static boolean avoidBreaking(BlockStateInterface bsi, int x, int y, int z, IBlockState state) {
2018-08-17 19:24:40 +00:00
Block b = state.getBlock();
2018-09-09 15:57:20 +00:00
return b == Blocks.ICE // ice becomes water, and water can mess up the path
2018-08-18 04:02:41 +00:00
|| b instanceof BlockSilverfish // obvious reasons
// call context.get directly with x,y,z. no need to make 5 new BlockPos for no reason
2018-11-13 21:14:29 +00:00
|| bsi.get0(x, y + 1, z).getBlock() instanceof BlockLiquid//don't break anything touching liquid on any side
|| bsi.get0(x + 1, y, z).getBlock() instanceof BlockLiquid
|| bsi.get0(x - 1, y, z).getBlock() instanceof BlockLiquid
|| bsi.get0(x, y, z + 1).getBlock() instanceof BlockLiquid
|| bsi.get0(x, y, z - 1).getBlock() instanceof BlockLiquid;
}
2018-11-13 21:14:29 +00:00
static boolean canWalkThrough(IPlayerContext ctx, BetterBlockPos pos) {
return canWalkThrough(new BlockStateInterface(ctx), pos.x, pos.y, pos.z);
2018-08-07 14:39:55 +00:00
}
2018-11-13 21:14:29 +00:00
static boolean canWalkThrough(BlockStateInterface bsi, int x, int y, int z) {
return canWalkThrough(bsi, x, y, z, bsi.get0(x, y, z));
2018-09-22 16:28:59 +00:00
}
2018-11-13 21:14:29 +00:00
static boolean canWalkThrough(BlockStateInterface bsi, int x, int y, int z, IBlockState state) {
Block block = state.getBlock();
2018-09-22 18:23:26 +00:00
if (block == Blocks.AIR) { // early return for most common case
2018-09-06 14:48:27 +00:00
return true;
}
2018-09-09 15:11:33 +00:00
if (block == Blocks.FIRE || block == Blocks.TRIPWIRE || block == Blocks.WEB || block == Blocks.END_PORTAL) {
return false;
}
if (block instanceof BlockDoor || block instanceof BlockFenceGate) {
2018-09-17 22:46:23 +00:00
// Because there's no nice method in vanilla to check if a door is openable or not, we just have to assume
// that anything that isn't an iron door isn't openable, ignoring that some doors introduced in mods can't
// be opened by just interacting.
return block != Blocks.IRON_DOOR;
}
2018-09-22 16:17:28 +00:00
boolean snow = block instanceof BlockSnow;
boolean trapdoor = block instanceof BlockTrapDoor;
if (snow || trapdoor) {
// we've already checked doors and fence gates
// so the only remaining dynamic isPassables are snow and trapdoor
// if they're cached as a top block, we don't know their metadata
// default to true (mostly because it would otherwise make long distance pathing through snowy biomes impossible)
if (bsi.getWorld().getChunk(x >> 4, z >> 4) instanceof EmptyChunk) {
return true;
}
2018-09-22 16:17:28 +00:00
if (snow) {
2018-10-13 02:33:03 +00:00
// the check in BlockSnow.isPassable is layers < 5
// while actually, we want < 3 because 3 or greater makes it impassable in a 2 high ceiling
return state.getValue(BlockSnow.LAYERS) < 3;
2018-09-22 16:17:28 +00:00
}
if (trapdoor) {
return !state.getValue(BlockTrapDoor.OPEN); // see BlockTrapDoor.isPassable
}
throw new IllegalStateException();
}
if (isFlowing(state)) {
2018-08-02 17:55:26 +00:00
return false; // Don't walk through flowing liquids
}
2018-08-28 18:57:31 +00:00
if (block instanceof BlockLiquid) {
2018-08-28 19:30:08 +00:00
if (Baritone.settings().assumeWalkOnWater.get()) {
return false;
}
2018-11-13 21:14:29 +00:00
IBlockState up = bsi.get0(x, y + 1, z);
2018-08-28 18:57:31 +00:00
if (up.getBlock() instanceof BlockLiquid || up.getBlock() instanceof BlockLilyPad) {
return false;
}
2018-09-22 15:47:02 +00:00
return block == Blocks.WATER || block == Blocks.FLOWING_WATER;
2018-08-28 18:57:31 +00:00
}
2018-09-22 16:17:28 +00:00
// every block that overrides isPassable with anything more complicated than a "return true;" or "return false;"
// has already been accounted for above
// therefore it's safe to not construct a blockpos from our x, y, z ints and instead just pass null
return block.isPassable(null, null);
}
2018-09-06 14:48:27 +00:00
/**
* canWalkThrough but also won't impede movement at all. so not including doors or fence gates (we'd have to right click),
* not including water, and not including ladders or vines or cobwebs (they slow us down)
*
* @return
*/
static boolean fullyPassable(CalculationContext context, int x, int y, int z) {
return fullyPassable(context.get(x, y, z));
2018-09-23 19:24:07 +00:00
}
2018-09-22 16:17:28 +00:00
static boolean fullyPassable(IBlockState state) {
2018-09-06 14:48:27 +00:00
Block block = state.getBlock();
2018-09-22 18:23:26 +00:00
if (block == Blocks.AIR) { // early return for most common case
2018-09-06 14:48:27 +00:00
return true;
}
2018-09-11 13:37:08 +00:00
// exceptions - blocks that are isPassable true, but we can't actually jump through
2018-09-06 14:48:27 +00:00
if (block == Blocks.FIRE
|| block == Blocks.TRIPWIRE
|| block == Blocks.WEB
|| block == Blocks.VINE
|| block == Blocks.LADDER
|| block instanceof BlockDoor
|| block instanceof BlockFenceGate
|| block instanceof BlockSnow
|| block instanceof BlockLiquid
|| block instanceof BlockTrapDoor
|| block instanceof BlockEndPortal) {
return false;
}
2018-09-22 16:17:28 +00:00
// door, fence gate, liquid, trapdoor have been accounted for, nothing else uses the world or pos parameters
return block.isPassable(null, null);
2018-09-06 14:48:27 +00:00
}
static boolean isReplacable(int x, int y, int z, IBlockState state, World world) {
// for MovementTraverse and MovementAscend
// block double plant defaults to true when the block doesn't match, so don't need to check that case
// all other overrides just return true or false
// the only case to deal with is snow
/*
* public boolean isReplaceable(IBlockAccess worldIn, BlockPos pos)
* {
* return ((Integer)worldIn.getBlockState(pos).getValue(LAYERS)).intValue() == 1;
* }
*/
2018-09-23 02:46:10 +00:00
Block block = state.getBlock();
if (block instanceof BlockSnow) {
// as before, default to true (mostly because it would otherwise make long distance pathing through snowy biomes impossible)
if (world.getChunk(x >> 4, z >> 4) instanceof EmptyChunk) {
return true;
}
2018-09-23 02:46:10 +00:00
return state.getValue(BlockSnow.LAYERS) == 1;
}
if (block instanceof BlockDoublePlant) {
BlockDoublePlant.EnumPlantType kek = state.getValue(BlockDoublePlant.VARIANT);
return kek == BlockDoublePlant.EnumPlantType.FERN || kek == BlockDoublePlant.EnumPlantType.GRASS;
}
2018-10-15 04:46:41 +00:00
return state.getMaterial().isReplaceable();
}
2018-11-13 21:14:29 +00:00
static boolean isDoorPassable(IPlayerContext ctx, BlockPos doorPos, BlockPos playerPos) {
2018-09-08 04:32:25 +00:00
if (playerPos.equals(doorPos)) {
2018-08-15 06:49:08 +00:00
return false;
2018-09-08 04:32:25 +00:00
}
2018-08-25 22:24:00 +00:00
2018-11-13 21:14:29 +00:00
IBlockState state = BlockStateInterface.get(ctx, doorPos);
2018-09-08 04:32:25 +00:00
if (!(state.getBlock() instanceof BlockDoor)) {
2018-08-25 22:24:00 +00:00
return true;
2018-09-08 04:32:25 +00:00
}
2018-08-25 22:24:00 +00:00
return isHorizontalBlockPassable(doorPos, state, playerPos, BlockDoor.OPEN);
}
2018-11-13 21:14:29 +00:00
static boolean isGatePassable(IPlayerContext ctx, BlockPos gatePos, BlockPos playerPos) {
2018-09-08 04:32:25 +00:00
if (playerPos.equals(gatePos)) {
return false;
2018-09-08 04:32:25 +00:00
}
2018-11-13 21:14:29 +00:00
IBlockState state = BlockStateInterface.get(ctx, gatePos);
2018-09-08 04:32:25 +00:00
if (!(state.getBlock() instanceof BlockFenceGate)) {
return true;
2018-09-08 04:32:25 +00:00
}
return isHorizontalBlockPassable(gatePos, state, playerPos, BlockFenceGate.OPEN);
}
static boolean isHorizontalBlockPassable(BlockPos blockPos, IBlockState blockState, BlockPos playerPos, PropertyBool propertyOpen) {
2018-09-08 04:32:25 +00:00
if (playerPos.equals(blockPos)) {
return false;
2018-09-08 04:32:25 +00:00
}
EnumFacing.Axis facing = blockState.getValue(BlockHorizontal.FACING).getAxis();
boolean open = blockState.getValue(propertyOpen);
2018-08-25 22:24:00 +00:00
EnumFacing.Axis playerFacing;
if (playerPos.north().equals(blockPos) || playerPos.south().equals(blockPos)) {
2018-08-25 22:24:00 +00:00
playerFacing = EnumFacing.Axis.Z;
} else if (playerPos.east().equals(blockPos) || playerPos.west().equals(blockPos)) {
2018-08-25 22:24:00 +00:00
playerFacing = EnumFacing.Axis.X;
2018-08-15 06:49:08 +00:00
} else {
return true;
}
2018-10-27 23:18:03 +00:00
return (facing == playerFacing) == open;
2018-08-15 06:49:08 +00:00
}
2018-08-03 20:31:33 +00:00
static boolean avoidWalkingInto(Block block) {
2018-09-12 01:33:03 +00:00
return block instanceof BlockLiquid
|| block instanceof BlockDynamicLiquid
2018-09-09 15:11:33 +00:00
|| block == Blocks.MAGMA
|| block == Blocks.CACTUS
|| block == Blocks.FIRE
|| block == Blocks.END_PORTAL
|| block == Blocks.WEB;
}
/**
* Can I walk on this block without anything weird happening like me falling
* through? Includes water because we know that we automatically jump on
2018-08-17 19:24:40 +00:00
* water
*
* @return
*/
2018-11-13 21:14:29 +00:00
static boolean canWalkOn(BlockStateInterface bsi, int x, int y, int z, IBlockState state) {
Block block = state.getBlock();
2018-09-09 15:11:33 +00:00
if (block == Blocks.AIR || block == Blocks.MAGMA) {
2018-09-22 18:23:26 +00:00
// early return for most common case (air)
// plus magma, which is a normal cube but it hurts you
2018-09-03 16:15:18 +00:00
return false;
}
2018-09-09 15:11:33 +00:00
if (state.isBlockNormalCube()) {
return true;
}
2018-09-09 15:11:33 +00:00
if (block == Blocks.LADDER || (block == Blocks.VINE && Baritone.settings().allowVines.get())) { // TODO reconsider this
2018-09-01 20:20:27 +00:00
return true;
}
2018-09-09 15:11:33 +00:00
if (block == Blocks.FARMLAND || block == Blocks.GRASS_PATH) {
2018-09-03 16:15:18 +00:00
return true;
2018-08-06 02:09:29 +00:00
}
2018-09-09 15:11:33 +00:00
if (block == Blocks.ENDER_CHEST || block == Blocks.CHEST) {
2018-09-03 18:27:59 +00:00
return true;
}
if (isWater(block)) {
2018-09-22 15:47:02 +00:00
// since this is called literally millions of times per second, the benefit of not allocating millions of useless "pos.up()"
// BlockPos s that we'd just garbage collect immediately is actually noticeable. I don't even think its a decrease in readability
2018-11-13 21:14:29 +00:00
Block up = bsi.get0(x, y + 1, z).getBlock();
2018-09-22 15:47:02 +00:00
if (up == Blocks.WATERLILY) {
2018-08-28 19:30:08 +00:00
return true;
}
if (isFlowing(state) || block == Blocks.FLOWING_WATER) {
2018-09-04 20:57:56 +00:00
// the only scenario in which we can walk on flowing water is if it's under still water with jesus off
return isWater(up) && !Baritone.settings().assumeWalkOnWater.get();
2018-09-04 20:57:56 +00:00
}
2018-08-28 19:53:01 +00:00
// if assumeWalkOnWater is on, we can only walk on water if there isn't water above it
// if assumeWalkOnWater is off, we can only walk on water if there is water above it
return isWater(up) ^ Baritone.settings().assumeWalkOnWater.get();
}
2018-09-09 15:11:33 +00:00
if (block instanceof BlockGlass || block instanceof BlockStainedGlass) {
return true;
}
if (block instanceof BlockSlab) {
if (!Baritone.settings().allowWalkOnBottomSlab.get()) {
if (((BlockSlab) block).isDouble()) {
return true;
}
return state.getValue(BlockSlab.HALF) != BlockSlab.EnumBlockHalf.BOTTOM;
}
return true;
}
2018-10-27 23:18:03 +00:00
return block instanceof BlockStairs;
}
2018-08-02 17:49:31 +00:00
2018-11-13 21:14:29 +00:00
static boolean canWalkOn(IPlayerContext ctx, BetterBlockPos pos, IBlockState state) {
return canWalkOn(new BlockStateInterface(ctx), pos.x, pos.y, pos.z, state);
}
static boolean canWalkOn(IPlayerContext ctx, BetterBlockPos pos) {
return canWalkOn(new BlockStateInterface(ctx), pos.x, pos.y, pos.z);
2018-09-22 16:28:59 +00:00
}
2018-11-13 21:14:29 +00:00
static boolean canWalkOn(BlockStateInterface bsi, int x, int y, int z) {
return canWalkOn(bsi, x, y, z, bsi.get0(x, y, z));
2018-09-22 16:28:59 +00:00
}
2018-11-13 21:14:29 +00:00
static boolean canPlaceAgainst(BlockStateInterface bsi, int x, int y, int z) {
return canPlaceAgainst(bsi.get0(x, y, z));
2018-08-07 02:48:09 +00:00
}
2018-11-13 21:14:29 +00:00
static boolean canPlaceAgainst(BlockStateInterface bsi, BlockPos pos) {
return canPlaceAgainst(bsi.get0(pos.getX(), pos.getY(), pos.getZ()));
2018-09-23 02:46:10 +00:00
}
2018-11-13 21:14:29 +00:00
static boolean canPlaceAgainst(IPlayerContext ctx, BlockPos pos) {
return canPlaceAgainst(new BlockStateInterface(ctx), pos);
2018-09-23 02:46:10 +00:00
}
static boolean canPlaceAgainst(IBlockState state) {
2018-08-28 22:01:24 +00:00
// TODO isBlockNormalCube isn't the best check for whether or not we can place a block against it. e.g. glass isn't normalCube but we can place against it
return state.isBlockNormalCube();
}
2018-09-23 02:46:10 +00:00
static double getMiningDurationTicks(CalculationContext context, int x, int y, int z, boolean includeFalling) {
return getMiningDurationTicks(context, x, y, z, context.get(x, y, z), includeFalling);
2018-09-23 02:46:10 +00:00
}
2018-09-23 02:13:59 +00:00
static double getMiningDurationTicks(CalculationContext context, int x, int y, int z, IBlockState state, boolean includeFalling) {
Block block = state.getBlock();
2018-11-13 21:14:29 +00:00
if (!canWalkThrough(context.bsi(), x, y, z, state)) {
if (!context.canBreakAt(x, y, z)) {
2018-08-02 17:49:31 +00:00
return COST_INF;
}
2018-11-13 21:14:29 +00:00
if (avoidBreaking(context.bsi(), x, y, z, state)) {
2018-08-14 00:15:59 +00:00
return COST_INF;
}
2018-09-23 18:37:39 +00:00
if (block instanceof BlockLiquid) {
return COST_INF;
}
double m = Blocks.CRAFTING_TABLE.equals(block) ? 10 : 1; // TODO see if this is still necessary. it's from MineBot when we wanted to penalize breaking its crafting table
double strVsBlock = context.getToolSet().getStrVsBlock(state);
2018-09-22 16:34:42 +00:00
if (strVsBlock <= 0) {
return COST_INF;
2018-09-08 04:32:25 +00:00
}
double result = m / strVsBlock;
2018-10-03 15:20:24 +00:00
result += context.breakBlockAdditionalCost();
if (includeFalling) {
IBlockState above = context.get(x, y + 1, z);
if (above.getBlock() instanceof BlockFalling) {
2018-09-23 02:13:59 +00:00
result += getMiningDurationTicks(context, x, y + 1, z, above, true);
}
}
return result;
2018-08-02 17:49:31 +00:00
}
return 0; // we won't actually mine it, so don't check fallings above
2018-08-02 17:49:31 +00:00
}
2018-08-04 02:14:50 +00:00
static boolean isBottomSlab(IBlockState state) {
return state.getBlock() instanceof BlockSlab
&& !((BlockSlab) state.getBlock()).isDouble()
&& state.getValue(BlockSlab.HALF) == BlockSlab.EnumBlockHalf.BOTTOM;
}
2018-08-04 02:14:50 +00:00
/**
* AutoTool for a specific block
*
* @param b the blockstate to mine
*/
static void switchToBestToolFor(IPlayerContext ctx, IBlockState b) {
switchToBestToolFor(ctx, b, new ToolSet(ctx.player()));
2018-08-04 02:14:50 +00:00
}
/**
* AutoTool for a specific block with precomputed ToolSet data
*
* @param b the blockstate to mine
* @param ts previously calculated ToolSet
*/
static void switchToBestToolFor(IPlayerContext ctx, IBlockState b, ToolSet ts) {
ctx.player().inventory.currentItem = ts.getBestSlot(b.getBlock());
2018-08-04 02:14:50 +00:00
}
2018-08-06 22:53:35 +00:00
static boolean throwaway(IPlayerContext ctx, boolean select) {
EntityPlayerSP p = ctx.player();
2018-08-06 22:53:35 +00:00
NonNullList<ItemStack> inv = p.inventory.mainInventory;
for (byte i = 0; i < 9; i++) {
ItemStack item = inv.get(i);
// this usage of settings() is okay because it's only called once during pathing
// (while creating the CalculationContext at the very beginning)
// and then it's called during execution
// since this function is never called during cost calculation, we don't need to migrate
// acceptableThrowawayItems to the CalculationContext
if (Baritone.settings().acceptableThrowawayItems.get().contains(item.getItem())) {
2018-08-11 22:03:14 +00:00
if (select) {
p.inventory.currentItem = i;
}
2018-08-06 22:53:35 +00:00
return true;
}
}
2018-10-10 23:29:48 +00:00
if (Baritone.settings().acceptableThrowawayItems.get().contains(p.inventory.offHandInventory.get(0).getItem())) {
// main hand takes precedence over off hand
// that means that if we have block A selected in main hand and block B in off hand, right clicking places block B
// we've already checked above ^ and the main hand can't possible have an acceptablethrowawayitem
// so we need to select in the main hand something that doesn't right click
// so not a shovel, not a hoe, not a block, etc
for (byte i = 0; i < 9; i++) {
ItemStack item = inv.get(i);
if (item.isEmpty() || item.getItem() instanceof ItemPickaxe) {
if (select) {
p.inventory.currentItem = i;
}
return true;
}
}
}
2018-08-06 22:53:35 +00:00
return false;
}
static void moveTowards(IPlayerContext ctx, MovementState state, BlockPos pos) {
EntityPlayerSP player = ctx.player();
state.setTarget(new MovementTarget(
2018-11-10 02:55:50 +00:00
new Rotation(RotationUtils.calcRotationFromVec3d(player.getPositionEyes(1.0F),
2018-10-14 05:55:30 +00:00
VecUtils.getBlockPosCenter(pos),
2018-11-10 02:55:50 +00:00
new Rotation(player.rotationYaw, player.rotationPitch)).getYaw(), player.rotationPitch),
false
)).setInput(Input.MOVE_FORWARD, true);
}
/**
* Returns whether or not the specified block is
* water, regardless of whether or not it is flowing.
*
* @param b The block
* @return Whether or not the block is water
*/
static boolean isWater(Block b) {
return b == Blocks.FLOWING_WATER || b == Blocks.WATER;
}
/**
* Returns whether or not the block at the specified pos is
* water, regardless of whether or not it is flowing.
*
2018-11-13 21:14:29 +00:00
* @param ctx The player context
* @param bp The block pos
* @return Whether or not the block is water
*/
2018-11-13 21:14:29 +00:00
static boolean isWater(IPlayerContext ctx, BlockPos bp) {
return isWater(BlockStateInterface.getBlock(ctx, bp));
}
static boolean isLava(Block b) {
return b == Blocks.FLOWING_LAVA || b == Blocks.LAVA;
}
/**
* Returns whether or not the specified pos has a liquid
*
2018-11-13 21:14:29 +00:00
* @param ctx The player context
* @param p The pos
* @return Whether or not the block is a liquid
*/
2018-11-13 21:14:29 +00:00
static boolean isLiquid(IPlayerContext ctx, BlockPos p) {
return BlockStateInterface.getBlock(ctx, p) instanceof BlockLiquid;
}
static boolean isFlowing(IBlockState state) {
// Will be IFluidState in 1.13
return state.getBlock() instanceof BlockLiquid
&& state.getPropertyKeys().contains(BlockLiquid.LEVEL)
&& state.getValue(BlockLiquid.LEVEL) != 0;
}
}