package me.totalfreedom.totalfreedommod.command; import java.util.ArrayList; import java.util.List; import me.totalfreedom.totalfreedommod.rank.Rank; import me.totalfreedom.totalfreedommod.util.DepreciationAggregator; import me.totalfreedom.totalfreedommod.util.FUtil; import org.apache.commons.lang3.StringUtils; import org.bukkit.ChatColor; import org.bukkit.Location; import org.bukkit.Material; import org.bukkit.World; import org.bukkit.block.Block; import org.bukkit.command.Command; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; @CommandPermissions(level = Rank.SUPER_ADMIN, source = SourceType.BOTH, blockHostConsole = false) @CommandParameters(description = "Remove all blocks of a certain type in the radius of certain players.", usage = "/ [radius (default=50)] [player]") public class Command_ro extends FreedomCommand { @Override public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) { if (args.length < 1 || args.length > 3) { return false; } final List materials = new ArrayList<>(); for (String materialName : StringUtils.split(args[0], ",")) { Material fromMaterial = Material.matchMaterial(materialName); if (fromMaterial == null) { try { fromMaterial = DepreciationAggregator.getMaterial(Integer.parseInt(materialName)); } catch (NumberFormatException ex) { } } if (fromMaterial == null || fromMaterial == Material.AIR || !fromMaterial.isBlock()) { msg("Invalid material: " + materialName, ChatColor.RED); return true; } materials.add(fromMaterial); } int radius = 20; if (args.length >= 2) { try { radius = Math.max(1, Math.min(50, Integer.parseInt(args[1]))); } catch (NumberFormatException ex) { msg("Invalid radius: " + args[1], ChatColor.RED); return true; } } final Player targetPlayer; if (args.length == 3) { targetPlayer = getPlayer(args[2]); if (targetPlayer == null) { msg(FreedomCommand.PLAYER_NOT_FOUND); return true; } } else { targetPlayer = null; } final String names = StringUtils.join(materials, ", "); World adminWorld = null; try { adminWorld = plugin.wm.adminworld.getWorld(); } catch (Exception ex) { } int affected = 0; if (targetPlayer == null) { FUtil.adminAction(sender.getName(), "Removing all " + names + " within " + radius + " blocks of all players... Brace for lag!", false); for (final Player player : server.getOnlinePlayers()) { if (player.getWorld() == adminWorld) { continue; } for (final Material material : materials) { affected += replaceBlocks(player.getLocation(), material, Material.AIR, radius); } } } else { if (targetPlayer.getWorld() != adminWorld) { for (Material material : materials) { FUtil.adminAction(sender.getName(), "Removing all " + names + " within " + radius + " blocks of " + targetPlayer.getName(), false); affected += replaceBlocks(targetPlayer.getLocation(), material, Material.AIR, radius); } } } FUtil.adminAction(sender.getName(), "Remove complete! " + affected + " blocks removed.", false); return true; } public static int replaceBlocks(Location center, Material fromMaterial, Material toMaterial, int radius) { int affected = 0; Block centerBlock = center.getBlock(); for (int xOffset = -radius; xOffset <= radius; xOffset++) { for (int yOffset = -radius; yOffset <= radius; yOffset++) { for (int zOffset = -radius; zOffset <= radius; zOffset++) { Block block = centerBlock.getRelative(xOffset, yOffset, zOffset); if (block.getType().equals(fromMaterial)) { if (block.getLocation().distanceSquared(center) < (radius * radius)) { block.setType(toMaterial); affected++; } } } } } return affected; } }