Plex-FAWE/src/com/sk89q/worldedit/WorldEdit.java

1114 lines
38 KiB
Java
Raw Normal View History

2011-01-01 01:40:07 +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;
2011-02-22 06:28:23 +00:00
import java.util.*;
2011-01-01 01:40:07 +00:00
import java.util.logging.Logger;
import java.io.*;
2011-01-22 10:41:08 +00:00
import javax.script.ScriptException;
import com.sk89q.minecraft.util.commands.CommandPermissionsException;
import com.sk89q.minecraft.util.commands.CommandUsageException;
import com.sk89q.minecraft.util.commands.CommandsManager;
import com.sk89q.minecraft.util.commands.MissingNestedCommandException;
import com.sk89q.minecraft.util.commands.UnhandledCommandException;
import com.sk89q.minecraft.util.commands.WrappedCommandException;
2011-01-19 10:03:41 +00:00
import com.sk89q.util.StringUtil;
import com.sk89q.worldedit.LocalSession.CompassMode;
2011-01-01 01:40:07 +00:00
import com.sk89q.worldedit.bags.BlockBag;
import com.sk89q.worldedit.blocks.*;
2011-01-29 10:05:22 +00:00
import com.sk89q.worldedit.commands.*;
2011-02-20 01:44:39 +00:00
import com.sk89q.worldedit.regions.RegionSelector;
2011-01-22 21:34:05 +00:00
import com.sk89q.worldedit.scripting.*;
2011-02-22 06:28:23 +00:00
import com.sk89q.worldedit.tools.*;
import com.sk89q.worldedit.masks.*;
2011-01-01 01:40:07 +00:00
import com.sk89q.worldedit.patterns.*;
/**
2011-01-19 10:03:41 +00:00
* This class is the main entry point for WorldEdit. All events are routed
* to an instance of this controller for processing by WorldEdit. For
* integrating WorldEdit in other platforms, an instance of this class
* should be created and events should be redirected to it.
2011-01-01 01:40:07 +00:00
*
* @author sk89q
*/
public class WorldEdit {
2011-02-22 06:28:23 +00:00
/**
* Logger for debugging.
*/
2011-01-29 10:05:22 +00:00
public static final Logger logger = Logger.getLogger("Minecraft.WorldEdit");
2011-02-22 06:28:23 +00:00
/**
* Holds WorldEdit's version.
*/
2011-01-31 08:58:29 +00:00
private static String version;
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
/**
* Interface to the server.
*/
2011-01-01 01:40:07 +00:00
private ServerInterface server;
2011-01-29 10:05:22 +00:00
/**
* Configuration. This is a subclass.
*/
private LocalConfiguration config;
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
/**
* List of commands.
*/
private CommandsManager<LocalPlayer> commands;
2011-01-29 10:05:22 +00:00
2011-01-01 01:40:07 +00:00
/**
* Stores a list of WorldEdit sessions, keyed by players' names. Sessions
* persist only for the user's session. On disconnect, the session will be
* removed. Sessions are created only when they are needed and those
* without any WorldEdit abilities or never use WorldEdit in a session will
* not have a session object generated for them.
*/
private HashMap<String,LocalSession> sessions =
new HashMap<String,LocalSession>();
2011-01-01 01:40:07 +00:00
2011-01-31 08:58:29 +00:00
/**
* Initialize statically.
*/
static {
getVersion();
}
2011-01-01 01:40:07 +00:00
/**
* Construct an instance of the plugin
*
* @param server
* @param config
2011-01-01 01:40:07 +00:00
*/
public WorldEdit(ServerInterface server, LocalConfiguration config) {
this.server = server;
this.config = config;
2011-01-01 01:40:07 +00:00
commands = new CommandsManager<LocalPlayer>() {
@Override
public boolean hasPermission(LocalPlayer player, String perm) {
return player.hasPermission(perm);
}
};
2011-01-29 10:05:22 +00:00
commands.register(ChunkCommands.class);
commands.register(ClipboardCommands.class);
commands.register(GeneralCommands.class);
commands.register(GenerationCommands.class);
commands.register(HistoryCommands.class);
commands.register(NavigationCommands.class);
commands.register(RegionCommands.class);
commands.register(ScriptingCommands.class);
commands.register(SelectionCommands.class);
commands.register(SnapshotUtilCommands.class);
commands.register(ToolUtilCommands.class);
commands.register(ToolCommands.class);
2011-01-29 10:05:22 +00:00
commands.register(UtilityCommands.class);
2011-01-01 01:40:07 +00:00
}
/**
* Gets the WorldEdit session for a player.
2011-01-01 01:40:07 +00:00
*
* @param player
* @return
*/
public LocalSession getSession(LocalPlayer player) {
if (sessions.containsKey(player.getName())) {
return sessions.get(player.getName());
}
2011-01-31 08:58:29 +00:00
LocalSession session = new LocalSession(config);
// Set the limit on the number of blocks that an operation can
// change at once, or don't if the player has an override or there
// is no limit. There is also a default limit
2011-01-29 10:05:22 +00:00
if (!player.hasPermission("worldedit.limit.unrestricted")
&& config.maxChangeLimit > -1) {
// If the default limit is infinite but there is a maximum
// limit, make sure to not have it be overridden
if (config.defaultChangeLimit < 0) {
2011-01-29 10:05:22 +00:00
session.setBlockChangeLimit(config.maxChangeLimit);
2011-01-01 01:40:07 +00:00
} else {
2011-01-29 10:05:22 +00:00
// Bound the change limit
int limit = Math.min(config.defaultChangeLimit,
config.maxChangeLimit);
session.setBlockChangeLimit(limit);
2011-01-01 01:40:07 +00:00
}
2011-01-29 10:05:22 +00:00
} else {
// No change limit or override
session.setBlockChangeLimit(config.defaultChangeLimit);
}
// Have the session use inventory if it's enabled and the player
// doesn't have an override
session.setUseInventory(config.useInventory
&& (!config.useInventoryOverride
|| !player.hasPermission("worldedit.inventory.unrestricted")));
// Remember the session
sessions.put(player.getName(), session);
return session;
}
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
/**
* Returns true if the player has a session.
*
* @param player
* @return
*/
public boolean hasSession(LocalPlayer player) {
return sessions.containsKey(player.getName());
}
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
/**
* Get an item ID from an item name or an item ID number.
*
* @param player
* @param arg
* @param allAllowed true to ignore blacklists
* @return
* @throws UnknownItemException
* @throws DisallowedItemException
*/
public BaseBlock getBlock(LocalPlayer player, String arg, boolean allAllowed)
throws UnknownItemException, DisallowedItemException {
BlockType blockType;
arg = arg.replace("_", " ");
arg = arg.replace(";", "|");
String[] args0 = arg.split("\\|");
String[] args1 = args0[0].split(":", 2);
String testID = args1[0];
int data;
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
// Attempt to parse the item ID or otherwise resolve an item/block
// name to its numeric ID
try {
blockType = BlockType.fromID(Integer.parseInt(testID));
} catch (NumberFormatException e) {
blockType = BlockType.lookup(testID);
if (blockType == null) {
int t = server.resolveItem(testID);
if (t > 0 && t < 256) {
blockType = BlockType.fromID(t);
}
2011-01-01 01:40:07 +00:00
}
2011-01-29 10:05:22 +00:00
}
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
if (blockType == null) {
throw new UnknownItemException(arg);
}
// Parse the block data (optional)
try {
data = args1.length > 1 ? Integer.parseInt(args1[1]) : 0;
if (data > 15 || data < 0) {
data = 0;
}
} catch (NumberFormatException e) {
if (blockType == BlockType.CLOTH) {
ClothColor col = ClothColor.lookup(args1[1]);
if (col != null) {
data = col.getID();
2011-01-01 01:40:07 +00:00
} else {
2011-01-29 10:05:22 +00:00
throw new InvalidItemException(arg, "Unknown cloth color '" + args1[1] + "'");
2011-01-01 01:40:07 +00:00
}
} else {
2011-01-29 10:05:22 +00:00
throw new InvalidItemException(arg, "Unknown data value '" + args1[1] + "'");
2011-01-01 01:40:07 +00:00
}
2011-01-29 10:05:22 +00:00
}
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
// Check if the item is allowed
if (allAllowed || player.hasPermission("worldedit.anyblock")
|| !config.disallowedBlocks.contains(blockType.getID())) {
// Allow special sign text syntax
if (blockType == BlockType.SIGN_POST
|| blockType == BlockType.WALL_SIGN) {
String[] text = new String[4];
text[0] = args0.length > 1 ? args0[1] : "";
text[1] = args0.length > 2 ? args0[2] : "";
text[2] = args0.length > 3 ? args0[3] : "";
text[3] = args0.length > 4 ? args0[4] : "";
return new SignBlock(blockType.getID(), data, text);
// Allow setting mob spawn type
} else if (blockType == BlockType.MOB_SPAWNER) {
if (args0.length > 1) {
String mobName = args0[1];
if (mobName.length() > 1) {
mobName = mobName.substring(0, 1).toUpperCase()
+ mobName.substring(1);
}
if (!server.isValidMobType(mobName)) {
throw new InvalidItemException(arg, "Unknown mob type '" + mobName + "'");
2011-01-29 10:05:22 +00:00
}
return new MobSpawnerBlock(data, args0[1]);
} else {
return new MobSpawnerBlock(data, "Pig");
2011-01-01 01:40:07 +00:00
}
2011-01-29 10:05:22 +00:00
// Allow setting note
} else if (blockType == BlockType.NOTE_BLOCK) {
if (args0.length > 1) {
byte note = Byte.parseByte(args0[1]);
if (note < 0 || note > 24) {
throw new InvalidItemException(arg, "Out of range note value: '" + args0[1] + "'");
} else {
return new NoteBlock(data, note);
}
} else {
return new NoteBlock(data, (byte)0);
2011-01-01 01:40:07 +00:00
}
}
2011-01-29 10:05:22 +00:00
return new BaseBlock(blockType.getID(), data);
}
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
throw new DisallowedItemException(arg);
}
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
/**
* Get a block.
*
* @param player
* @param id
* @return
* @throws UnknownItemException
* @throws DisallowedItemException
*/
public BaseBlock getBlock(LocalPlayer player, String id)
throws UnknownItemException, DisallowedItemException {
return getBlock(player, id, false);
}
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
/**
* Get a list of blocks as a set. This returns a Pattern.
*
* @param player
* @param list
* @return pattern
* @throws UnknownItemException
* @throws DisallowedItemException
2011-01-29 10:05:22 +00:00
*/
public Pattern getBlockPattern(LocalPlayer player, String list)
throws UnknownItemException, DisallowedItemException {
2011-01-01 01:40:07 +00:00
2011-01-29 10:05:22 +00:00
String[] items = list.split(",");
2011-01-30 09:01:11 +00:00
// Handle special block pattern types
if (list.charAt(0) == '#') {
if (list.equals("#clipboard") || list.equals("#copy")) {
LocalSession session = getSession(player);
CuboidClipboard clipboard;
try {
clipboard = session.getClipboard();
} catch (EmptyClipboardException e) {
player.printError("Copy a selection first with //copy.");
throw new UnknownItemException("#clipboard");
}
return new ClipboardPattern(clipboard);
} else {
throw new UnknownItemException(list);
2011-01-30 09:01:11 +00:00
}
}
2011-01-22 10:41:08 +00:00
// If it's only one block, then just return that single one
2011-01-29 10:05:22 +00:00
if (items.length == 1) {
return new SingleBlockPattern(getBlock(player, items[0]));
}
2011-01-23 10:09:51 +00:00
2011-01-29 10:05:22 +00:00
List<BlockChance> blockChances = new ArrayList<BlockChance>();
for (String s : items) {
BaseBlock block;
2011-01-23 10:09:51 +00:00
2011-01-29 10:05:22 +00:00
double chance;
// Parse special percentage syntax
2011-01-29 10:05:22 +00:00
if (s.matches("[0-9]+(?:\\.(?:[0-9]+)?)?%.*")) {
String[] p = s.split("%");
chance = Double.parseDouble(p[0]);
block = getBlock(player, p[1]);
} else {
chance = 1;
block = getBlock(player, s);
2011-01-23 10:09:51 +00:00
}
2011-01-29 10:05:22 +00:00
blockChances.add(new BlockChance(block, chance));
2011-01-01 01:40:07 +00:00
}
2011-01-29 10:05:22 +00:00
return new RandomFillPattern(blockChances);
}
/**
* Get a block mask. Block masks are used to determine which
* blocks to include when replacing.
*
* @param player
* @param list
* @return
* @throws UnknownItemException
* @throws DisallowedItemException
*/
public Mask getBlockMask(LocalPlayer player, String list)
throws UnknownItemException, DisallowedItemException {
if (list.charAt(0) == '#') {
if (list.equalsIgnoreCase("#existing")) {
return new ExistingBlockMask();
} else {
throw new UnknownItemException(list);
}
} else {
2011-02-19 07:33:55 +00:00
if (list.charAt(0) == '!' && list.length() > 1) {
return new InvertedBlockTypeMask(
getBlockIDs(player, list.substring(1), true));
} else {
return new BlockTypeMask(getBlockIDs(player, list, true));
}
}
}
2011-01-29 10:05:22 +00:00
/**
* Get a list of blocks as a set.
*
*@param player
* @param list
* @param allBlocksAllowed
* @return set
* @throws UnknownItemException
* @throws DisallowedItemException
2011-01-29 10:05:22 +00:00
*/
public Set<Integer> getBlockIDs(LocalPlayer player,
String list, boolean allBlocksAllowed)
throws UnknownItemException, DisallowedItemException {
String[] items = list.split(",");
Set<Integer> blocks = new HashSet<Integer>();
for (String s : items) {
blocks.add(getBlock(player, s, allBlocksAllowed).getType());
}
return blocks;
}
/**
* Gets the path to a file. This method will check to see if the filename
* has valid characters and has an extension. It also prevents directory
* traversal exploits by checking the root directory and the file directory.
* On success, a <code>java.io.File</code> object will be returned.
*
* @param player
* @param dir sub-directory to look in
* @param filename filename (user-submitted)
* @param defaultExt append an extension if missing one, null to not use
2011-01-31 05:32:52 +00:00
* @param extensions list of extensions, null for any
* @return
* @throws FilenameException
*/
2011-01-31 05:32:52 +00:00
public File getSafeSaveFile(LocalPlayer player, File dir, String filename,
String defaultExt, String[] extensions)
throws FilenameException {
return getSafeFile(player, dir, filename, defaultExt, extensions, true);
}
/**
* Gets the path to a file. This method will check to see if the filename
* has valid characters and has an extension. It also prevents directory
* traversal exploits by checking the root directory and the file directory.
* On success, a <code>java.io.File</code> object will be returned.
*
* @param player
2011-01-31 05:32:52 +00:00
* @param dir sub-directory to look in
* @param filename filename (user-submitted)
* @param defaultExt append an extension if missing one, null to not use
* @param extensions list of extensions, null for any
* @return
* @throws FilenameException
*/
public File getSafeOpenFile(LocalPlayer player, File dir, String filename,
String defaultExt, String[] extensions)
throws FilenameException {
return getSafeFile(player, dir, filename, defaultExt, extensions, false);
}
/**
* Get a safe path to a file.
*
* @param player
* @param dir
* @param filename
* @param defaultExt
* @param extensions
* @param isSave
* @return
* @throws FilenameException
*/
private File getSafeFile(LocalPlayer player, File dir, String filename,
String defaultExt, String[] extensions, boolean isSave)
throws FilenameException {
File f;
if (filename.equals("#")) {
2011-01-31 05:32:52 +00:00
if (isSave) {
f = player.openFileSaveDialog(extensions);
} else {
f = player.openFileOpenDialog(extensions);
}
if (f == null) {
throw new FileSelectionAbortedException("No file selected");
}
} else {
if (defaultExt != null && filename.lastIndexOf('.') == -1) {
filename += "." + defaultExt;
}
if (!filename.matches("^[A-Za-z0-9_\\- \\./\\\\'\\$@~!%\\^\\*\\(\\)\\[\\]\\+\\{\\},\\?]+\\.[A-Za-z0-9]+$")) {
throw new InvalidFilenameException(filename,
"Invalid characters or extension missing");
}
f = new File(dir, filename);
}
try {
String filePath = f.getCanonicalPath();
String dirPath = dir.getCanonicalPath();
if (!filePath.substring(0, dirPath.length()).equals(dirPath)) {
throw new FilenameResolutionException(filename,
"Path is outside allowable root");
}
return f;
} catch (IOException e) {
throw new FilenameResolutionException(filename,
"Failed to resolve path");
}
}
2011-01-29 10:05:22 +00:00
/**
* Checks to see if the specified radius is within bounds.
*
* @param radius
* @throws MaxRadiusException
*/
public void checkMaxRadius(int radius) throws MaxRadiusException {
if (config.maxRadius > 0 && radius > config.maxRadius) {
throw new MaxRadiusException();
}
2011-01-01 01:40:07 +00:00
}
/**
* Get a file relative to the defined working directory. If the specified
* path is absolute, then the working directory is not used.
*
* @param path
* @return
*/
public File getWorkingDirectoryFile(String path) {
File f = new File(path);
if (f.isAbsolute()) {
return f;
} else {
return new File(config.getWorkingDirectory(), path);
}
}
2011-01-01 01:40:07 +00:00
/**
* Modulus, divisor-style.
*
* @param a
* @param n
* @return
*/
2011-01-29 10:05:22 +00:00
public static int divisorMod(int a, int n) {
2011-01-01 01:40:07 +00:00
return (int)(a - n * Math.floor(Math.floor(a) / (double)n));
}
/**
* Get the direction vector for a player's direction. May return
* null if a direction could not be found.
*
* @param player
* @param dirStr
2011-01-01 01:40:07 +00:00
* @return
* @throws UnknownDirectionException
2011-01-01 01:40:07 +00:00
*/
public Vector getDirection(LocalPlayer player, String dirStr)
2011-01-01 01:40:07 +00:00
throws UnknownDirectionException {
int xm = 0;
int ym = 0;
int zm = 0;
PlayerDirection dir = null;
dirStr = dirStr.toLowerCase();
boolean wasDetected = false;
2011-01-01 01:40:07 +00:00
if (dirStr.equals("me")) {
dir = player.getCardinalDirection();
wasDetected = true;
2011-01-01 01:40:07 +00:00
}
if (dirStr.charAt(0) == 'w' || dir == PlayerDirection.WEST) {
2011-01-01 01:40:07 +00:00
zm += 1;
} else if (dirStr.charAt(0) == 'e' || dir == PlayerDirection.EAST) {
2011-01-01 01:40:07 +00:00
zm -= 1;
} else if (dirStr.charAt(0) == 's' || dir == PlayerDirection.SOUTH) {
2011-01-01 01:40:07 +00:00
xm += 1;
} else if (dirStr.charAt(0) == 'n' || dir == PlayerDirection.NORTH) {
2011-01-01 01:40:07 +00:00
xm -= 1;
} else if (dirStr.charAt(0) == 'u') {
ym += 1;
} else if (dirStr.charAt(0) == 'd') {
ym -= 1;
} else {
if (wasDetected) {
throw new UnknownDirectionException(dir.name());
} else {
throw new UnknownDirectionException(dirStr);
}
2011-01-01 01:40:07 +00:00
}
return new Vector(xm, ym, zm);
}
/**
* Get the flip direction for a player's direction. May return
* null if a direction could not be found.
*
* @param player
* @param dirStr
2011-01-01 01:40:07 +00:00
* @return
* @throws UnknownDirectionException
2011-01-01 01:40:07 +00:00
*/
public CuboidClipboard.FlipDirection getFlipDirection(
LocalPlayer player, String dirStr)
2011-01-01 01:40:07 +00:00
throws UnknownDirectionException {
PlayerDirection dir = null;
2011-01-01 01:40:07 +00:00
if (dirStr.equals("me")) {
dir = player.getCardinalDirection();
}
if (dirStr.charAt(0) == 'w' || dir == PlayerDirection.EAST) {
2011-01-01 01:40:07 +00:00
return CuboidClipboard.FlipDirection.WEST_EAST;
} else if (dirStr.charAt(0) == 'e' || dir == PlayerDirection.EAST) {
2011-01-01 01:40:07 +00:00
return CuboidClipboard.FlipDirection.WEST_EAST;
} else if (dirStr.charAt(0) == 's' || dir == PlayerDirection.SOUTH) {
2011-01-01 01:40:07 +00:00
return CuboidClipboard.FlipDirection.NORTH_SOUTH;
} else if (dirStr.charAt(0) == 'n' || dir == PlayerDirection.SOUTH) {
2011-01-01 01:40:07 +00:00
return CuboidClipboard.FlipDirection.NORTH_SOUTH;
} else if (dirStr.charAt(0) == 'u') {
return CuboidClipboard.FlipDirection.UP_DOWN;
} else if (dirStr.charAt(0) == 'd') {
return CuboidClipboard.FlipDirection.UP_DOWN;
} else {
2011-01-29 17:31:48 +00:00
throw new UnknownDirectionException(dir.name());
2011-01-01 01:40:07 +00:00
}
}
/**
* Remove a session.
*
* @param player
*/
public void removeSession(LocalPlayer player) {
sessions.remove(player.getName());
2011-01-01 01:40:07 +00:00
}
/**
* Remove all sessions.
*/
public void clearSessions() {
sessions.clear();
}
2011-01-19 10:03:41 +00:00
/**
* Flush a block bag's changes to a player.
*
* @param player
* @param editSession
*/
2011-01-29 10:05:22 +00:00
public void flushBlockBag(LocalPlayer player,
2011-01-19 10:03:41 +00:00
EditSession editSession) {
BlockBag blockBag = editSession.getBlockBag();
if (blockBag != null) {
blockBag.flushChanges();
}
Set<Integer> missingBlocks = editSession.popMissingBlocks();
if (missingBlocks.size() > 0) {
StringBuilder str = new StringBuilder();
str.append("Missing these blocks: ");
int size = missingBlocks.size();
int i = 0;
for (Integer id : missingBlocks) {
BlockType type = BlockType.fromID(id);
str.append(type != null
? type.getName() + " (" + id + ")"
: id.toString());
i++;
if (i != size) {
str.append(", ");
}
}
player.printError(str.toString());
}
}
/**
* @return the commands
*/
2011-01-29 10:05:22 +00:00
public Map<String, String> getCommands() {
return commands.getCommands();
2011-01-19 10:03:41 +00:00
}
2011-01-01 01:40:07 +00:00
/**
*
* @param player
*/
public void handleDisconnect(LocalPlayer player) {
2011-01-01 01:40:07 +00:00
removeSession(player);
}
/**
* Called on arm swing.
*
* @param player
* @return
2011-01-01 01:40:07 +00:00
*/
public boolean handleArmSwing(LocalPlayer player) {
2011-01-09 19:14:55 +00:00
LocalSession session = getSession(player);
if (player.getItemInHand() == config.navigationWand
&& config.navigationWandMaxDistance > 0) {
CompassMode mode = session.getCompassMode();
2011-01-29 10:05:22 +00:00
if (player.hasPermission("worldedit.navigation.jumpto") && mode == CompassMode.JUMPTO) {
WorldVector pos = player.getSolidBlockTrace(config.navigationWandMaxDistance);
if (pos != null) {
player.findFreePosition(pos);
} else {
player.printError("No block in sight (or too far)!");
}
} else if (mode == CompassMode.THRU) { // Permission is implied
if (!player.passThroughForwardWall(40)) {
player.printError("Nothing to pass through!");
}
}
}
return false;
}
/**
* Called on right click (not on a block).
*
* @param player
* @return
*/
public boolean handleRightClick(LocalPlayer player) {
LocalSession session = getSession(player);
if (player.getItemInHand() == config.navigationWand) {
CompassMode mode = session.getCompassMode();
if (mode == CompassMode.JUMPTO) {
2011-01-29 10:05:22 +00:00
if (player.hasPermission("worldedit.navigation.thru")) {
session.setCompassMode(CompassMode.THRU);
player.print("Switched to /thru mode.");
} else {
player.printError("You don't have permission for /thru.");
}
2011-01-19 10:43:26 +00:00
} else {
2011-01-29 10:05:22 +00:00
if (player.hasPermission("worldedit.navigation.jumpto")) {
session.setCompassMode(CompassMode.JUMPTO);
player.print("Switched to /jumpto mode.");
} else {
player.printError("You don't have permission for /jumpto.");
}
2011-01-19 10:43:26 +00:00
}
return true;
2011-01-09 19:14:55 +00:00
}
Tool tool = session.getTool(player.getItemInHand());
if (tool != null && tool instanceof TraceTool) {
((TraceTool)tool).act(server, config, player, session);
return true;
}
return false;
2011-01-01 01:40:07 +00:00
}
/**
* Called on right click.
*
* @param player
* @param clicked
* @return false if you want the action to go through
*/
public boolean handleBlockRightClick(LocalPlayer player, WorldVector clicked) {
2011-01-01 01:40:07 +00:00
int itemInHand = player.getItemInHand();
LocalSession session = getSession(player);
2011-01-01 01:40:07 +00:00
if (itemInHand == config.wandItem && session.isToolControlEnabled()
2011-01-29 10:05:22 +00:00
&& player.hasPermission("worldedit.selection.pos")) {
2011-02-20 01:44:39 +00:00
RegionSelector selector = session.getRegionSelector(player.getWorld());
if (selector.selectSecondary(clicked)) {
selector.explainSecondarySelection(player, clicked);
2011-01-01 01:40:07 +00:00
}
return true;
}
Tool tool = session.getTool(player.getItemInHand());
if (tool != null && tool instanceof BlockTool) {
((BlockTool)tool).act(server, config, player, session, clicked);
return true;
2011-01-01 01:40:07 +00:00
}
return false;
}
/**
* Called on left click.
*
* @param player
* @param clicked
* @return false if you want the action to go through
*/
public boolean handleBlockLeftClick(LocalPlayer player, WorldVector clicked) {
LocalSession session = getSession(player);
2011-01-01 01:40:07 +00:00
if (player.getItemInHand() == config.wandItem) {
2011-01-29 10:05:22 +00:00
if (session.isToolControlEnabled()
&& player.hasPermission("worldedit.selection.pos")) {
2011-01-01 01:40:07 +00:00
// Bug workaround
if (clicked.getBlockX() == 0 && clicked.getBlockY() == 0
&& clicked.getBlockZ() == 0) {
return false;
}
2011-02-20 01:44:39 +00:00
RegionSelector selector = session.getRegionSelector(player.getWorld());
if (selector.selectPrimary(clicked)) {
selector.explainPrimarySelection(player, clicked);
2011-01-01 01:40:07 +00:00
}
return true;
}
} else if (player.isHoldingPickAxe() && session.hasSuperPickAxe()) {
if (session.getSuperPickaxe() != null) {
return session.getSuperPickaxe().act(server, config,
player, session, clicked);
2011-01-01 01:40:07 +00:00
}
}
return false;
}
/**
*
* @param player
* @param split
* @return whether the command was processed
*/
public boolean handleCommand(LocalPlayer player, String[] split) {
2011-01-01 01:40:07 +00:00
try {
split[0] = split[0].substring(1);
2011-01-29 10:05:22 +00:00
// Quick script shortcut
if (split[0].matches("^[^/].*\\.js$")) {
String[] newSplit = new String[split.length + 1];
System.arraycopy(split, 0, newSplit, 1, split.length);
newSplit[0] = "cs";
2011-01-29 19:37:41 +00:00
newSplit[1] = newSplit[1];
split = newSplit;
}
2011-01-01 01:40:07 +00:00
String searchCmd = split[0].toLowerCase();
2011-01-29 10:05:22 +00:00
// Try to detect the command
if (commands.hasCommand(searchCmd)) {
} else if (config.noDoubleSlash && commands.hasCommand("/" + searchCmd)) {
split[0] = "/" + split[0];
} else if (split[0].length() >= 2 && split[0].charAt(0) == '/'
&& commands.hasCommand(searchCmd.substring(1))) {
split[0] = split[0].substring(1);
}
// No command found!
if (!commands.hasCommand(split[0])) {
return false;
}
LocalSession session = getSession(player);
BlockBag blockBag = session.getBlockBag(player);
session.tellVersion(player);
// Create an edit session
EditSession editSession =
new EditSession(player.getWorld(),
session.getBlockChangeLimit(), blockBag);
editSession.enableQueue();
long start = System.currentTimeMillis();
try {
if (config.logCommands) {
logger.info("WorldEdit: " + player.getName() + ": "
+ StringUtil.joinString(split, " "));
}
commands.execute(split, player, this, session, player, editSession);
} catch (CommandPermissionsException e) {
player.printError("You don't have permission to do this.");
} catch (MissingNestedCommandException e) {
player.printError(e.getUsage());
} catch (CommandUsageException e) {
player.printError(e.getMessage());
player.printError(e.getUsage());
} catch (WrappedCommandException e) {
throw e.getCause();
} catch (UnhandledCommandException e) {
return false;
} finally {
session.remember(editSession);
editSession.flushQueue();
if (config.profile) {
long time = System.currentTimeMillis() - start;
int changed = editSession.getBlockChangeCount();
if (time > 0) {
double throughput = changed / (time / 1000.0);
player.printDebug((time / 1000.0) + "s elapsed (history: "
+ changed + " changed; "
+ Math.round(throughput) + " blocks/sec).");
} else {
player.printDebug((time / 1000.0) + "s elapsed.");
2011-01-01 01:40:07 +00:00
}
}
flushBlockBag(player, editSession);
2011-01-01 01:40:07 +00:00
}
} catch (NumberFormatException e) {
player.printError("Number expected; string given.");
2011-01-19 10:03:41 +00:00
} catch (IncompleteRegionException e) {
2011-01-23 18:11:12 +00:00
player.printError("Make a region selection first.");
2011-01-19 10:03:41 +00:00
} catch (UnknownItemException e) {
player.printError("Block name '" + e.getID() + "' was not recognized.");
} catch (InvalidItemException e) {
player.printError(e.getMessage());
} catch (DisallowedItemException e) {
player.printError("Block '" + e.getID() + "' not allowed (see WorldEdit configuration).");
} catch (MaxChangedBlocksException e) {
2011-01-01 01:40:07 +00:00
player.printError("Max blocks changed in an operation reached ("
2011-01-19 10:03:41 +00:00
+ e.getBlockLimit() + ").");
2011-01-01 01:40:07 +00:00
} catch (MaxRadiusException e) {
player.printError("Maximum radius: " + config.maxRadius);
2011-01-19 10:03:41 +00:00
} catch (UnknownDirectionException e) {
player.printError("Unknown direction: " + e.getDirection());
} catch (InsufficientArgumentsException e) {
player.printError(e.getMessage());
} catch (EmptyClipboardException e) {
2011-01-23 18:11:12 +00:00
player.printError("Your clipboard is empty. Use //copy first.");
} catch (InvalidFilenameException e) {
player.printError("Filename '" + e.getFilename() + "' invalid: "
+ e.getMessage());
} catch (FilenameResolutionException e) {
player.printError("File '" + e.getFilename() + "' resolution error: "
+ e.getMessage());
2011-02-19 04:50:40 +00:00
} catch (InvalidToolBindException e) {
player.printError("Can't bind tool to "
+ ItemType.toHeldName(e.getItemId()) + ": " + e.getMessage());
} catch (FileSelectionAbortedException e) {
player.printError("File selection aborted.");
2011-01-19 10:03:41 +00:00
} catch (WorldEditException e) {
player.printError(e.getMessage());
2011-01-01 01:40:07 +00:00
} catch (Throwable excp) {
player.printError("Please report this error: [See console]");
player.printRaw(excp.getClass().getName() + ": " + excp.getMessage());
excp.printStackTrace();
}
return true;
}
2011-01-22 10:41:08 +00:00
/**
* Executes a WorldEdit script.
*
* @param player
* @param f
2011-01-22 10:41:08 +00:00
* @param args
2011-01-22 23:38:04 +00:00
* @throws WorldEditException
2011-01-22 10:41:08 +00:00
*/
public void runScript(LocalPlayer player, File f, String[] args)
2011-01-22 23:38:04 +00:00
throws WorldEditException {
String filename = f.getPath();
2011-01-22 10:41:08 +00:00
int index = filename.lastIndexOf(".");
String ext = filename.substring(index + 1, filename.length());
if (!ext.equalsIgnoreCase("js")) {
player.printError("Only .js scripts are currently supported");
return;
}
String script;
try {
2011-01-22 21:34:05 +00:00
InputStream file;
if (!f.exists()) {
file = WorldEdit.class.getResourceAsStream(
2011-01-22 21:34:05 +00:00
"craftscripts/" + filename);
if (file == null) {
player.printError("Script does not exist: " + filename);
return;
}
} else {
file = new FileInputStream(f);
}
DataInputStream in = new DataInputStream(file);
2011-01-22 10:41:08 +00:00
byte[] data = new byte[in.available()];
in.readFully(data);
2011-01-22 21:34:05 +00:00
in.close();
2011-01-22 10:41:08 +00:00
script = new String(data, 0, data.length, "utf-8");
} catch (IOException e) {
player.printError("Script read error: " + e.getMessage());
return;
}
2011-01-22 21:34:05 +00:00
LocalSession session = getSession(player);
CraftScriptContext scriptContext =
2011-01-22 23:38:04 +00:00
new CraftScriptContext(this, server, config, session, player, args);
2011-01-22 21:34:05 +00:00
CraftScriptEngine engine = null;
2011-01-31 03:49:57 +00:00
2011-01-22 21:34:05 +00:00
try {
engine = new RhinoCraftScriptEngine();
} catch (NoClassDefFoundError e) {
2011-01-31 03:49:57 +00:00
try {
engine = new SunRhinoCraftScriptEngine();
} catch (NoClassDefFoundError e2) {
player.printError("Failed to find an installed script engine.");
player.printError("Please see http://wiki.sk89q.com/wiki/WorldEdit/Installation");
return;
}
2011-01-22 10:41:08 +00:00
}
engine.setTimeLimit(config.scriptTimeout);
2011-01-22 10:41:08 +00:00
2011-01-22 21:34:05 +00:00
Map<String, Object> vars = new HashMap<String, Object>();
vars.put("argv", args);
vars.put("context", scriptContext);
vars.put("player", player);
2011-01-22 10:41:08 +00:00
try {
2011-01-22 21:34:05 +00:00
engine.evaluate(script, filename, vars);
2011-01-22 10:41:08 +00:00
} catch (ScriptException e) {
2011-01-22 23:38:04 +00:00
player.printError("Failed to execute:");;
2011-01-22 21:34:05 +00:00
player.printRaw(e.getMessage());
2011-01-23 00:23:04 +00:00
e.printStackTrace();
2011-01-22 23:38:04 +00:00
} catch (NumberFormatException e) {
throw e;
} catch (WorldEditException e) {
throw e;
} catch (Throwable e) {
2011-01-23 00:23:04 +00:00
player.printError("Failed to execute (see console):");
2011-01-22 23:38:04 +00:00
player.printRaw(e.getClass().getCanonicalName());
2011-01-23 00:23:04 +00:00
e.printStackTrace();
2011-01-22 10:41:08 +00:00
} finally {
2011-01-22 23:38:04 +00:00
for (EditSession editSession : scriptContext.getEditSessions()) {
editSession.flushQueue();
2011-01-22 10:41:08 +00:00
session.remember(editSession);
}
}
}
2011-01-29 10:05:22 +00:00
/**
* Get Worldedit's configuration.
*
* @return
*/
public LocalConfiguration getConfiguration() {
return config;
}
2011-02-19 09:22:28 +00:00
/**
* Get the server interface.
*
* @return
*/
public ServerInterface getServer() {
return server;
}
2011-01-31 08:58:29 +00:00
/**
* Get the version.
*
* @return
*/
public static String getVersion() {
if (version != null) {
return version;
}
Package p = WorldEdit.class.getPackage();
if (p == null) {
p = Package.getPackage("com.sk89q.worldedit");
}
if (p == null) {
version = "(unknown)";
} else {
version = p.getImplementationVersion();
if (version == null) {
version = "(unknown)";
}
}
return version;
}
2011-01-01 01:40:07 +00:00
}