Implement double-chest convenience functions

This commit is contained in:
Gabriel Tofvesson 2021-06-25 16:40:24 +02:00
parent ab8029b3b6
commit a27934b3d4

View File

@ -0,0 +1,34 @@
package dev.w1zzrd.spigot.wizcompat.block;
import org.bukkit.block.Block;
import org.bukkit.block.Chest;
import org.bukkit.block.DoubleChest;
import org.bukkit.inventory.InventoryHolder;
import java.util.Objects;
public final class Chests {
private Chests() { throw new UnsupportedOperationException("Functional class"); }
public static InventoryHolder getChestInventoryHolder(final Chest chest) {
return Objects.requireNonNull(chest.getBlockInventory().getHolder()).getInventory().getHolder();
}
public static boolean isDoubleChest(final Block block) {
return block.getState() instanceof Chest && getChestInventoryHolder((Chest) block.getState()) instanceof DoubleChest;
}
public static Block getLeftChest(final Chest chest) {
if (isDoubleChest(chest.getBlock()))
return ((Chest) Objects.requireNonNull(((DoubleChest) getChestInventoryHolder(chest)).getLeftSide())).getBlock();
else
return chest.getBlock();
}
public static Block getRightChest(final Chest chest) {
if (isDoubleChest(chest.getBlock()))
return ((Chest) Objects.requireNonNull(((DoubleChest) getChestInventoryHolder(chest)).getRightSide())).getBlock();
else
return chest.getBlock();
}
}