baritone/src/main/java/baritone/utils/BlockStateInterface.java

131 lines
4.4 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.utils;
2018-08-22 20:15:56 +00:00
import baritone.Baritone;
import baritone.cache.CachedRegion;
2018-09-11 17:28:03 +00:00
import baritone.cache.WorldData;
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
import net.minecraft.init.Blocks;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
2018-08-08 00:41:13 +00:00
import net.minecraft.world.chunk.Chunk;
2018-09-09 15:53:15 +00:00
/**
* Wraps get for chuck caching capability
*
* @author leijurv
*/
2018-08-08 00:41:13 +00:00
public class BlockStateInterface implements Helper {
2018-11-12 01:36:54 +00:00
private final World world;
private final WorldData worldData;
private Chunk prev = null;
private CachedRegion prevCached = null;
2018-09-09 16:50:19 +00:00
2018-10-14 05:23:49 +00:00
private static final IBlockState AIR = Blocks.AIR.getDefaultState();
2018-11-12 01:36:54 +00:00
public BlockStateInterface(World world, WorldData worldData) {
this.worldData = worldData;
this.world = world;
2018-09-09 15:53:15 +00:00
}
2018-11-12 01:36:54 +00:00
public static Block getBlock(BlockPos pos) { // won't be called from the pathing thread because the pathing thread doesn't make a single blockpos pog
return get(pos).getBlock();
}
2018-11-12 01:36:54 +00:00
public static IBlockState get(BlockPos pos) {
// this is the version thats called from updatestate and stuff, not from cost calculation
// doesn't need to be fast or cached actually
return Helper.HELPER.world().getBlockState(pos);
}
2018-11-12 01:36:54 +00:00
public IBlockState get0(int x, int y, int z) {
2018-08-08 00:41:13 +00:00
// Invalid vertical position
2018-09-09 15:53:15 +00:00
if (y < 0 || y >= 256) {
2018-09-09 16:50:19 +00:00
return AIR;
2018-09-08 04:32:25 +00:00
}
2018-08-08 00:41:13 +00:00
if (!Baritone.settings().pathThroughCachedOnly.get()) {
Chunk cached = prev;
// there's great cache locality in block state lookups
// generally it's within each movement
// if it's the same chunk as last time
// we can just skip the mc.world.getChunk lookup
// which is a Long2ObjectOpenHashMap.get
2018-09-23 15:05:59 +00:00
// see issue #113
2018-09-09 15:53:15 +00:00
if (cached != null && cached.x == x >> 4 && cached.z == z >> 4) {
return cached.getBlockState(x, y, z);
}
Chunk chunk = world.getChunk(x >> 4, z >> 4);
if (chunk.isLoaded()) {
prev = chunk;
2018-09-09 15:53:15 +00:00
return chunk.getBlockState(x, y, z);
}
2018-08-14 03:17:16 +00:00
}
2018-09-09 16:50:19 +00:00
// same idea here, skip the Long2ObjectOpenHashMap.get if at all possible
// except here, it's 512x512 tiles instead of 16x16, so even better repetition
CachedRegion cached = prevCached;
2018-09-11 18:56:59 +00:00
if (cached == null || cached.getX() != x >> 9 || cached.getZ() != z >> 9) {
if (worldData == null) {
2018-09-09 16:50:19 +00:00
return AIR;
}
CachedRegion region = worldData.cache.getRegion(x >> 9, z >> 9);
2018-09-11 18:56:59 +00:00
if (region == null) {
return AIR;
2018-08-08 00:41:13 +00:00
}
2018-09-11 18:56:59 +00:00
prevCached = region;
cached = region;
}
IBlockState type = cached.getBlock(x & 511, y, z & 511);
if (type == null) {
return AIR;
2018-08-08 00:41:13 +00:00
}
2018-09-11 18:56:59 +00:00
return type;
}
2018-11-12 01:36:54 +00:00
public boolean isLoaded(int x, int z) {
Chunk prevChunk = prev;
if (prevChunk != null && prevChunk.x == x >> 4 && prevChunk.z == z >> 4) {
return true;
}
2018-11-12 01:36:54 +00:00
prevChunk = world.getChunk(x >> 4, z >> 4);
2018-09-24 19:44:34 +00:00
if (prevChunk.isLoaded()) {
prev = prevChunk;
return true;
}
CachedRegion prevRegion = prevCached;
if (prevRegion != null && prevRegion.getX() == x >> 9 && prevRegion.getZ() == z >> 9) {
return prevRegion.isCached(x & 511, z & 511);
}
2018-11-12 01:36:54 +00:00
if (worldData == null) {
return false;
}
2018-11-12 01:36:54 +00:00
prevRegion = worldData.cache.getRegion(x >> 9, z >> 9);
2018-09-24 19:44:34 +00:00
if (prevRegion == null) {
return false;
}
2018-09-24 19:44:34 +00:00
prevCached = prevRegion;
return prevRegion.isCached(x & 511, z & 511);
}
}