baritone/src/main/java/baritone/pathing/movement/movements/MovementDownward.java

82 lines
2.8 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.movements;
2018-08-06 22:23:08 +00:00
2018-08-22 20:15:56 +00:00
import baritone.pathing.movement.CalculationContext;
import baritone.pathing.movement.Movement;
import baritone.pathing.movement.MovementHelper;
import baritone.pathing.movement.MovementState;
import baritone.utils.BlockStateInterface;
import baritone.utils.pathing.BetterBlockPos;
2018-08-06 22:23:08 +00:00
import net.minecraft.block.Block;
2018-08-17 19:24:40 +00:00
import net.minecraft.block.state.IBlockState;
2018-09-03 16:15:18 +00:00
import net.minecraft.init.Blocks;
2018-08-06 22:23:08 +00:00
import net.minecraft.util.math.BlockPos;
public class MovementDownward extends Movement {
private int numTicks = 0;
public MovementDownward(BetterBlockPos start, BetterBlockPos end) {
super(start, end, new BlockPos[]{end});
2018-08-06 22:23:08 +00:00
}
2018-08-23 18:14:37 +00:00
@Override
public void reset() {
super.reset();
numTicks = 0;
}
@Override
protected double calculateCost(CalculationContext context) {
if (!MovementHelper.canWalkOn(dest.down())) {
return COST_INF;
}
2018-08-17 19:24:40 +00:00
IBlockState d = BlockStateInterface.get(dest);
Block td = d.getBlock();
2018-09-03 16:15:18 +00:00
boolean ladder = td == Blocks.LADDER || td == Blocks.VINE;
if (ladder) {
return LADDER_DOWN_ONE_COST;
} else {
// we're standing on it, while it might be block falling, it'll be air by the time we get here in the movement
return FALL_N_BLOCKS_COST[1] + MovementHelper.getMiningDurationTicks(context, dest, d, false);
}
}
2018-08-06 22:23:08 +00:00
@Override
public MovementState updateState(MovementState state) {
super.updateState(state);
2018-09-08 04:32:25 +00:00
if (state.getStatus() != MovementState.MovementStatus.RUNNING) {
return state;
2018-09-08 04:32:25 +00:00
}
2018-08-14 15:28:35 +00:00
if (playerFeet().equals(dest)) {
return state.setStatus(MovementState.MovementStatus.SUCCESS);
2018-08-14 15:28:35 +00:00
}
double diffX = player().posX - (dest.getX() + 0.5);
double diffZ = player().posZ - (dest.getZ() + 0.5);
double ab = Math.sqrt(diffX * diffX + diffZ * diffZ);
if (numTicks++ < 10 && ab < 0.2) {
return state;
}
MovementHelper.moveTowards(state, positionsToBreak[0]);
return state;
2018-08-06 22:23:08 +00:00
}
}