/* * Decompiled with CFR 0.152. * * Could not load the following classes: * com.mojang.serialization.Codec * io.netty.buffer.ByteBuf * org.jspecify.annotations.Nullable */ package net.minecraft.world.level; import com.mojang.serialization.Codec; import io.netty.buffer.ByteBuf; import java.util.Spliterators; import java.util.function.Consumer; import java.util.stream.IntStream; import java.util.stream.Stream; import java.util.stream.StreamSupport; import net.minecraft.core.BlockPos; import net.minecraft.core.SectionPos; import net.minecraft.network.FriendlyByteBuf; import net.minecraft.network.codec.StreamCodec; import net.minecraft.util.Util; import net.minecraft.world.level.chunk.status.ChunkPyramid; import net.minecraft.world.level.chunk.status.ChunkStatus; import org.jspecify.annotations.Nullable; public class ChunkPos { public static final Codec CODEC = Codec.INT_STREAM.comapFlatMap(input -> Util.fixedSize(input, 2).map(ints -> new ChunkPos(ints[0], ints[1])), pos -> IntStream.of(pos.x, pos.z)).stable(); public static final StreamCodec STREAM_CODEC = new StreamCodec(){ @Override public ChunkPos decode(ByteBuf input) { return FriendlyByteBuf.readChunkPos(input); } @Override public void encode(ByteBuf output, ChunkPos value) { FriendlyByteBuf.writeChunkPos(output, value); } }; private static final int SAFETY_MARGIN = 1056; public static final long INVALID_CHUNK_POS = ChunkPos.asLong(1875066, 1875066); private static final int SAFETY_MARGIN_CHUNKS = (32 + ChunkPyramid.GENERATION_PYRAMID.getStepTo(ChunkStatus.FULL).accumulatedDependencies().size() + 1) * 2; public static final int MAX_COORDINATE_VALUE = SectionPos.blockToSectionCoord(BlockPos.MAX_HORIZONTAL_COORDINATE) - SAFETY_MARGIN_CHUNKS; public static final ChunkPos ZERO = new ChunkPos(0, 0); private static final long COORD_BITS = 32L; private static final long COORD_MASK = 0xFFFFFFFFL; private static final int REGION_BITS = 5; public static final int REGION_SIZE = 32; private static final int REGION_MASK = 31; public static final int REGION_MAX_INDEX = 31; public final int x; public final int z; private static final int HASH_A = 1664525; private static final int HASH_C = 1013904223; private static final int HASH_Z_XOR = -559038737; public ChunkPos(int x, int z) { this.x = x; this.z = z; } public ChunkPos(BlockPos pos) { this.x = SectionPos.blockToSectionCoord(pos.getX()); this.z = SectionPos.blockToSectionCoord(pos.getZ()); } public ChunkPos(long key) { this.x = (int)key; this.z = (int)(key >> 32); } public static ChunkPos minFromRegion(int regionX, int regionZ) { return new ChunkPos(regionX << 5, regionZ << 5); } public static ChunkPos maxFromRegion(int regionX, int regionZ) { return new ChunkPos((regionX << 5) + 31, (regionZ << 5) + 31); } public long toLong() { return ChunkPos.asLong(this.x, this.z); } public static long asLong(int x, int z) { return (long)x & 0xFFFFFFFFL | ((long)z & 0xFFFFFFFFL) << 32; } public static long asLong(BlockPos pos) { return ChunkPos.asLong(SectionPos.blockToSectionCoord(pos.getX()), SectionPos.blockToSectionCoord(pos.getZ())); } public static int getX(long pos) { return (int)(pos & 0xFFFFFFFFL); } public static int getZ(long pos) { return (int)(pos >>> 32 & 0xFFFFFFFFL); } public int hashCode() { return ChunkPos.hash(this.x, this.z); } public static int hash(int x, int z) { int xTransform = 1664525 * x + 1013904223; int zTransform = 1664525 * (z ^ 0xDEADBEEF) + 1013904223; return xTransform ^ zTransform; } public boolean equals(Object o) { if (this == o) { return true; } if (o instanceof ChunkPos) { ChunkPos chunkPos = (ChunkPos)o; return this.x == chunkPos.x && this.z == chunkPos.z; } return false; } public int getMiddleBlockX() { return this.getBlockX(8); } public int getMiddleBlockZ() { return this.getBlockZ(8); } public int getMinBlockX() { return SectionPos.sectionToBlockCoord(this.x); } public int getMinBlockZ() { return SectionPos.sectionToBlockCoord(this.z); } public int getMaxBlockX() { return this.getBlockX(15); } public int getMaxBlockZ() { return this.getBlockZ(15); } public int getRegionX() { return this.x >> 5; } public int getRegionZ() { return this.z >> 5; } public int getRegionLocalX() { return this.x & 0x1F; } public int getRegionLocalZ() { return this.z & 0x1F; } public BlockPos getBlockAt(int x, int y, int z) { return new BlockPos(this.getBlockX(x), y, this.getBlockZ(z)); } public int getBlockX(int offset) { return SectionPos.sectionToBlockCoord(this.x, offset); } public int getBlockZ(int offset) { return SectionPos.sectionToBlockCoord(this.z, offset); } public BlockPos getMiddleBlockPosition(int y) { return new BlockPos(this.getMiddleBlockX(), y, this.getMiddleBlockZ()); } public boolean contains(BlockPos pos) { return pos.getX() >= this.getMinBlockX() && pos.getZ() >= this.getMinBlockZ() && pos.getX() <= this.getMaxBlockX() && pos.getZ() <= this.getMaxBlockZ(); } public String toString() { return "[" + this.x + ", " + this.z + "]"; } public BlockPos getWorldPosition() { return new BlockPos(this.getMinBlockX(), 0, this.getMinBlockZ()); } public int getChessboardDistance(ChunkPos pos) { return this.getChessboardDistance(pos.x, pos.z); } public int getChessboardDistance(int x, int z) { return Math.max(Math.abs(this.x - x), Math.abs(this.z - z)); } public int distanceSquared(ChunkPos pos) { return this.distanceSquared(pos.x, pos.z); } public int distanceSquared(long pos) { return this.distanceSquared(ChunkPos.getX(pos), ChunkPos.getZ(pos)); } private int distanceSquared(int x, int z) { int deltaX = x - this.x; int deltaZ = z - this.z; return deltaX * deltaX + deltaZ * deltaZ; } public static Stream rangeClosed(ChunkPos center, int radius) { return ChunkPos.rangeClosed(new ChunkPos(center.x - radius, center.z - radius), new ChunkPos(center.x + radius, center.z + radius)); } public static Stream rangeClosed(final ChunkPos from, final ChunkPos to) { int xSize = Math.abs(from.x - to.x) + 1; int zSize = Math.abs(from.z - to.z) + 1; final int xDiff = from.x < to.x ? 1 : -1; final int zDiff = from.z < to.z ? 1 : -1; return StreamSupport.stream(new Spliterators.AbstractSpliterator((long)(xSize * zSize), 64){ private @Nullable ChunkPos pos; @Override public boolean tryAdvance(Consumer action) { if (this.pos == null) { this.pos = from; } else { int x = this.pos.x; int z = this.pos.z; if (x == to.x) { if (z == to.z) { return false; } this.pos = new ChunkPos(from.x, z + zDiff); } else { this.pos = new ChunkPos(x + xDiff, z); } } action.accept(this.pos); return true; } }, false); } }