1
0
Fork 0

fixed crafting recipe for axe, ensured initial target block must be log in order for axe to function

This commit is contained in:
lightling 2019-09-14 14:26:18 -04:00
parent c3b90f4df1
commit 313105bdd9
3 changed files with 49 additions and 43 deletions

View file

@ -4,6 +4,7 @@ import org.bukkit.plugin.java.JavaPlugin;
import lightling.gibsoniacraft.crafting.Excavator; import lightling.gibsoniacraft.crafting.Excavator;
import lightling.gibsoniacraft.crafting.Hammer; import lightling.gibsoniacraft.crafting.Hammer;
import lightling.gibsoniacraft.crafting.LumberAxe;
import lightling.gibsoniacraft.util.BlockListener; import lightling.gibsoniacraft.util.BlockListener;
import lightling.gibsoniacraft.util.PlayerInteractListener; import lightling.gibsoniacraft.util.PlayerInteractListener;
@ -11,6 +12,7 @@ public final class GibsoniaCraft extends JavaPlugin {
private Excavator excavatorClass; private Excavator excavatorClass;
private Hammer hammerClass; private Hammer hammerClass;
private LumberAxe lumberAxeClass;
private PlayerInteractListener pListener; private PlayerInteractListener pListener;
private BlockListener bListener; private BlockListener bListener;
@ -18,6 +20,7 @@ public final class GibsoniaCraft extends JavaPlugin {
public void onEnable() { public void onEnable() {
excavatorClass = new Excavator(this); excavatorClass = new Excavator(this);
hammerClass = new Hammer(this); hammerClass = new Hammer(this);
lumberAxeClass = new LumberAxe(this);
pListener = new PlayerInteractListener(this); pListener = new PlayerInteractListener(this);
bListener = new BlockListener(this); bListener = new BlockListener(this);
} }

View file

@ -18,7 +18,7 @@ import org.bukkit.plugin.Plugin; // Involved in setting up namespaced-key
import org.bukkit.Server; // For registering recipes on the server import org.bukkit.Server; // For registering recipes on the server
/** /**
* An LumberAxe is a shovel-based item that digs in a 3x3 radius as opposed to a singular block * An LumberAxe is a AXE-based item that digs in a 3x3 radius as opposed to a singular block
* @author Lightling * @author Lightling
*/ */
public class LumberAxe public class LumberAxe
@ -62,11 +62,11 @@ public class LumberAxe
private void SetupItems(final JavaPlugin plugin) private void SetupItems(final JavaPlugin plugin)
{ {
// Define the LumberAxe items // Define the LumberAxe items
woodLumberAxe = new ItemStack(Material.WOODEN_SHOVEL); woodLumberAxe = new ItemStack(Material.WOODEN_AXE);
stoneLumberAxe = new ItemStack(Material.STONE_SHOVEL); stoneLumberAxe = new ItemStack(Material.STONE_AXE);
ironLumberAxe = new ItemStack(Material.IRON_SHOVEL); ironLumberAxe = new ItemStack(Material.IRON_AXE);
goldLumberAxe = new ItemStack(Material.GOLDEN_SHOVEL); goldLumberAxe = new ItemStack(Material.GOLDEN_AXE);
diamondLumberAxe = new ItemStack(Material.DIAMOND_SHOVEL); diamondLumberAxe = new ItemStack(Material.DIAMOND_AXE);
// Define the LumberAxe namespaced keys // Define the LumberAxe namespaced keys
woodLumAxeKey = new NamespacedKey((Plugin)plugin, "w_LumberAxe"); woodLumAxeKey = new NamespacedKey((Plugin)plugin, "w_LumberAxe");
@ -147,15 +147,15 @@ public class LumberAxe
// Define recipes for the LumberAxes // Define recipes for the LumberAxes
woodLumAxeRecipe.setIngredient('x', woodChoice); woodLumAxeRecipe.setIngredient('x', woodChoice);
woodLumAxeRecipe.setIngredient('i', Material.WOODEN_SHOVEL); woodLumAxeRecipe.setIngredient('i', Material.WOODEN_AXE);
stoneLumAxeRecipe.setIngredient('x', Material.COBBLESTONE); stoneLumAxeRecipe.setIngredient('x', Material.COBBLESTONE);
stoneLumAxeRecipe.setIngredient('i', Material.STONE_SHOVEL); stoneLumAxeRecipe.setIngredient('i', Material.STONE_AXE);
ironLumAxeRecipe.setIngredient('x', Material.IRON_INGOT); ironLumAxeRecipe.setIngredient('x', Material.IRON_INGOT);
ironLumAxeRecipe.setIngredient('i', Material.IRON_SHOVEL); ironLumAxeRecipe.setIngredient('i', Material.IRON_AXE);
goldLumAxeRecipe.setIngredient('x', Material.GOLD_INGOT); goldLumAxeRecipe.setIngredient('x', Material.GOLD_INGOT);
goldLumAxeRecipe.setIngredient('i', Material.GOLDEN_SHOVEL); goldLumAxeRecipe.setIngredient('i', Material.GOLDEN_AXE);
diamondLumAxeRecipe.setIngredient('x', Material.DIAMOND); diamondLumAxeRecipe.setIngredient('x', Material.DIAMOND);
diamondLumAxeRecipe.setIngredient('i', Material.DIAMOND_SHOVEL); diamondLumAxeRecipe.setIngredient('i', Material.DIAMOND_AXE);
// Register recipes on the server // Register recipes on the server
Server server = plugin.getServer(); Server server = plugin.getServer();

View file

@ -208,46 +208,49 @@ public class ToolUtil
// Create control for loop // Create control for loop
boolean moreBlocks = true; boolean moreBlocks = true;
// Grab all logs in a tree // Grab all logs in a tree, ensuring target block is a log first
do if (BlockRef.ValidLumberAxeBlocks.contains(target.getType()))
{ {
// Variable that ends loop if remains 0 do
int blocksAbove = 0;
// Grab the surrounding blocks that may be wood
for (int i = -2; i <= 2; i++)
{ {
for (int j = -2; j <= 2; j++) // Variable that ends loop if remains 0
int blocksAbove = 0;
// Grab the surrounding blocks that may be wood
for (int i = -2; i <= 2; i++)
{ {
// Add all the surrounding logs to the list for (int j = -2; j <= 2; j++)
Block temp = world.getBlockAt(x + i, y, z + j);
if (BlockRef.ValidLumberAxeBlocks.contains(temp.getType()))
{ {
blocks.add(temp); // Add all the surrounding logs to the list
} Block temp = world.getBlockAt(x + i, y, z + j);
if (BlockRef.ValidLumberAxeBlocks.contains(temp.getType()))
// Determine if there are still blocks left {
Block tempAbove = world.getBlockAt(x + i, y + 1, z + j); blocks.add(temp);
if (BlockRef.ValidLumberAxeBlocks.contains(temp.getType())) }
{
blocksAbove++; // Determine if there are still blocks left
Block tempAbove = world.getBlockAt(x + i, y + 1, z + j);
if (BlockRef.ValidLumberAxeBlocks.contains(temp.getType()))
{
blocksAbove++;
}
} }
} }
// If there are still blocks left, go up a level for the for-loop
if (blocksAbove != 0)
{
y++;
}
// Otherwise, end the loop
else
{
moreBlocks = false;
}
} }
while (moreBlocks);
// If there are still blocks left, go up a level for the for-loop
if (blocksAbove != 0)
{
y++;
}
// Otherwise, end the loop
else
{
moreBlocks = false;
}
} }
while (moreBlocks);
return blocks; return blocks;
} }