/* * This file is part of ViaVersion - https://github.com/ViaVersion/ViaVersion * Copyright (C) 2016-2023 ViaVersion and contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.viaversion.viaversion.api.minecraft.chunks; import com.github.steveice10.opennbt.tag.builtin.CompoundTag; import com.viaversion.viaversion.api.minecraft.blockentity.BlockEntity; import org.checkerframework.checker.nullness.qual.Nullable; import java.util.BitSet; import java.util.List; public class Chunk1_18 implements Chunk { protected final int x; protected final int z; protected ChunkSection[] sections; protected CompoundTag heightMap; protected final List blockEntities; public Chunk1_18(int x, int z, ChunkSection[] sections, CompoundTag heightMap, List blockEntities) { this.x = x; this.z = z; this.sections = sections; this.heightMap = heightMap; this.blockEntities = blockEntities; } @Override public boolean isBiomeData() { return false; } @Override public int getX() { return x; } @Override public int getZ() { return z; } @Override public boolean isFullChunk() { return true; } @Override public boolean isIgnoreOldLightData() { return false; } @Override public void setIgnoreOldLightData(boolean ignoreOldLightData) { throw new UnsupportedOperationException(); } @Override public int getBitmask() { return -1; } @Override public void setBitmask(int bitmask) { throw new UnsupportedOperationException(); } @Override public @Nullable BitSet getChunkMask() { return null; } @Override public void setChunkMask(BitSet chunkSectionMask) { throw new UnsupportedOperationException(); } @Override public ChunkSection[] getSections() { return sections; } @Override public void setSections(ChunkSection[] sections) { this.sections = sections; } @Override public int @Nullable [] getBiomeData() { return null; } @Override public void setBiomeData(int @Nullable [] biomeData) { throw new UnsupportedOperationException(); } @Override public @Nullable CompoundTag getHeightMap() { return heightMap; } @Override public void setHeightMap(final CompoundTag heightMap) { this.heightMap = heightMap; } @Override public List getBlockEntities() { throw new UnsupportedOperationException(); } @Override public List blockEntities() { return blockEntities; } }