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;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
2011-01-22 21:34:05 +00:00
|
|
|
import java.util.Map;
|
2011-01-01 01:40:07 +00:00
|
|
|
import java.util.Set;
|
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.logging.Level;
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
import java.io.*;
|
2011-01-22 10:41:08 +00:00
|
|
|
import javax.script.ScriptException;
|
2011-02-18 06:53:44 +00:00
|
|
|
import com.sk89q.minecraft.util.commands.CommandsManager;
|
2011-01-19 10:03:41 +00:00
|
|
|
import com.sk89q.util.StringUtil;
|
2011-01-26 18:52:53 +00:00
|
|
|
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-01-22 21:34:05 +00:00
|
|
|
import com.sk89q.worldedit.scripting.*;
|
2011-02-18 23:14:43 +00:00
|
|
|
import com.sk89q.worldedit.tools.BlockTool;
|
|
|
|
import com.sk89q.worldedit.tools.Tool;
|
|
|
|
import com.sk89q.worldedit.tools.TraceTool;
|
|
|
|
import com.sk89q.worldedit.masks.BlockTypeMask;
|
|
|
|
import com.sk89q.worldedit.masks.ExistingBlockMask;
|
|
|
|
import com.sk89q.worldedit.masks.Mask;
|
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
|
|
|
|
*/
|
2011-01-26 18:53:26 +00:00
|
|
|
public class WorldEdit {
|
2011-01-29 10:05:22 +00:00
|
|
|
public static final Logger logger = Logger.getLogger("Minecraft.WorldEdit");
|
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.
|
|
|
|
*/
|
2011-01-02 05:50:31 +00:00
|
|
|
private LocalConfiguration config;
|
2011-01-01 01:40:07 +00:00
|
|
|
|
2011-01-29 10:05:22 +00:00
|
|
|
/**
|
|
|
|
* List of commands.
|
|
|
|
*/
|
|
|
|
private CommandsManager commands;
|
|
|
|
|
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.
|
|
|
|
*/
|
2011-01-27 17:51:23 +00:00
|
|
|
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
|
|
|
/**
|
2011-01-01 18:33:18 +00:00
|
|
|
* Construct an instance of the plugin
|
|
|
|
*
|
|
|
|
* @param server
|
2011-01-02 05:50:31 +00:00
|
|
|
* @param config
|
2011-01-01 01:40:07 +00:00
|
|
|
*/
|
2011-01-26 18:53:26 +00:00
|
|
|
public WorldEdit(ServerInterface server, LocalConfiguration config) {
|
2011-01-01 18:33:18 +00:00
|
|
|
this.server = server;
|
2011-01-02 05:50:31 +00:00
|
|
|
this.config = config;
|
2011-01-01 01:40:07 +00:00
|
|
|
|
2011-01-29 10:05:22 +00:00
|
|
|
commands = new CommandsManager();
|
|
|
|
|
|
|
|
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(SnapshotCommands.class);
|
2011-02-18 23:14:43 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-01-02 05:50:31 +00:00
|
|
|
* Gets the WorldEdit session for a player.
|
2011-01-01 01:40:07 +00:00
|
|
|
*
|
|
|
|
* @param player
|
|
|
|
* @return
|
|
|
|
*/
|
2011-01-01 18:34:36 +00:00
|
|
|
public LocalSession getSession(LocalPlayer player) {
|
2011-01-27 17:51:23 +00:00
|
|
|
if (sessions.containsKey(player.getName())) {
|
|
|
|
return sessions.get(player.getName());
|
2011-01-02 05:50:31 +00:00
|
|
|
}
|
|
|
|
|
2011-01-31 08:58:29 +00:00
|
|
|
LocalSession session = new LocalSession(config);
|
2011-01-02 05:50:31 +00:00
|
|
|
|
|
|
|
// 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")
|
2011-01-02 05:50:31 +00:00
|
|
|
&& 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) {
|
2011-02-19 00:24:56 +00:00
|
|
|
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
|
2011-02-18 23:14:43 +00:00
|
|
|
* @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
|
|
|
|
2011-02-19 00:24:56 +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
|
|
|
|
2011-02-19 00:24:56 +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;
|
2011-02-19 00:24:56 +00:00
|
|
|
|
|
|
|
// 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);
|
|
|
|
}
|
2011-02-18 23:14:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 {
|
|
|
|
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
|
2011-02-18 23:14:43 +00:00
|
|
|
* @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;
|
|
|
|
}
|
2011-01-31 04:40:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
2011-02-18 23:14:43 +00:00
|
|
|
* @param player
|
2011-01-31 04:40:22 +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
|
2011-01-31 05:32:52 +00:00
|
|
|
* @param extensions list of extensions, null for any
|
2011-01-31 04:40:22 +00:00
|
|
|
* @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.
|
|
|
|
*
|
2011-02-18 23:14:43 +00:00
|
|
|
* @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 {
|
2011-01-31 04:40:22 +00:00
|
|
|
File f;
|
|
|
|
|
|
|
|
if (filename.equals("#")) {
|
2011-01-31 05:32:52 +00:00
|
|
|
if (isSave) {
|
|
|
|
f = player.openFileSaveDialog(extensions);
|
|
|
|
} else {
|
|
|
|
f = player.openFileOpenDialog(extensions);
|
|
|
|
}
|
|
|
|
|
2011-01-31 04:40:22 +00:00
|
|
|
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)) {
|
2011-01-31 06:06:06 +00:00
|
|
|
throw new FilenameResolutionException(filename,
|
2011-01-31 04:40:22 +00:00
|
|
|
"Path is outside allowable root");
|
|
|
|
}
|
|
|
|
|
|
|
|
return f;
|
|
|
|
} catch (IOException e) {
|
2011-01-31 06:06:06 +00:00
|
|
|
throw new FilenameResolutionException(filename,
|
2011-01-31 04:40:22 +00:00
|
|
|
"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
|
|
|
}
|
2011-01-29 18:14:04 +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
|
2011-02-18 23:14:43 +00:00
|
|
|
* @param dirStr
|
2011-01-01 01:40:07 +00:00
|
|
|
* @return
|
2011-02-18 23:14:43 +00:00
|
|
|
* @throws UnknownDirectionException
|
2011-01-01 01:40:07 +00:00
|
|
|
*/
|
2011-01-01 18:34:36 +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;
|
|
|
|
|
2011-01-23 10:03:49 +00:00
|
|
|
PlayerDirection dir = null;
|
2011-01-09 19:22:42 +00:00
|
|
|
|
|
|
|
dirStr = dirStr.toLowerCase();
|
|
|
|
boolean wasDetected = false;
|
2011-01-01 01:40:07 +00:00
|
|
|
|
|
|
|
if (dirStr.equals("me")) {
|
|
|
|
dir = player.getCardinalDirection();
|
2011-01-09 19:22:42 +00:00
|
|
|
wasDetected = true;
|
2011-01-01 01:40:07 +00:00
|
|
|
}
|
|
|
|
|
2011-01-23 10:03:49 +00:00
|
|
|
if (dirStr.charAt(0) == 'w' || dir == PlayerDirection.WEST) {
|
2011-01-01 01:40:07 +00:00
|
|
|
zm += 1;
|
2011-01-23 10:03:49 +00:00
|
|
|
} else if (dirStr.charAt(0) == 'e' || dir == PlayerDirection.EAST) {
|
2011-01-01 01:40:07 +00:00
|
|
|
zm -= 1;
|
2011-01-23 10:03:49 +00:00
|
|
|
} else if (dirStr.charAt(0) == 's' || dir == PlayerDirection.SOUTH) {
|
2011-01-01 01:40:07 +00:00
|
|
|
xm += 1;
|
2011-01-23 10:03:49 +00:00
|
|
|
} 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 {
|
2011-01-09 19:22:42 +00:00
|
|
|
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
|
2011-02-18 23:14:43 +00:00
|
|
|
* @param dirStr
|
2011-01-01 01:40:07 +00:00
|
|
|
* @return
|
2011-02-18 23:14:43 +00:00
|
|
|
* @throws UnknownDirectionException
|
2011-01-01 01:40:07 +00:00
|
|
|
*/
|
|
|
|
public CuboidClipboard.FlipDirection getFlipDirection(
|
2011-01-01 18:34:36 +00:00
|
|
|
LocalPlayer player, String dirStr)
|
2011-01-01 01:40:07 +00:00
|
|
|
throws UnknownDirectionException {
|
2011-01-23 10:03:49 +00:00
|
|
|
PlayerDirection dir = null;
|
2011-01-01 01:40:07 +00:00
|
|
|
|
|
|
|
if (dirStr.equals("me")) {
|
|
|
|
dir = player.getCardinalDirection();
|
|
|
|
}
|
|
|
|
|
2011-01-23 10:03:49 +00:00
|
|
|
if (dirStr.charAt(0) == 'w' || dir == PlayerDirection.EAST) {
|
2011-01-01 01:40:07 +00:00
|
|
|
return CuboidClipboard.FlipDirection.WEST_EAST;
|
2011-01-23 10:03:49 +00:00
|
|
|
} else if (dirStr.charAt(0) == 'e' || dir == PlayerDirection.EAST) {
|
2011-01-01 01:40:07 +00:00
|
|
|
return CuboidClipboard.FlipDirection.WEST_EAST;
|
2011-01-23 10:03:49 +00:00
|
|
|
} else if (dirStr.charAt(0) == 's' || dir == PlayerDirection.SOUTH) {
|
2011-01-01 01:40:07 +00:00
|
|
|
return CuboidClipboard.FlipDirection.NORTH_SOUTH;
|
2011-01-23 10:03:49 +00:00
|
|
|
} 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
|
|
|
|
*/
|
2011-01-01 18:34:36 +00:00
|
|
|
public void removeSession(LocalPlayer player) {
|
2011-01-27 17:51:23 +00:00
|
|
|
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
|
|
|
|
*/
|
2011-01-01 18:34:36 +00:00
|
|
|
public void handleDisconnect(LocalPlayer player) {
|
2011-01-01 01:40:07 +00:00
|
|
|
removeSession(player);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called on arm swing.
|
|
|
|
*
|
|
|
|
* @param player
|
2011-01-19 10:27:12 +00:00
|
|
|
* @return
|
2011-01-01 01:40:07 +00:00
|
|
|
*/
|
2011-01-19 10:27:12 +00:00
|
|
|
public boolean handleArmSwing(LocalPlayer player) {
|
2011-01-09 19:14:55 +00:00
|
|
|
LocalSession session = getSession(player);
|
|
|
|
|
2011-02-18 23:14:43 +00:00
|
|
|
if (player.getItemInHand() == config.navigationWand
|
2011-01-26 18:52:53 +00:00
|
|
|
&& config.navigationWandMaxDistance > 0) {
|
|
|
|
CompassMode mode = session.getCompassMode();
|
|
|
|
|
2011-01-29 10:05:22 +00:00
|
|
|
if (player.hasPermission("worldedit.navigation.jumpto") && mode == CompassMode.JUMPTO) {
|
2011-01-26 18:52:53 +00:00
|
|
|
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);
|
|
|
|
|
2011-02-18 23:14:43 +00:00
|
|
|
if (player.getItemInHand() == config.navigationWand) {
|
2011-01-26 18:52:53 +00:00
|
|
|
CompassMode mode = session.getCompassMode();
|
|
|
|
|
|
|
|
if (mode == CompassMode.JUMPTO) {
|
2011-01-29 10:05:22 +00:00
|
|
|
if (player.hasPermission("worldedit.navigation.thru")) {
|
2011-01-26 18:52:53 +00:00
|
|
|
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")) {
|
2011-01-26 18:52:53 +00:00
|
|
|
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
|
|
|
}
|
2011-01-26 18:52:53 +00:00
|
|
|
|
|
|
|
return true;
|
2011-01-09 19:14:55 +00:00
|
|
|
}
|
2011-01-19 10:27:12 +00:00
|
|
|
|
2011-02-18 23:14:43 +00:00
|
|
|
Tool tool = session.getTool(player.getItemInHand());
|
|
|
|
|
|
|
|
if (tool != null && tool instanceof TraceTool) {
|
|
|
|
((TraceTool)tool).act(server, config, player, session);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-01-19 10:27:12 +00:00
|
|
|
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
|
|
|
|
*/
|
2011-01-08 19:26:27 +00:00
|
|
|
public boolean handleBlockRightClick(LocalPlayer player, WorldVector clicked) {
|
2011-01-01 01:40:07 +00:00
|
|
|
int itemInHand = player.getItemInHand();
|
|
|
|
|
2011-01-01 18:34:36 +00:00
|
|
|
LocalSession session = getSession(player);
|
2011-01-01 01:40:07 +00:00
|
|
|
|
2011-01-02 05:50:31 +00:00
|
|
|
if (itemInHand == config.wandItem && session.isToolControlEnabled()
|
2011-01-29 10:05:22 +00:00
|
|
|
&& player.hasPermission("worldedit.selection.pos")) {
|
2011-01-01 01:40:07 +00:00
|
|
|
session.setPos2(clicked);
|
2011-02-18 23:14:43 +00:00
|
|
|
|
2011-01-01 01:40:07 +00:00
|
|
|
try {
|
|
|
|
player.print("Second position set to " + clicked
|
|
|
|
+ " (" + session.getRegion().getSize() + ").");
|
|
|
|
} catch (IncompleteRegionException e) {
|
|
|
|
player.print("Second position set to " + clicked + ".");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2011-02-18 23:14:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2011-01-08 19:26:27 +00:00
|
|
|
public boolean handleBlockLeftClick(LocalPlayer player, WorldVector clicked) {
|
2011-01-01 18:34:36 +00:00
|
|
|
LocalSession session = getSession(player);
|
2011-01-01 01:40:07 +00:00
|
|
|
|
2011-01-02 05:50:31 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (session.getPos1().equals(clicked)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} catch (IncompleteRegionException e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
session.setPos1(clicked);
|
|
|
|
try {
|
|
|
|
player.print("First position set to " + clicked
|
|
|
|
+ " (" + session.getRegion().getSize() + ").");
|
|
|
|
} catch (IncompleteRegionException e) {
|
|
|
|
player.print("First position set to " + clicked + ".");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-01-02 05:50:31 +00:00
|
|
|
} else if (player.isHoldingPickAxe() && session.hasSuperPickAxe()) {
|
2011-02-18 23:14:43 +00:00
|
|
|
if (session.getSuperPickaxe() != null) {
|
|
|
|
return session.getSuperPickaxe().act(server, config,
|
2011-01-08 19:26:27 +00:00
|
|
|
player, session, clicked);
|
2011-01-01 01:40:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param player
|
|
|
|
* @param split
|
|
|
|
* @return whether the command was processed
|
|
|
|
*/
|
2011-01-01 18:34:36 +00:00
|
|
|
public boolean handleCommand(LocalPlayer player, String[] split) {
|
2011-01-01 01:40:07 +00:00
|
|
|
try {
|
2011-01-29 19:36:28 +00:00
|
|
|
split[0] = split[0].substring(1);
|
2011-01-29 10:05:22 +00:00
|
|
|
|
2011-01-26 20:38:51 +00:00
|
|
|
// Quick script shortcut
|
2011-01-29 19:36:28 +00:00
|
|
|
if (split[0].matches("^[^/].*\\.js$")) {
|
2011-01-26 20:38:51 +00:00
|
|
|
String[] newSplit = new String[split.length + 1];
|
|
|
|
System.arraycopy(split, 0, newSplit, 1, split.length);
|
2011-01-29 19:36:28 +00:00
|
|
|
newSplit[0] = "cs";
|
2011-01-29 19:37:41 +00:00
|
|
|
newSplit[1] = newSplit[1];
|
2011-01-26 20:38:51 +00:00
|
|
|
split = newSplit;
|
|
|
|
}
|
2011-01-01 01:40:07 +00:00
|
|
|
|
|
|
|
String searchCmd = split[0].toLowerCase();
|
2011-01-29 10:05:22 +00:00
|
|
|
if (commands.hasCommand(searchCmd)
|
|
|
|
|| (config.noDoubleSlash && commands.hasCommand("/" + searchCmd))
|
2011-01-29 19:36:28 +00:00
|
|
|
|| (searchCmd.length() >= 2 && searchCmd.charAt(0) == '/'
|
2011-01-29 10:05:22 +00:00
|
|
|
&& commands.hasCommand(searchCmd.substring(1)))) {
|
|
|
|
if (config.noDoubleSlash && commands.hasCommand("/" + searchCmd)) {
|
2011-01-01 01:40:07 +00:00
|
|
|
split[0] = "/" + split[0];
|
2011-01-29 10:05:22 +00:00
|
|
|
} else if (commands.hasCommand(searchCmd.substring(1))) {
|
2011-01-01 01:40:07 +00:00
|
|
|
split[0] = split[0].substring(1);
|
|
|
|
}
|
2011-01-29 10:05:22 +00:00
|
|
|
|
|
|
|
LocalSession session = getSession(player);
|
|
|
|
BlockBag blockBag = session.getBlockBag(player);
|
2011-01-01 01:40:07 +00:00
|
|
|
|
2011-01-31 08:58:29 +00:00
|
|
|
session.tellVersion(player);
|
|
|
|
|
2011-01-29 10:05:22 +00:00
|
|
|
EditSession editSession =
|
2011-02-18 23:14:43 +00:00
|
|
|
new EditSession(player.getWorld(),
|
2011-01-29 10:05:22 +00:00
|
|
|
session.getBlockChangeLimit(), blockBag);
|
|
|
|
editSession.enableQueue();
|
2011-01-01 01:40:07 +00:00
|
|
|
|
2011-01-29 10:05:22 +00:00
|
|
|
long start = System.currentTimeMillis();
|
2011-01-01 01:40:07 +00:00
|
|
|
|
2011-01-29 10:05:22 +00:00
|
|
|
try {
|
|
|
|
if (config.logCommands) {
|
|
|
|
logger.log(Level.INFO, "WorldEdit: " + player.getName() + ": "
|
|
|
|
+ StringUtil.joinString(split, " "));
|
|
|
|
}
|
|
|
|
|
2011-02-18 06:53:44 +00:00
|
|
|
Object[] methodArgs = new Object[] {
|
|
|
|
null, this, session, player, editSession
|
|
|
|
};
|
|
|
|
|
|
|
|
return commands.execute(split, player, methodArgs);
|
2011-01-29 10:05:22 +00:00
|
|
|
} finally {
|
|
|
|
session.remember(editSession);
|
|
|
|
editSession.flushQueue();
|
2011-01-01 01:40:07 +00:00
|
|
|
|
2011-01-29 10:05:22 +00:00
|
|
|
if (config.profile) {
|
|
|
|
long time = System.currentTimeMillis() - start;
|
2011-02-01 07:51:55 +00:00
|
|
|
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
|
|
|
}
|
2011-01-29 10:05:22 +00:00
|
|
|
|
|
|
|
flushBlockBag(player, editSession);
|
2011-01-01 01:40:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
} 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) {
|
2011-01-02 05:50:31 +00:00
|
|
|
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.");
|
2011-01-31 04:40:22 +00:00
|
|
|
} catch (InvalidFilenameException e) {
|
|
|
|
player.printError("Filename '" + e.getFilename() + "' invalid: "
|
|
|
|
+ e.getMessage());
|
2011-01-31 06:06:06 +00:00
|
|
|
} catch (FilenameResolutionException e) {
|
|
|
|
player.printError("File '" + e.getFilename() + "' resolution error: "
|
2011-01-31 04:40:22 +00:00
|
|
|
+ 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
|
2011-02-18 23:14:43 +00:00
|
|
|
* @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
|
|
|
*/
|
2011-01-31 04:40:22 +00:00
|
|
|
public void runScript(LocalPlayer player, File f, String[] args)
|
2011-01-22 23:38:04 +00:00
|
|
|
throws WorldEditException {
|
2011-01-31 04:40:22 +00:00
|
|
|
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()) {
|
2011-01-26 18:53:26 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-01-29 17:50:28 +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()) {
|
2011-01-31 04:41:34 +00:00
|
|
|
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-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
|
|
|
}
|