From fa63606d90354d0d8dd3f8905b8452cb1fe91c63 Mon Sep 17 00:00:00 2001 From: Lightling Date: Thu, 12 Sep 2019 21:32:02 -0400 Subject: [PATCH] added more to block reference, added validation code and surroundings code to utility --- .../gibsoniacraft/util/BlockRef.java | 34 +++++ .../gibsoniacraft/util/ToolUtil.java | 125 ++++++++++++++++++ 2 files changed, 159 insertions(+) diff --git a/plugin/src/lightling/gibsoniacraft/util/BlockRef.java b/plugin/src/lightling/gibsoniacraft/util/BlockRef.java index 89eaf2d..aa7bcac 100644 --- a/plugin/src/lightling/gibsoniacraft/util/BlockRef.java +++ b/plugin/src/lightling/gibsoniacraft/util/BlockRef.java @@ -6,6 +6,9 @@ import org.bukkit.Material; public class BlockRef { + /** + * A list of all valid hammer blocks (must be valid pickaxe blocks) + */ public static ArrayList ValidHammerBlocks = new ArrayList() {{ add(Material.COAL_ORE); @@ -31,12 +34,19 @@ public class BlockRef add(Material.DIORITE); add(Material.ANDESITE); add(Material.GRANITE); + add(Material.ICE); + add(Material.BLUE_ICE); + add(Material.FROSTED_ICE); + add(Material.PACKED_ICE); add(Material.END_STONE); add(Material.NETHERRACK); add(Material.NETHER_QUARTZ_ORE); }}; + /** + * A list of all valid excavator blocks (must be valid shovel blocks) + */ public static ArrayList ValidExcavatorBlocks = new ArrayList() {{ add(Material.DIRT); @@ -55,4 +65,28 @@ public class BlockRef add(Material.SOUL_SAND); }}; + + /** + * A list of all valid hammers (pickaxes) + */ + public static ArrayList ValidHammers = new ArrayList() + {{ + add(Material.WOODEN_PICKAXE); + add(Material.STONE_PICKAXE); + add(Material.IRON_PICKAXE); + add(Material.GOLDEN_PICKAXE); + add(Material.DIAMOND_PICKAXE); + }}; + + /** + * A list of all valid excavators (shovels) + */ + public static ArrayList ValidExcavators = new ArrayList() + {{ + add(Material.WOODEN_SHOVEL); + add(Material.STONE_SHOVEL); + add(Material.IRON_SHOVEL); + add(Material.GOLDEN_SHOVEL); + add(Material.DIAMOND_SHOVEL); + }}; } diff --git a/plugin/src/lightling/gibsoniacraft/util/ToolUtil.java b/plugin/src/lightling/gibsoniacraft/util/ToolUtil.java index 093b2a2..f57e591 100644 --- a/plugin/src/lightling/gibsoniacraft/util/ToolUtil.java +++ b/plugin/src/lightling/gibsoniacraft/util/ToolUtil.java @@ -1,16 +1,141 @@ package lightling.gibsoniacraft.util; +import java.util.ArrayList; +import java.util.Collections; + import org.bukkit.Material; +import org.bukkit.block.Block; +import org.bukkit.block.BlockFace; +import org.bukkit.World; public class ToolUtil { + /** + * Determines whether a block is mineable + * @param mat The material being checked + * @return Whether the block is mineable + */ public boolean IsMineable(Material mat) { return BlockRef.ValidHammerBlocks.contains(mat); } + /** + * Determines whether a block is diggable + * @param mat The material being checked + * @return Whether the block is diggable + */ public boolean IsDiggable(Material mat) { return BlockRef.ValidExcavatorBlocks.contains(mat); } + + /** + * Determines whether an item is a valid hammer + * @param mat The material being checked + * @return Whether the item is a valid hammer + */ + public boolean IsHammer(Material mat) + { + return BlockRef.ValidHammers.contains(mat); + } + + /** + * Determines whether an item is a valid excavator + * @param mat The material being checked + * @return Whether the item is a valid excavator + */ + public boolean IsExcavator(Material mat) + { + return BlockRef.ValidExcavators.contains(mat); + } + + /** + * Determines whether a valid hammer can take place + * @param ham The item that should be a hammer + * @param block The block that should be mineable + * @return Valid or invalid action + */ + public boolean IsHammerable(Material ham, Material block) + { + return IsMineable(block) && IsHammer(ham); + } + + /** + * Determines whether a valid excavation can take place + * @param exc The item that should be an excavator + * @param block The block that should be diggable + * @return Valid or invalid action + */ + public boolean IsExcavatable(Material exc, Material block) + { + return IsDiggable(block) && IsExcavator(exc); + } + + /** + * Grabs the surrounding blocks in the world from the one that was mined/dug, and adds them to a list + * @param blockFace The face that was targeted (changes the direction of the 3x3 grid) + * @param target The block that was targeted + * @return A list containing the surrounding blocks + */ + public static ArrayList GetSurroundingBlocks(BlockFace blockFace, Block target) + { + // Create the list to work with + ArrayList blocks = new ArrayList(); + + // Reference the world-space + World world = target.getWorld(); + + // Determine the anchor XYZ coordinates + int x = target.getX(); + int y = target.getY(); + int z = target.getZ(); + + // Determine the direction of the 3x3 grid + switch (blockFace) + { + case UP: + case DOWN: { + blocks.add(world.getBlockAt(x + 1, y, z)); + blocks.add(world.getBlockAt(x - 1, y, z)); + blocks.add(world.getBlockAt(x, y, z + 1)); + blocks.add(world.getBlockAt(x, y, z - 1)); + blocks.add(world.getBlockAt(x + 1, y, z + 1)); + blocks.add(world.getBlockAt(x - 1, y, z + 1)); + blocks.add(world.getBlockAt(x + 1, y, z - 1)); + blocks.add(world.getBlockAt(x - 1, y, z - 1)); + break; + } + case EAST: + case WEST: { + blocks.add(world.getBlockAt(x, y, z + 1)); + blocks.add(world.getBlockAt(x, y, z - 1)); + blocks.add(world.getBlockAt(x, y + 1, z)); + blocks.add(world.getBlockAt(x, y - 1, z)); + blocks.add(world.getBlockAt(x, y + 1, z + 1)); + blocks.add(world.getBlockAt(x, y - 1, z + 1)); + blocks.add(world.getBlockAt(x, y + 1, z - 1)); + blocks.add(world.getBlockAt(x, y - 1, z - 1)); + break; + } + case NORTH: + case SOUTH: { + blocks.add(world.getBlockAt(x + 1, y, z)); + blocks.add(world.getBlockAt(x - 1, y, z)); + blocks.add(world.getBlockAt(x, y + 1, z)); + blocks.add(world.getBlockAt(x, y - 1, z)); + blocks.add(world.getBlockAt(x + 1, y + 1, z)); + blocks.add(world.getBlockAt(x - 1, y + 1, z)); + blocks.add(world.getBlockAt(x + 1, y - 1, z)); + blocks.add(world.getBlockAt(x - 1, y - 1, z)); + break; + } + default: + break; + } + + blocks.removeAll(Collections.singleton((Object)null)); + + return blocks; + } }