2011-01-29 10:05:22 +00:00
|
|
|
// $Id$
|
|
|
|
/*
|
|
|
|
* WorldEdit
|
|
|
|
* Copyright (C) 2010 sk89q <http://www.sk89q.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.sk89q.worldedit.commands;
|
|
|
|
|
2011-08-08 12:40:02 +00:00
|
|
|
|
2011-01-29 10:05:22 +00:00
|
|
|
import java.util.Set;
|
2011-02-18 06:53:44 +00:00
|
|
|
import com.sk89q.minecraft.util.commands.Command;
|
|
|
|
import com.sk89q.minecraft.util.commands.CommandContext;
|
|
|
|
import com.sk89q.minecraft.util.commands.CommandPermissions;
|
2011-08-08 12:40:02 +00:00
|
|
|
import com.sk89q.minecraft.util.commands.Logging;
|
|
|
|
import static com.sk89q.minecraft.util.commands.Logging.LogMode.*;
|
2011-01-29 10:05:22 +00:00
|
|
|
import com.sk89q.worldedit.*;
|
|
|
|
import com.sk89q.worldedit.blocks.BaseBlock;
|
|
|
|
import com.sk89q.worldedit.patterns.*;
|
|
|
|
import com.sk89q.worldedit.regions.CuboidRegion;
|
|
|
|
import com.sk89q.worldedit.regions.Region;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Utility commands.
|
|
|
|
*
|
|
|
|
* @author sk89q
|
|
|
|
*/
|
|
|
|
public class UtilityCommands {
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/fill" },
|
2011-09-17 22:57:34 +00:00
|
|
|
usage = "<block> <radius> [depth]",
|
2011-01-29 10:05:22 +00:00
|
|
|
desc = "Fill a hole",
|
|
|
|
min = 2,
|
|
|
|
max = 3
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.fill")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void fill(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
|
|
|
Pattern pattern = we.getBlockPattern(player, args.getString(0));
|
2011-08-15 12:35:21 +00:00
|
|
|
double radius = Math.max(1, args.getDouble(1));
|
2011-01-29 10:05:22 +00:00
|
|
|
we.checkMaxRadius(radius);
|
|
|
|
int depth = args.argsLength() > 2 ? Math.max(1, args.getInteger(2)) : 1;
|
|
|
|
|
|
|
|
Vector pos = session.getPlacementPosition(player);
|
|
|
|
int affected = 0;
|
|
|
|
if (pattern instanceof SingleBlockPattern) {
|
|
|
|
affected = editSession.fillXZ(pos,
|
|
|
|
((SingleBlockPattern)pattern).getBlock(),
|
|
|
|
radius, depth, false);
|
|
|
|
} else {
|
|
|
|
affected = editSession.fillXZ(pos, pattern, radius, depth, false);
|
|
|
|
}
|
|
|
|
player.print(affected + " block(s) have been created.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/fillr" },
|
2011-09-17 22:57:34 +00:00
|
|
|
usage = "<block> <radius> [depth]",
|
2011-01-29 10:05:22 +00:00
|
|
|
desc = "Fill a hole recursively",
|
|
|
|
min = 2,
|
|
|
|
max = 3
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.fill.recursive")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void fillr(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
|
|
|
Pattern pattern = we.getBlockPattern(player, args.getString(0));
|
2011-08-15 12:35:21 +00:00
|
|
|
double radius = Math.max(1, args.getDouble(1));
|
2011-01-29 10:05:22 +00:00
|
|
|
we.checkMaxRadius(radius);
|
|
|
|
int depth = args.argsLength() > 2 ? Math.max(1, args.getInteger(2)) : 1;
|
|
|
|
|
|
|
|
Vector pos = session.getPlacementPosition(player);
|
|
|
|
int affected = 0;
|
|
|
|
if (pattern instanceof SingleBlockPattern) {
|
|
|
|
affected = editSession.fillXZ(pos,
|
|
|
|
((SingleBlockPattern)pattern).getBlock(),
|
|
|
|
radius, depth, true);
|
|
|
|
} else {
|
|
|
|
affected = editSession.fillXZ(pos, pattern, radius, depth, true);
|
|
|
|
}
|
|
|
|
player.print(affected + " block(s) have been created.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/drain" },
|
2011-01-29 10:05:22 +00:00
|
|
|
usage = "<radius>",
|
|
|
|
desc = "Drain a pool",
|
|
|
|
min = 1,
|
|
|
|
max = 1
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.drain")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void drain(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
2011-08-15 12:35:21 +00:00
|
|
|
double radius = Math.max(0, args.getDouble(0));
|
2011-01-29 10:05:22 +00:00
|
|
|
we.checkMaxRadius(radius);
|
|
|
|
int affected = editSession.drainArea(
|
|
|
|
session.getPlacementPosition(player), radius);
|
|
|
|
player.print(affected + " block(s) have been changed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/fixlava", "fixlava" },
|
2011-01-29 10:05:22 +00:00
|
|
|
usage = "<radius>",
|
|
|
|
desc = "Fix lava to be stationary",
|
|
|
|
min = 1,
|
|
|
|
max = 1
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.fixlava")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void fixLava(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
2011-08-15 12:35:21 +00:00
|
|
|
double radius = Math.max(0, args.getDouble(0));
|
2011-01-29 10:05:22 +00:00
|
|
|
we.checkMaxRadius(radius);
|
|
|
|
int affected = editSession.fixLiquid(
|
|
|
|
session.getPlacementPosition(player), radius, 10, 11);
|
|
|
|
player.print(affected + " block(s) have been changed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/fixwater", "fixwater" },
|
2011-01-29 10:05:22 +00:00
|
|
|
usage = "<radius>",
|
|
|
|
desc = "Fix water to be stationary",
|
|
|
|
min = 1,
|
|
|
|
max = 1
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.fixwater")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void fixWater(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
2011-08-15 12:35:21 +00:00
|
|
|
double radius = Math.max(0, args.getDouble(0));
|
2011-01-29 10:05:22 +00:00
|
|
|
we.checkMaxRadius(radius);
|
|
|
|
int affected = editSession.fixLiquid(
|
|
|
|
session.getPlacementPosition(player), radius, 8, 9);
|
|
|
|
player.print(affected + " block(s) have been changed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/removeabove", "removeabove" },
|
2011-09-17 22:57:34 +00:00
|
|
|
usage = "[size] [height]",
|
|
|
|
desc = "Remove blocks above your head.",
|
2011-01-29 10:05:22 +00:00
|
|
|
min = 0,
|
|
|
|
max = 2
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.removeabove")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void removeAbove(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
|
|
|
int size = args.argsLength() > 0 ? Math.max(1, args.getInteger(0)) : 1;
|
|
|
|
we.checkMaxRadius(size);
|
|
|
|
int height = args.argsLength() > 1 ? Math.min(128, args.getInteger(1) + 2) : 128;
|
|
|
|
|
|
|
|
int affected = editSession.removeAbove(
|
|
|
|
session.getPlacementPosition(player), size, height);
|
|
|
|
player.print(affected + " block(s) have been removed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/removebelow", "removebelow" },
|
2011-09-18 05:29:12 +00:00
|
|
|
usage = "[size] [height]",
|
2011-09-17 22:57:34 +00:00
|
|
|
desc = "Remove blocks below you.",
|
2011-01-29 10:05:22 +00:00
|
|
|
min = 0,
|
|
|
|
max = 2
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.removebelow")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void removeBelow(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
|
|
|
int size = args.argsLength() > 0 ? Math.max(1, args.getInteger(0)) : 1;
|
|
|
|
we.checkMaxRadius(size);
|
|
|
|
int height = args.argsLength() > 1 ? Math.min(128, args.getInteger(1) + 2) : 128;
|
|
|
|
|
|
|
|
int affected = editSession.removeBelow(
|
|
|
|
session.getPlacementPosition(player), size, height);
|
|
|
|
player.print(affected + " block(s) have been removed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/removenear", "removenear" },
|
2011-09-17 22:57:34 +00:00
|
|
|
usage = "<block> [size]",
|
2011-01-29 10:05:22 +00:00
|
|
|
desc = "Remove blocks near you.",
|
|
|
|
min = 1,
|
|
|
|
max = 2
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.removenear")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void removeNear(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
|
|
|
BaseBlock block = we.getBlock(player, args.getString(0), true);
|
2011-01-31 06:14:36 +00:00
|
|
|
int size = Math.max(1, args.getInteger(1, 50));
|
2011-01-29 10:05:22 +00:00
|
|
|
we.checkMaxRadius(size);
|
|
|
|
|
|
|
|
int affected = editSession.removeNear(
|
|
|
|
session.getPlacementPosition(player), block.getType(), size);
|
|
|
|
player.print(affected + " block(s) have been removed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/replacenear", "replacenear" },
|
2011-09-17 22:57:34 +00:00
|
|
|
usage = "<size> <from-id> <to-id>",
|
2011-01-29 10:05:22 +00:00
|
|
|
desc = "Replace nearby blocks",
|
2011-09-18 04:50:06 +00:00
|
|
|
flags = "f",
|
2011-01-29 10:05:22 +00:00
|
|
|
min = 3,
|
|
|
|
max = 3
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.replacenear")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void replaceNear(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
|
|
|
int size = Math.max(1, args.getInteger(0));
|
2011-08-22 06:55:50 +00:00
|
|
|
int affected;
|
2011-08-29 06:57:07 +00:00
|
|
|
Set<BaseBlock> from;
|
2011-08-22 06:55:50 +00:00
|
|
|
Pattern to;
|
2011-01-29 10:05:22 +00:00
|
|
|
if (args.argsLength() == 2) {
|
|
|
|
from = null;
|
2011-08-22 06:55:50 +00:00
|
|
|
to = we.getBlockPattern(player, args.getString(1));
|
2011-01-29 10:05:22 +00:00
|
|
|
} else {
|
2011-09-18 04:50:06 +00:00
|
|
|
from = we.getBlocks(player, args.getString(1), true, !args.hasFlag('f'));
|
2011-08-22 06:55:50 +00:00
|
|
|
to = we.getBlockPattern(player, args.getString(2));
|
2011-01-29 10:05:22 +00:00
|
|
|
}
|
|
|
|
|
2011-06-21 16:44:12 +00:00
|
|
|
Vector base = session.getPlacementPosition(player);
|
|
|
|
Vector min = base.subtract(size, size, size);
|
|
|
|
Vector max = base.add(size, size, size);
|
2011-01-29 10:05:22 +00:00
|
|
|
Region region = new CuboidRegion(min, max);
|
|
|
|
|
2011-08-22 06:55:50 +00:00
|
|
|
if (to instanceof SingleBlockPattern) {
|
|
|
|
affected = editSession.replaceBlocks(region, from, ((SingleBlockPattern) to).getBlock());
|
|
|
|
} else {
|
|
|
|
affected = editSession.replaceBlocks(region, from, to);
|
|
|
|
}
|
2011-01-29 10:05:22 +00:00
|
|
|
player.print(affected + " block(s) have been replaced.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/snow", "snow" },
|
2011-01-29 10:05:22 +00:00
|
|
|
usage = "[radius]",
|
|
|
|
desc = "Simulates snow",
|
|
|
|
min = 0,
|
|
|
|
max = 1
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.snow")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void snow(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
2011-08-15 12:35:21 +00:00
|
|
|
double size = args.argsLength() > 0 ? Math.max(1, args.getDouble(0)) : 10;
|
2011-01-29 10:05:22 +00:00
|
|
|
|
2011-06-21 16:44:12 +00:00
|
|
|
int affected = editSession.simulateSnow(session.getPlacementPosition(player), size);
|
2011-01-29 10:05:22 +00:00
|
|
|
player.print(affected + " surfaces covered. Let it snow~");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-17 22:57:34 +00:00
|
|
|
aliases = {"/thaw", "thaw"},
|
2011-01-29 10:05:22 +00:00
|
|
|
usage = "[radius]",
|
|
|
|
desc = "Thaws the area",
|
|
|
|
min = 0,
|
|
|
|
max = 1
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.thaw")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void thaw(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
2011-08-15 12:35:21 +00:00
|
|
|
double size = args.argsLength() > 0 ? Math.max(1, args.getDouble(0)) : 10;
|
2011-01-29 10:05:22 +00:00
|
|
|
|
2011-06-21 16:44:12 +00:00
|
|
|
int affected = editSession.thaw(session.getPlacementPosition(player), size);
|
2011-01-29 10:05:22 +00:00
|
|
|
player.print(affected + " surfaces thawed.");
|
|
|
|
}
|
2011-08-16 16:43:13 +00:00
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/green", "green" },
|
2011-08-16 16:43:13 +00:00
|
|
|
usage = "[radius]",
|
|
|
|
desc = "Greens the area",
|
|
|
|
min = 0,
|
|
|
|
max = 1
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.green")
|
2011-08-16 16:43:13 +00:00
|
|
|
@Logging(PLACEMENT)
|
|
|
|
public static void green(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
|
|
|
double size = args.argsLength() > 0 ? Math.max(1, args.getDouble(0)) : 10;
|
|
|
|
|
|
|
|
int affected = editSession.green(session.getPlacementPosition(player), size);
|
|
|
|
player.print(affected + " surfaces greened.");
|
|
|
|
}
|
|
|
|
|
2011-01-29 10:05:22 +00:00
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "/ex", "/ext", "/extinguish", "ex", "ext", "extinguish" },
|
2011-01-29 10:05:22 +00:00
|
|
|
usage = "[radius]",
|
|
|
|
desc = "Extinguish nearby fire",
|
|
|
|
min = 0,
|
|
|
|
max = 1
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.extinguish")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void extinguish(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
|
|
|
LocalConfiguration config = we.getConfiguration();
|
|
|
|
|
|
|
|
int defaultRadius = config.maxRadius != -1 ? Math.min(40, config.maxRadius) : 40;
|
|
|
|
int size = args.argsLength() > 0 ? Math.max(1, args.getInteger(0))
|
|
|
|
: defaultRadius;
|
|
|
|
we.checkMaxRadius(size);
|
|
|
|
|
|
|
|
int affected = editSession.removeNear(
|
|
|
|
session.getPlacementPosition(player), 51, size);
|
|
|
|
player.print(affected + " block(s) have been removed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "butcher" },
|
2011-01-29 10:05:22 +00:00
|
|
|
usage = "[radius]",
|
2011-05-24 22:19:11 +00:00
|
|
|
flags = "p",
|
2011-01-29 10:05:22 +00:00
|
|
|
desc = "Kill all or nearby mobs",
|
|
|
|
min = 0,
|
|
|
|
max = 1
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.butcher")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-01-29 10:05:22 +00:00
|
|
|
public static void butcher(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
|
|
|
int radius = args.argsLength() > 0 ?
|
|
|
|
Math.max(1, args.getInteger(0)) : -1;
|
|
|
|
|
|
|
|
Vector origin = session.getPlacementPosition(player);
|
2011-05-24 22:19:11 +00:00
|
|
|
int killed = player.getWorld().killMobs(origin, radius, args.hasFlag('p'));
|
2011-01-29 10:05:22 +00:00
|
|
|
player.print("Killed " + killed + " mobs.");
|
|
|
|
}
|
2011-02-19 04:31:49 +00:00
|
|
|
|
|
|
|
@Command(
|
2011-09-19 05:14:43 +00:00
|
|
|
aliases = { "remove", "rem", "rement" },
|
2011-02-19 04:31:49 +00:00
|
|
|
usage = "<type> <radius>",
|
|
|
|
desc = "Remove all entities of a type",
|
|
|
|
min = 2,
|
|
|
|
max = 2
|
|
|
|
)
|
2011-09-19 05:14:43 +00:00
|
|
|
@CommandPermissions("worldedit.remove")
|
2011-08-08 12:40:02 +00:00
|
|
|
@Logging(PLACEMENT)
|
2011-02-19 04:31:49 +00:00
|
|
|
public static void remove(CommandContext args, WorldEdit we,
|
|
|
|
LocalSession session, LocalPlayer player, EditSession editSession)
|
|
|
|
throws WorldEditException {
|
|
|
|
|
|
|
|
String typeStr = args.getString(0);
|
|
|
|
int radius = args.getInteger(1);
|
|
|
|
|
|
|
|
if (radius < -1) {
|
|
|
|
player.printError("Use -1 to remove all entities in loaded chunks");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
EntityType type = null;
|
|
|
|
|
|
|
|
if (typeStr.matches("arrows?")) {
|
|
|
|
type = EntityType.ARROWS;
|
|
|
|
} else if (typeStr.matches("items?")
|
|
|
|
|| typeStr.matches("drops?")) {
|
|
|
|
type = EntityType.ITEMS;
|
|
|
|
} else if (typeStr.matches("paintings?")
|
|
|
|
|| typeStr.matches("art")) {
|
|
|
|
type = EntityType.PAINTINGS;
|
|
|
|
} else if (typeStr.matches("boats?")) {
|
|
|
|
type = EntityType.BOATS;
|
|
|
|
} else if (typeStr.matches("minecarts?")
|
|
|
|
|| typeStr.matches("carts?")) {
|
|
|
|
type = EntityType.MINECARTS;
|
|
|
|
} else if (typeStr.matches("tnt")) {
|
|
|
|
type = EntityType.TNT;
|
2011-09-17 05:33:42 +00:00
|
|
|
} else if (typeStr.matches("xp")) {
|
|
|
|
type = EntityType.XP_ORBS;
|
2011-02-19 04:31:49 +00:00
|
|
|
} else {
|
2011-09-17 05:33:42 +00:00
|
|
|
player.printError("Acceptable types: arrows, items, paintings, boats, minecarts, tnt, xp");
|
2011-02-19 04:31:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector origin = session.getPlacementPosition(player);
|
|
|
|
int removed = player.getWorld().removeEntities(type, origin, radius);
|
|
|
|
player.print("Marked " + removed + " entit(ies) for removal.");
|
|
|
|
}
|
2011-01-29 10:05:22 +00:00
|
|
|
}
|