package com.thevoxelbox.voxelsniper.brush; import com.thevoxelbox.voxelsniper.Message; import com.thevoxelbox.voxelsniper.SnipeData; import org.bukkit.ChatColor; /** * The CloneStamp class is used to create a collection of blocks in a cylinder shape according to the selection the player has set. * @author Voxel */ public class CloneStampBrush extends StampBrush { /** * */ public CloneStampBrush() { this.setName("Clone"); } /** * The clone method is used to grab a snapshot of the selected area dictated blockPositionY targetBlock.x y z v.brushSize v.voxelHeight and v.cCen. *
* x y z -- initial center of the selection v.brushSize -- the radius of the cylinder v.voxelHeight -- the heigth of the cylinder c.cCen -- the offset on * the Y axis of the selection ( bottom of the cylinder ) as blockPositionY: Bottom_Y = targetBlock.y + v.cCen; * * @param v Sniper Caller */ private void clone(final SnipeData v) { final int brushSize = v.getBrushSize(); this.clone.clear(); this.fall.clear(); this.drop.clear(); this.solid.clear(); this.sorted = false; int yStartingPoint = this.getTargetBlock().getY() + v.getcCen(); int yEndPoint = this.getTargetBlock().getY() + v.getVoxelHeight() + v.getcCen(); if (yStartingPoint < 0) { yStartingPoint = 0; v.sendMessage(ChatColor.DARK_PURPLE + "Warning: off-world start position."); } else if (yStartingPoint > this.getWorld().getMaxHeight() - 1) { yStartingPoint = this.getWorld().getMaxHeight() - 1; v.sendMessage(ChatColor.DARK_PURPLE + "Warning: off-world start position."); } if (yEndPoint < 0) { yEndPoint = 0; v.sendMessage(ChatColor.DARK_PURPLE + "Warning: off-world end position."); } else if (yEndPoint > this.getWorld().getMaxHeight() - 1) { yEndPoint = this.getWorld().getMaxHeight() - 1; v.sendMessage(ChatColor.DARK_PURPLE + "Warning: off-world end position."); } final double bSquared = Math.pow(brushSize, 2); for (int z = yStartingPoint; z < yEndPoint; z++) { this.clone.add(new BlockWrapper(this.clampY(this.getTargetBlock().getX(), z, this.getTargetBlock().getZ()), 0, z - yStartingPoint, 0)); for (int y = 1; y <= brushSize; y++) { this.clone.add(new BlockWrapper(this.clampY(this.getTargetBlock().getX(), z, this.getTargetBlock().getZ() + y), 0, z - yStartingPoint, y)); this.clone.add(new BlockWrapper(this.clampY(this.getTargetBlock().getX(), z, this.getTargetBlock().getZ() - y), 0, z - yStartingPoint, -y)); this.clone.add(new BlockWrapper(this.clampY(this.getTargetBlock().getX() + y, z, this.getTargetBlock().getZ()), y, z - yStartingPoint, 0)); this.clone.add(new BlockWrapper(this.clampY(this.getTargetBlock().getX() - y, z, this.getTargetBlock().getZ()), -y, z - yStartingPoint, 0)); } for (int x = 1; x <= brushSize; x++) { final double xSquared = Math.pow(x, 2); for (int y = 1; y <= brushSize; y++) { if ((xSquared + Math.pow(y, 2)) <= bSquared) { this.clone.add(new BlockWrapper(this.clampY(this.getTargetBlock().getX() + x, z, this.getTargetBlock().getZ() + y), x, z - yStartingPoint, y)); this.clone.add(new BlockWrapper(this.clampY(this.getTargetBlock().getX() + x, z, this.getTargetBlock().getZ() - y), x, z - yStartingPoint, -y)); this.clone.add(new BlockWrapper(this.clampY(this.getTargetBlock().getX() - x, z, this.getTargetBlock().getZ() + y), -x, z - yStartingPoint, y)); this.clone.add(new BlockWrapper(this.clampY(this.getTargetBlock().getX() - x, z, this.getTargetBlock().getZ() - y), -x, z - yStartingPoint, -y)); } } } } v.sendMessage(ChatColor.GREEN + String.valueOf(this.clone.size()) + ChatColor.AQUA + " blocks copied sucessfully."); } @Override protected final void powder(final SnipeData v) { this.clone(v); } @Override public final void info(final Message vm) { vm.brushName(this.getName()); vm.size(); vm.height(); vm.center(); switch (this.stamp) { case DEFAULT: vm.brushMessage("Default Stamp"); break; case NO_AIR: vm.brushMessage("No-Air Stamp"); break; case FILL: vm.brushMessage("Fill Stamp"); break; default: vm.custom(ChatColor.DARK_RED + "Error while stamping! Report"); break; } } @Override public final void parameters(final String[] par, final com.thevoxelbox.voxelsniper.SnipeData v) { final String parameter = par[1]; if (parameter.equalsIgnoreCase("info")) { v.sendMessage(ChatColor.GOLD + "Clone / Stamp Cylinder brush parameters"); v.sendMessage(ChatColor.GREEN + "cs f -- Activates Fill mode"); v.sendMessage(ChatColor.GREEN + "cs a -- Activates No-Air mode"); v.sendMessage(ChatColor.GREEN + "cs d -- Activates Default mode"); } if (parameter.equalsIgnoreCase("a")) { this.setStamp(StampType.NO_AIR); this.reSort(); v.sendMessage(ChatColor.AQUA + "No-Air stamp brush"); } else if (parameter.equalsIgnoreCase("f")) { this.setStamp(StampType.FILL); this.reSort(); v.sendMessage(ChatColor.AQUA + "Fill stamp brush"); } else if (parameter.equalsIgnoreCase("d")) { this.setStamp(StampType.DEFAULT); this.reSort(); v.sendMessage(ChatColor.AQUA + "Default stamp brush"); } else if (parameter.startsWith("c")) { v.setcCen(Integer.parseInt(parameter.replace("c", ""))); v.sendMessage(ChatColor.BLUE + "Center set to " + v.getcCen()); } } @Override public String getPermissionNode() { return "voxelsniper.brush.clonestamp"; } }