mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-04-02 22:53:14 +00:00
- Removed unnecessary config options - Added config explanations - Fixed Typos - Minor code cleanup - Removed outdated, hardcoded, voxelwiki links - Minor message changes
156 lines
8.2 KiB
Java
156 lines
8.2 KiB
Java
package com.thevoxelbox.voxelsniper.brush;
|
|
|
|
import com.sk89q.worldedit.world.block.BlockTypes;
|
|
import com.sk89q.worldedit.world.registry.BlockMaterial;
|
|
import com.thevoxelbox.voxelsniper.Message;
|
|
import com.thevoxelbox.voxelsniper.SnipeData;
|
|
import com.thevoxelbox.voxelsniper.brush.perform.PerformBrush;
|
|
import org.bukkit.ChatColor;
|
|
|
|
/**
|
|
* @author jmck95 Credit to GavJenks for framework and 95 of code. Big Thank you to GavJenks
|
|
*/
|
|
|
|
public class UnderlayBrush extends PerformBrush {
|
|
private static final int DEFAULT_DEPTH = 3;
|
|
private int depth = DEFAULT_DEPTH;
|
|
private boolean allBlocks = false;
|
|
|
|
public UnderlayBrush() {
|
|
this.setName("Underlay (Reverse Overlay)");
|
|
}
|
|
|
|
@SuppressWarnings("deprecation")
|
|
private void underlay(final SnipeData v) {
|
|
final int[][] memory = new int[v.getBrushSize() * 2 + 1][v.getBrushSize() * 2 + 1];
|
|
final double brushSizeSquared = Math.pow(v.getBrushSize() + 0.5, 2);
|
|
|
|
for (int z = v.getBrushSize(); z >= -v.getBrushSize(); z--) {
|
|
for (int x = v.getBrushSize(); x >= -v.getBrushSize(); x--) {
|
|
for (int y = this.getTargetBlock().getY(); y < this.getTargetBlock().getY() + this.depth; y++) { // start scanning from the height you clicked at
|
|
if (memory[x + v.getBrushSize()][z + v.getBrushSize()] != 1) { // if haven't already found the surface in this column
|
|
if ((Math.pow(x, 2) + Math.pow(z, 2)) <= brushSizeSquared) { // if inside of the column...
|
|
if (!this.allBlocks) { // if the override parameter has not been activated, go to the switch that filters out manmade stuff.
|
|
int id = this.getBlockIdAt(this.getTargetBlock().getX() + x, y, this.getTargetBlock().getZ() + z);
|
|
BlockMaterial mat = BlockTypes.get(id).getMaterial();
|
|
if (!mat.isReplacedDuringPlacement() && mat.isFullCube()) {
|
|
for (int d = 0; (d < this.depth); d++) {
|
|
if (!this.clampY(this.getTargetBlock().getX() + x, y + d, this.getTargetBlock().getZ() + z).isEmpty()) {
|
|
this.current.perform(this.clampY(this.getTargetBlock().getX() + x, y + d, this.getTargetBlock().getZ() + z)); // fills down as many layers as you specify in
|
|
// parameters
|
|
memory[x + v.getBrushSize()][z + v.getBrushSize()] = 1; // stop it from checking any other blocks in this vertical 1x1 column.
|
|
}
|
|
}
|
|
break;
|
|
|
|
} else {
|
|
continue;
|
|
}
|
|
} else {
|
|
for (int d = 0; (d < this.depth); d++) {
|
|
if (!this.clampY(this.getTargetBlock().getX() + x, y + d, this.getTargetBlock().getZ() + z).isEmpty()) {
|
|
this.current.perform(this.clampY(this.getTargetBlock().getX() + x, y + d, this.getTargetBlock().getZ() + z)); // fills down as many layers as you specify in
|
|
// parameters
|
|
memory[x + v.getBrushSize()][z + v.getBrushSize()] = 1; // stop it from checking any other blocks in this vertical 1x1 column.
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
v.owner().storeUndo(this.current.getUndo());
|
|
}
|
|
|
|
private void underlay2(final SnipeData v) {
|
|
final int[][] memory = new int[v.getBrushSize() * 2 + 1][v.getBrushSize() * 2 + 1];
|
|
final double brushSizeSquared = Math.pow(v.getBrushSize() + 0.5, 2);
|
|
|
|
for (int z = v.getBrushSize(); z >= -v.getBrushSize(); z--) {
|
|
for (int x = v.getBrushSize(); x >= -v.getBrushSize(); x--) {
|
|
for (int y = this.getTargetBlock().getY(); y < this.getTargetBlock().getY() + this.depth; y++) { // start scanning from the height you clicked at
|
|
if (memory[x + v.getBrushSize()][z + v.getBrushSize()] != 1) { // if haven't already found the surface in this column
|
|
if ((Math.pow(x, 2) + Math.pow(z, 2)) <= brushSizeSquared) { // if inside of the column...
|
|
|
|
if (!this.allBlocks) { // if the override parameter has not been activated, go to the switch that filters out manmade stuff.
|
|
|
|
int id = this.getBlockIdAt(this.getTargetBlock().getX() + x, y, this.getTargetBlock().getZ() + z);
|
|
BlockMaterial mat = BlockTypes.get(id).getMaterial();
|
|
if (!mat.isReplacedDuringPlacement() && mat.isFullCube()) {
|
|
for (int d = -1; (d < this.depth - 1); d++) {
|
|
this.current.perform(this.clampY(this.getTargetBlock().getX() + x, y - d, this.getTargetBlock().getZ() + z)); // fills down as many layers as you specify in
|
|
// parameters
|
|
memory[x + v.getBrushSize()][z + v.getBrushSize()] = 1; // stop it from checking any other blocks in this vertical 1x1 column.
|
|
}
|
|
break;
|
|
} else {
|
|
continue;
|
|
}
|
|
} else {
|
|
for (int d = -1; (d < this.depth - 1); d++) {
|
|
this.current.perform(this.clampY(this.getTargetBlock().getX() + x, y - d, this.getTargetBlock().getZ() + z)); // fills down as many layers as you specify in
|
|
// parameters
|
|
memory[x + v.getBrushSize()][z + v.getBrushSize()] = 1; // stop it from checking any other blocks in this vertical 1x1 column.
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
v.owner().storeUndo(this.current.getUndo());
|
|
}
|
|
|
|
@Override
|
|
public final void arrow(final SnipeData v) {
|
|
this.underlay(v);
|
|
}
|
|
|
|
@Override
|
|
public final void powder(final SnipeData v) {
|
|
this.underlay2(v);
|
|
}
|
|
|
|
@Override
|
|
public final void info(final Message vm) {
|
|
vm.brushName(this.getName());
|
|
vm.size();
|
|
}
|
|
|
|
@Override
|
|
public final void parameters(final String[] par, final SnipeData v) {
|
|
for (int i = 1; i < par.length; i++) {
|
|
if (par[i].equalsIgnoreCase("info")) {
|
|
v.owner().getPlayer().sendMessage(ChatColor.GOLD + "Reverse Overlay brush parameters:");
|
|
v.owner().getPlayer().sendMessage(ChatColor.AQUA + "d[number] (ex: d3) The number of blocks thick to change.");
|
|
v.owner().getPlayer().sendMessage(ChatColor.BLUE + "all (ex: /b reover all) Sets the brush to affect ALL materials");
|
|
if (this.depth < 1) {
|
|
this.depth = 1;
|
|
}
|
|
return;
|
|
}
|
|
if (par[i].startsWith("d")) {
|
|
this.depth = Integer.parseInt(par[i].replace("d", ""));
|
|
v.owner().getPlayer().sendMessage(ChatColor.AQUA + "Depth set to " + this.depth);
|
|
} else if (par[i].startsWith("all")) {
|
|
this.allBlocks = true;
|
|
v.owner().getPlayer().sendMessage(ChatColor.BLUE + "Will underlay over any block." + this.depth);
|
|
} else if (par[i].startsWith("some")) {
|
|
this.allBlocks = false;
|
|
v.owner().getPlayer().sendMessage(ChatColor.BLUE + "Will underlay only natural block types." + this.depth);
|
|
} else {
|
|
v.owner().getPlayer().sendMessage(ChatColor.RED + "Invalid brush parameters! Use the info parameter to display parameter info.");
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getPermissionNode() {
|
|
return "voxelsniper.brush.underlay";
|
|
}
|
|
}
|