2010-09-28 08:12:34 +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/>.
|
|
|
|
*/
|
|
|
|
|
2010-09-30 06:41:05 +00:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.logging.Level;
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
import java.util.Map;
|
2010-10-02 08:21:48 +00:00
|
|
|
import java.io.*;
|
|
|
|
import org.mozilla.javascript.*;
|
2010-10-02 20:46:33 +00:00
|
|
|
import com.sk89q.worldedit.*;
|
2010-09-28 08:12:34 +00:00
|
|
|
|
2010-09-30 06:41:05 +00:00
|
|
|
/**
|
2010-10-03 19:16:09 +00:00
|
|
|
* Plugin entry point for Hey0's mod.
|
2010-09-30 06:41:05 +00:00
|
|
|
*
|
|
|
|
* @author sk89q
|
|
|
|
*/
|
|
|
|
public class WorldEdit extends Plugin {
|
2010-10-02 23:28:02 +00:00
|
|
|
private final static String DEFAULT_ALLOWED_BLOCKS =
|
|
|
|
"0,1,2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,35,41,42,43," +
|
|
|
|
"44,45,47,48,49,52,53,54,56,57,58,60,61,62,67,73,78,79,80,81,82,85";
|
|
|
|
|
2010-09-30 06:41:05 +00:00
|
|
|
private static Logger logger = Logger.getLogger("Minecraft");
|
|
|
|
private HashMap<String,WorldEditSession> sessions = new HashMap<String,WorldEditSession>();
|
|
|
|
private HashMap<String,String> commands = new HashMap<String,String>();
|
2010-09-28 08:12:34 +00:00
|
|
|
|
2010-10-02 23:28:02 +00:00
|
|
|
private PropertiesFile properties;
|
|
|
|
private String[] allowedBlocks;
|
2010-10-04 23:39:35 +00:00
|
|
|
private int defaultMaxBlocksChanged;
|
2010-10-03 20:23:43 +00:00
|
|
|
private boolean mapScriptCommands = false;
|
2010-10-02 23:28:02 +00:00
|
|
|
|
2010-10-03 19:16:09 +00:00
|
|
|
/**
|
|
|
|
* Construct an instance of the plugin.
|
|
|
|
*/
|
2010-09-30 06:41:05 +00:00
|
|
|
public WorldEdit() {
|
|
|
|
super();
|
2010-09-28 08:12:34 +00:00
|
|
|
|
|
|
|
commands.put("/editpos1", "Set editing position #1");
|
|
|
|
commands.put("/editpos2", "Set editing position #2");
|
2010-10-02 21:52:42 +00:00
|
|
|
commands.put("/editundo", "Undo");
|
|
|
|
commands.put("/editredo", "Redo");
|
2010-10-02 23:13:52 +00:00
|
|
|
commands.put("/clearhistory", "Clear history");
|
2010-10-03 19:37:32 +00:00
|
|
|
commands.put("/clearclipboard", "Clear clipboard");
|
2010-09-28 08:12:34 +00:00
|
|
|
commands.put("/editsize", "Get size of selected region");
|
2010-10-05 06:08:08 +00:00
|
|
|
commands.put("/editset", "[ID] - Set all blocks inside region");
|
|
|
|
commands.put("/editoutline", "[ID] - Outline the region with blocks");
|
|
|
|
commands.put("/editreplace", "[ID] <ToReplaceID> - Replace all existing blocks inside region");
|
|
|
|
commands.put("/editoverlay", "[ID] - Overlay the area one layer");
|
2010-09-28 08:12:34 +00:00
|
|
|
commands.put("/removeabove", "<Size> - Remove blocks above head");
|
2010-10-02 23:11:44 +00:00
|
|
|
commands.put("/editcopy", "Copies the currently selected region");
|
|
|
|
commands.put("/editpaste", "Pastes the clipboard");
|
|
|
|
commands.put("/editpasteair", "Pastes the clipboard (with air)");
|
2010-10-03 17:44:52 +00:00
|
|
|
commands.put("/editload", "[Filename] - Load .schematic into clipboard");
|
|
|
|
commands.put("/editsave", "[Filename] - Save clipboard to .schematic");
|
2010-10-05 06:08:08 +00:00
|
|
|
commands.put("/editfill", "[ID] [Radius] <Depth> - Fill a hole");
|
2010-10-03 20:23:43 +00:00
|
|
|
commands.put("/editscript", "[Filename] <Args...> - Run a WorldEdit script");
|
2010-10-05 06:08:08 +00:00
|
|
|
commands.put("/editlimit", "[Num] - See documentation");
|
2010-09-28 08:12:34 +00:00
|
|
|
}
|
|
|
|
|
2010-09-30 06:41:05 +00:00
|
|
|
/**
|
|
|
|
* Gets the WorldEdit session for a player.
|
|
|
|
*
|
|
|
|
* @param player
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
private WorldEditSession getSession(Player player) {
|
|
|
|
if (sessions.containsKey(player.getName())) {
|
|
|
|
return sessions.get(player.getName());
|
|
|
|
} else {
|
|
|
|
WorldEditSession session = new WorldEditSession();
|
2010-10-04 23:39:35 +00:00
|
|
|
session.setBlockChangeLimit(defaultMaxBlocksChanged);
|
2010-09-30 06:41:05 +00:00
|
|
|
sessions.put(player.getName(), session);
|
|
|
|
return session;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an item ID from an item name or an item ID number.
|
|
|
|
*
|
|
|
|
* @param id
|
|
|
|
* @return
|
|
|
|
* @throws UnknownItemException
|
2010-10-02 08:36:33 +00:00
|
|
|
* @throws DisallowedItemException
|
2010-09-30 06:41:05 +00:00
|
|
|
*/
|
2010-10-02 23:44:20 +00:00
|
|
|
private int getItem(String id, boolean allAllowed)
|
|
|
|
throws UnknownItemException, DisallowedItemException {
|
2010-10-02 08:36:33 +00:00
|
|
|
int foundID;
|
|
|
|
|
2010-09-30 06:41:05 +00:00
|
|
|
try {
|
2010-10-02 08:36:33 +00:00
|
|
|
foundID = Integer.parseInt(id);
|
2010-09-30 06:41:05 +00:00
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
try {
|
2010-10-05 05:44:55 +00:00
|
|
|
foundID = etc.getDataSource().getItem(id);
|
2010-09-30 06:41:05 +00:00
|
|
|
} catch (NumberFormatException e2) {
|
|
|
|
throw new UnknownItemException();
|
|
|
|
}
|
|
|
|
}
|
2010-10-02 08:36:33 +00:00
|
|
|
|
2010-10-02 23:28:02 +00:00
|
|
|
// All items allowed
|
2010-10-02 23:44:20 +00:00
|
|
|
if (allAllowed || allowedBlocks[0].equals("")) {
|
2010-10-02 08:36:33 +00:00
|
|
|
return foundID;
|
|
|
|
}
|
2010-10-02 23:28:02 +00:00
|
|
|
|
|
|
|
for (String s : allowedBlocks) {
|
|
|
|
if (s.equals(String.valueOf(foundID))) {
|
|
|
|
return foundID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new DisallowedItemException();
|
2010-09-28 08:12:34 +00:00
|
|
|
}
|
|
|
|
|
2010-10-02 23:44:20 +00:00
|
|
|
/**
|
|
|
|
* Get an item ID from an item name or an item ID number.
|
|
|
|
*
|
|
|
|
* @param id
|
|
|
|
* @return
|
|
|
|
* @throws UnknownItemException
|
|
|
|
* @throws DisallowedItemException
|
|
|
|
*/
|
|
|
|
private int getItem(String id) throws UnknownItemException,
|
|
|
|
DisallowedItemException {
|
|
|
|
return getItem(id, false);
|
|
|
|
}
|
|
|
|
|
2010-09-30 06:41:05 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param player
|
|
|
|
*/
|
2010-10-03 19:16:09 +00:00
|
|
|
@Override
|
2010-09-30 06:41:05 +00:00
|
|
|
public void onDisconnect(Player player) {
|
|
|
|
sessions.remove(player.getName());
|
2010-09-28 08:12:34 +00:00
|
|
|
}
|
|
|
|
|
2010-10-03 19:16:09 +00:00
|
|
|
/**
|
2010-10-05 06:08:08 +00:00
|
|
|
* Checks to make sure that there are enough but not too many arguments.
|
2010-10-03 19:16:09 +00:00
|
|
|
*
|
|
|
|
* @param args
|
|
|
|
* @param min
|
2010-10-05 06:08:08 +00:00
|
|
|
* @param max -1 for no maximum
|
|
|
|
* @param cmd command name
|
2010-10-03 19:16:09 +00:00
|
|
|
* @throws InsufficientArgumentsException
|
|
|
|
*/
|
2010-10-05 06:08:08 +00:00
|
|
|
private void checkArgs(String[] args, int min, int max, String cmd)
|
|
|
|
throws InsufficientArgumentsException {
|
|
|
|
if (args.length <= min || (max != -1 && args.length - 1 > max)) {
|
|
|
|
if (commands.containsKey(cmd)) {
|
|
|
|
throw new InsufficientArgumentsException(cmd + " usage: " +
|
|
|
|
commands.get(cmd));
|
|
|
|
} else {
|
|
|
|
throw new InsufficientArgumentsException("Invalid number of arguments");
|
|
|
|
}
|
2010-10-03 19:16:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enables the plugin.
|
|
|
|
*/
|
|
|
|
public void enable() {
|
|
|
|
if (properties == null) {
|
|
|
|
properties = new PropertiesFile("worldedit.properties");
|
|
|
|
} else {
|
|
|
|
properties.load();
|
|
|
|
}
|
|
|
|
|
|
|
|
allowedBlocks = properties.getString("allowed-blocks", DEFAULT_ALLOWED_BLOCKS).split(",");
|
2010-10-03 20:23:43 +00:00
|
|
|
mapScriptCommands = properties.getBoolean("map-script-commands", true);
|
2010-10-04 23:39:35 +00:00
|
|
|
defaultMaxBlocksChanged =
|
|
|
|
Math.max(-1, properties.getInt("max-blocks-changed", -1));
|
2010-10-03 19:16:09 +00:00
|
|
|
|
|
|
|
etc controller = etc.getInstance();
|
|
|
|
|
|
|
|
for (Map.Entry<String,String> entry : commands.entrySet()) {
|
|
|
|
controller.addCommand(entry.getKey(), entry.getValue());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disables the plugin.
|
|
|
|
*/
|
|
|
|
public void disable() {
|
|
|
|
etc controller = etc.getInstance();
|
|
|
|
|
|
|
|
for (String key : commands.keySet()) {
|
|
|
|
controller.removeCommand(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
sessions.clear();
|
|
|
|
}
|
|
|
|
|
2010-10-03 23:45:54 +00:00
|
|
|
/**
|
|
|
|
* Called on right click.
|
|
|
|
*
|
|
|
|
* @param player
|
|
|
|
* @param blockPlaced
|
|
|
|
* @param blockClicked
|
|
|
|
* @param itemInHand
|
|
|
|
* @return false if you want the action to go through
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public boolean onBlockCreate(Player player, Block blockPlaced,
|
|
|
|
Block blockClicked, int itemInHand) {
|
|
|
|
if (itemInHand == 271) { // Wooden axe
|
2010-10-04 00:57:41 +00:00
|
|
|
if (!player.canUseCommand("/editpos1")
|
|
|
|
|| !player.canUseCommand("/editpos2")) {
|
2010-10-03 23:45:54 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
WorldEditSession session = getSession(player);
|
|
|
|
|
|
|
|
int x = (int)Math.floor(blockClicked.getX());
|
|
|
|
int y = (int)Math.floor(blockClicked.getY());
|
|
|
|
int z = (int)Math.floor(blockClicked.getZ());
|
|
|
|
|
|
|
|
if (session.isToolControlEnabled()) {
|
|
|
|
try {
|
|
|
|
if (session.hasToolBeenDoubleClicked()
|
|
|
|
&& x == session.getPos1()[0]
|
|
|
|
&& y == session.getPos1()[1]
|
|
|
|
&& z == session.getPos1()[2]) { // Pos 2
|
|
|
|
session.setPos2(x, y, z);
|
|
|
|
session.setPos1(session.getLastToolPos1());
|
|
|
|
player.sendMessage(Colors.LightPurple + "Second edit position set; first one restored.");
|
|
|
|
} else {
|
|
|
|
// Have to remember the original position because on
|
|
|
|
// double click, we are going to restore it
|
|
|
|
try {
|
|
|
|
session.setLastToolPos1(session.getPos1());
|
|
|
|
} catch (IncompleteRegionException e) {}
|
|
|
|
|
|
|
|
session.setPos1(x, y, z);
|
|
|
|
player.sendMessage(Colors.LightPurple + "First edit position set.");
|
|
|
|
}
|
|
|
|
} catch (IncompleteRegionException e) {}
|
|
|
|
|
|
|
|
session.triggerToolClick();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-09-30 06:41:05 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param player
|
|
|
|
* @param split
|
|
|
|
* @return
|
|
|
|
*/
|
2010-10-03 19:16:09 +00:00
|
|
|
@Override
|
2010-09-28 08:12:34 +00:00
|
|
|
public boolean onCommand(Player player, String[] split) {
|
|
|
|
try {
|
2010-09-30 06:41:05 +00:00
|
|
|
if (commands.containsKey(split[0])) {
|
2010-10-04 00:57:41 +00:00
|
|
|
if (player.canUseCommand(split[0])) {
|
2010-10-04 23:39:35 +00:00
|
|
|
WorldEditSession session = getSession(player);
|
|
|
|
EditSession editSession =
|
|
|
|
new EditSession(session.getBlockChangeLimit());
|
|
|
|
|
|
|
|
try {
|
|
|
|
return performCommand(player, session, editSession, split);
|
|
|
|
} finally {
|
|
|
|
session.remember(editSession);
|
|
|
|
}
|
2010-09-30 06:41:05 +00:00
|
|
|
}
|
2010-10-03 20:23:43 +00:00
|
|
|
} else {
|
|
|
|
// See if there is a script by the same name
|
2010-10-04 23:39:35 +00:00
|
|
|
if (mapScriptCommands && player.canUseCommand("/editscript")) {
|
|
|
|
WorldEditSession session = getSession(player);
|
|
|
|
EditSession editSession =
|
|
|
|
new EditSession(session.getBlockChangeLimit());
|
|
|
|
|
|
|
|
String filename = split[0].substring(1) + ".js";
|
|
|
|
String[] args = new String[split.length - 1];
|
|
|
|
System.arraycopy(split, 1, args, 0, split.length - 1);
|
|
|
|
|
|
|
|
try {
|
|
|
|
return runScript(player, session, editSession, filename, args);
|
|
|
|
} catch (NoSuchScriptException nse) {
|
|
|
|
return false;
|
|
|
|
} finally {
|
|
|
|
session.remember(editSession);
|
2010-10-03 20:23:43 +00:00
|
|
|
}
|
|
|
|
}
|
2010-09-30 06:41:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2010-09-28 08:12:34 +00:00
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
player.sendMessage(Colors.Rose + "Number expected; string given.");
|
2010-09-30 06:41:05 +00:00
|
|
|
} catch (IncompleteRegionException e2) {
|
|
|
|
player.sendMessage(Colors.Rose + "The edit region has not been fully defined.");
|
|
|
|
} catch (UnknownItemException e3) {
|
|
|
|
player.sendMessage(Colors.Rose + "Unknown item.");
|
2010-10-02 08:36:33 +00:00
|
|
|
} catch (DisallowedItemException e4) {
|
|
|
|
player.sendMessage(Colors.Rose + "Disallowed item.");
|
2010-10-04 23:39:35 +00:00
|
|
|
} catch (MaxChangedBlocksException e5) {
|
|
|
|
player.sendMessage(Colors.Rose + "The maximum number of blocks changed ("
|
|
|
|
+ e5.getBlockLimit() + ") in an instance was reached.");
|
|
|
|
} catch (InsufficientArgumentsException e6) {
|
|
|
|
player.sendMessage(Colors.Rose + e6.getMessage());
|
|
|
|
} catch (WorldEditException e7) {
|
|
|
|
player.sendMessage(Colors.Rose + e7.getMessage());
|
2010-09-28 08:12:34 +00:00
|
|
|
}
|
2010-10-04 23:39:35 +00:00
|
|
|
|
|
|
|
return true;
|
2010-09-28 08:12:34 +00:00
|
|
|
}
|
|
|
|
|
2010-09-30 06:41:05 +00:00
|
|
|
/**
|
2010-10-03 19:16:09 +00:00
|
|
|
* The main meat of command processing.
|
2010-09-30 06:41:05 +00:00
|
|
|
*
|
2010-10-03 19:16:09 +00:00
|
|
|
* @param player
|
2010-10-04 23:39:35 +00:00
|
|
|
* @param session
|
|
|
|
* @param editSession
|
2010-10-03 19:16:09 +00:00
|
|
|
* @param split
|
|
|
|
* @return
|
|
|
|
* @throws UnknownItemException
|
|
|
|
* @throws IncompleteRegionException
|
2010-09-30 06:41:05 +00:00
|
|
|
* @throws InsufficientArgumentsException
|
2010-10-03 19:16:09 +00:00
|
|
|
* @throws DisallowedItemException
|
2010-09-30 06:41:05 +00:00
|
|
|
*/
|
2010-10-04 23:39:35 +00:00
|
|
|
private boolean performCommand(Player player, WorldEditSession session,
|
|
|
|
EditSession editSession, String[] split)
|
|
|
|
throws WorldEditException
|
2010-09-30 06:41:05 +00:00
|
|
|
{
|
2010-09-28 08:12:34 +00:00
|
|
|
// Set edit position #1
|
|
|
|
if (split[0].equalsIgnoreCase("/editpos1")) {
|
2010-09-30 06:41:05 +00:00
|
|
|
session.setPos1((int)Math.floor(player.getX()),
|
2010-10-02 08:21:48 +00:00
|
|
|
(int)Math.floor(player.getY()),
|
|
|
|
(int)Math.floor(player.getZ()));
|
2010-09-28 08:12:34 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + "First edit position set.");
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Set edit position #2
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editpos2")) {
|
2010-09-30 06:41:05 +00:00
|
|
|
session.setPos2((int)Math.floor(player.getX()),
|
2010-10-02 08:21:48 +00:00
|
|
|
(int)Math.floor(player.getY()),
|
|
|
|
(int)Math.floor(player.getZ()));
|
2010-09-28 08:12:34 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + "Second edit position set.");
|
|
|
|
return true;
|
2010-09-30 06:41:05 +00:00
|
|
|
|
2010-10-05 06:08:08 +00:00
|
|
|
// Set max number of blocks to change at a time
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editlimit")) {
|
|
|
|
checkArgs(split, 1, 1, "/editlimit");
|
2010-10-04 23:39:35 +00:00
|
|
|
int limit = Math.max(-1, Integer.parseInt(split[1]));
|
|
|
|
session.setBlockChangeLimit(limit);
|
2010-10-05 06:08:08 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + "Block change limit set to "
|
|
|
|
+ limit + ".");
|
2010-10-04 23:39:35 +00:00
|
|
|
return true;
|
|
|
|
|
2010-10-02 21:52:42 +00:00
|
|
|
// Undo
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editundo")) {
|
|
|
|
if (session.undo()) {
|
|
|
|
player.sendMessage(Colors.LightPurple + "Undo successful.");
|
|
|
|
} else {
|
|
|
|
player.sendMessage(Colors.Rose + "Nothing to undo.");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Redo
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editredo")) {
|
|
|
|
if (session.redo()) {
|
|
|
|
player.sendMessage(Colors.LightPurple + "Redo successful.");
|
|
|
|
} else {
|
|
|
|
player.sendMessage(Colors.Rose + "Nothing to redo.");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
2010-10-02 23:13:52 +00:00
|
|
|
// Clear undo history
|
|
|
|
} else if (split[0].equalsIgnoreCase("/clearhistory")) {
|
|
|
|
session.clearHistory();
|
2010-10-03 19:16:09 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + "History cleared.");
|
2010-10-02 23:13:52 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// Clear clipboard
|
|
|
|
} else if (split[0].equalsIgnoreCase("/clearclipboard")) {
|
|
|
|
session.setClipboard(null);
|
2010-10-03 19:16:09 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + "Clipboard cleared.");
|
2010-10-02 23:13:52 +00:00
|
|
|
return true;
|
|
|
|
|
2010-10-02 23:11:44 +00:00
|
|
|
// Paste
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editpasteair") ||
|
|
|
|
split[0].equalsIgnoreCase("/editpaste")) {
|
|
|
|
if (session.getClipboard() == null) {
|
|
|
|
player.sendMessage(Colors.Rose + "Nothing is in your clipboard.");
|
|
|
|
} else {
|
|
|
|
Point<Integer> pos = new Point<Integer>((int)Math.floor(player.getX()),
|
|
|
|
(int)Math.floor(player.getY()),
|
|
|
|
(int)Math.floor(player.getZ()));
|
|
|
|
session.getClipboard().paste(editSession, pos,
|
|
|
|
split[0].equalsIgnoreCase("/editpaste"));
|
|
|
|
logger.log(Level.INFO, player.getName() + " used " + split[0]);
|
2010-10-05 06:08:08 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + "Pasted. Undo with /editundo");
|
2010-10-02 23:11:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
2010-09-30 06:41:05 +00:00
|
|
|
// Fill a hole
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editfill")) {
|
2010-10-05 06:08:08 +00:00
|
|
|
checkArgs(split, 2, 3, "/editfill");
|
2010-09-30 06:41:05 +00:00
|
|
|
int blockType = getItem(split[1]);
|
2010-10-05 06:08:08 +00:00
|
|
|
int radius = Math.max(1, Integer.parseInt(split[2]));
|
2010-10-02 23:15:10 +00:00
|
|
|
int depth = split.length > 3 ? Math.max(1, Integer.parseInt(split[3])) : 1;
|
2010-09-30 06:41:05 +00:00
|
|
|
|
|
|
|
int cx = (int)Math.floor(player.getX());
|
|
|
|
int cy = (int)Math.floor(player.getY());
|
|
|
|
int cz = (int)Math.floor(player.getZ());
|
|
|
|
int minY = Math.max(-128, cy - depth);
|
|
|
|
|
2010-10-02 21:52:42 +00:00
|
|
|
int affected = fill(editSession, cx, cz, cx, cy, cz,
|
|
|
|
blockType, radius, minY);
|
2010-09-30 06:41:05 +00:00
|
|
|
|
2010-10-05 06:08:08 +00:00
|
|
|
logger.log(Level.INFO, player.getName() + " used " + split[0]);
|
2010-09-30 06:41:05 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + affected + " block(s) have been created.");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Remove blocks above current position
|
|
|
|
} else if (split[0].equalsIgnoreCase("/removeabove")) {
|
2010-10-02 23:15:10 +00:00
|
|
|
int size = split.length > 1 ? Math.max(1, Integer.parseInt(split[1]) - 1) : 0;
|
2010-09-30 06:41:05 +00:00
|
|
|
|
|
|
|
int affected = 0;
|
|
|
|
int cx = (int)Math.floor(player.getX());
|
|
|
|
int cy = (int)Math.floor(player.getY());
|
|
|
|
int cz = (int)Math.floor(player.getZ());
|
|
|
|
|
|
|
|
for (int x = cx - size; x <= cx + size; x++) {
|
|
|
|
for (int z = cz - size; z <= cz + size; z++) {
|
|
|
|
for (int y = cy; y <= 127; y++) {
|
2010-10-02 21:52:42 +00:00
|
|
|
if (editSession.getBlock(x, y, z) != 0) {
|
|
|
|
editSession.setBlock(x, y, z, 0);
|
2010-09-30 06:41:05 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-05 06:08:08 +00:00
|
|
|
logger.log(Level.INFO, player.getName() + " used " + split[0]);
|
2010-09-30 06:41:05 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + affected + " block(s) have been removed.");
|
|
|
|
|
|
|
|
return true;
|
2010-10-02 08:21:48 +00:00
|
|
|
|
2010-10-03 17:44:52 +00:00
|
|
|
// Load .schematic to clipboard
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editload")) {
|
2010-10-05 06:08:08 +00:00
|
|
|
checkArgs(split, 1, 1, "/editload");
|
2010-10-03 17:44:52 +00:00
|
|
|
String filename = split[1].replace("\0", "") + ".schematic";
|
|
|
|
File dir = new File("schematics");
|
|
|
|
File f = new File("schematics", filename);
|
|
|
|
|
|
|
|
try {
|
|
|
|
String filePath = f.getCanonicalPath();
|
|
|
|
String dirPath = dir.getCanonicalPath();
|
|
|
|
|
|
|
|
if (!filePath.substring(0, dirPath.length()).equals(dirPath)) {
|
|
|
|
player.sendMessage(Colors.Rose + "Schematic could not read or it does not exist.");
|
|
|
|
} else {
|
|
|
|
int cx = (int)Math.floor(player.getX());
|
|
|
|
int cy = (int)Math.floor(player.getY());
|
|
|
|
int cz = (int)Math.floor(player.getZ());
|
|
|
|
Point<Integer> origin = new Point<Integer>(cx, cy, cz);
|
|
|
|
session.setClipboard(RegionClipboard.loadSchematic(filePath, origin));
|
|
|
|
logger.log(Level.INFO, player.getName() + " loaded " + filePath);
|
|
|
|
player.sendMessage(Colors.LightPurple + filename + " loaded.");
|
|
|
|
}
|
2010-10-05 00:00:54 +00:00
|
|
|
} catch (SchematicException e) {
|
2010-10-03 17:44:52 +00:00
|
|
|
player.sendMessage(Colors.Rose + "Load error: " + e.getMessage());
|
|
|
|
} catch (IOException e) {
|
|
|
|
player.sendMessage(Colors.Rose + "Schematic could not read or it does not exist.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Save clipboard to .schematic
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editsave")) {
|
|
|
|
if (session.getClipboard() == null) {
|
|
|
|
player.sendMessage(Colors.Rose + "Nothing is in your clipboard.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-10-05 06:08:08 +00:00
|
|
|
checkArgs(split, 1, 1, "/editsave");
|
2010-10-03 17:44:52 +00:00
|
|
|
String filename = split[1].replace("\0", "") + ".schematic";
|
|
|
|
File dir = new File("schematics");
|
|
|
|
File f = new File("schematics", filename);
|
|
|
|
|
|
|
|
if (!dir.exists()) {
|
|
|
|
if (!dir.mkdir()) {
|
|
|
|
player.sendMessage(Colors.Rose + "A schematics/ folder could not be created.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
String filePath = f.getCanonicalPath();
|
|
|
|
String dirPath = dir.getCanonicalPath();
|
|
|
|
|
|
|
|
if (!filePath.substring(0, dirPath.length()).equals(dirPath)) {
|
|
|
|
player.sendMessage(Colors.Rose + "Invalid path for Schematic.");
|
|
|
|
} else {
|
2010-10-05 00:04:28 +00:00
|
|
|
// Create parent directories
|
|
|
|
File parent = f.getParentFile();
|
|
|
|
if (parent != null && !parent.exists()) {
|
|
|
|
parent.mkdirs();
|
|
|
|
}
|
|
|
|
|
2010-10-03 17:44:52 +00:00
|
|
|
session.getClipboard().saveSchematic(filePath);
|
|
|
|
logger.log(Level.INFO, player.getName() + " saved " + filePath);
|
|
|
|
player.sendMessage(Colors.LightPurple + filename + " saved.");
|
|
|
|
}
|
2010-10-05 00:00:54 +00:00
|
|
|
} catch (SchematicException se) {
|
|
|
|
player.sendMessage(Colors.Rose + "Save error: " + se.getMessage());
|
2010-10-03 17:44:52 +00:00
|
|
|
} catch (IOException e) {
|
|
|
|
player.sendMessage(Colors.Rose + "Schematic could not written.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
2010-10-03 20:23:43 +00:00
|
|
|
// Run a script
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editscript")) {
|
2010-10-05 06:08:08 +00:00
|
|
|
checkArgs(split, 1, -1, "/editscript");
|
2010-10-02 08:21:48 +00:00
|
|
|
String filename = split[1].replace("\0", "") + ".js";
|
2010-10-03 20:09:59 +00:00
|
|
|
String[] args = new String[split.length - 2];
|
|
|
|
System.arraycopy(split, 2, args, 0, split.length - 2);
|
2010-10-03 20:23:43 +00:00
|
|
|
try {
|
|
|
|
runScript(player, session, editSession, filename, args);
|
|
|
|
} catch (NoSuchScriptException e) {
|
|
|
|
player.sendMessage(Colors.Rose + "Script file does not exist.");
|
|
|
|
}
|
2010-10-02 08:21:48 +00:00
|
|
|
return true;
|
2010-09-30 06:41:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int lowerX = session.getLowerX();
|
|
|
|
int upperX = session.getUpperX();
|
|
|
|
int lowerY = session.getLowerY();
|
|
|
|
int upperY = session.getUpperY();
|
|
|
|
int lowerZ = session.getLowerZ();
|
|
|
|
int upperZ = session.getUpperZ();
|
2010-09-28 08:12:34 +00:00
|
|
|
|
|
|
|
// Get size of area
|
2010-09-30 06:41:05 +00:00
|
|
|
if (split[0].equalsIgnoreCase("/editsize")) {
|
|
|
|
player.sendMessage(Colors.LightPurple + "# of blocks: " + getSession(player).getSize());
|
2010-09-28 08:12:34 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// Replace all blocks in the region
|
|
|
|
} else if(split[0].equalsIgnoreCase("/editset")) {
|
2010-10-05 06:08:08 +00:00
|
|
|
checkArgs(split, 1, 1, "/editset");
|
2010-09-30 06:41:05 +00:00
|
|
|
int blockType = getItem(split[1]);
|
2010-09-28 08:12:34 +00:00
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
for (int x = lowerX; x <= upperX; x++) {
|
|
|
|
for (int y = lowerY; y <= upperY; y++) {
|
|
|
|
for (int z = lowerZ; z <= upperZ; z++) {
|
2010-10-02 21:52:42 +00:00
|
|
|
editSession.setBlock(x, y, z, blockType);
|
2010-09-28 08:12:34 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-05 06:08:08 +00:00
|
|
|
logger.log(Level.INFO, player.getName() + " used " + split[0]);
|
2010-09-28 08:12:34 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + affected + " block(s) have been set.");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
2010-10-04 00:04:06 +00:00
|
|
|
// Set the outline of a region
|
|
|
|
} else if(split[0].equalsIgnoreCase("/editoutline")) {
|
2010-10-05 06:08:08 +00:00
|
|
|
checkArgs(split, 1, 1, "/editoutline");
|
2010-10-04 00:04:06 +00:00
|
|
|
int blockType = getItem(split[1]);
|
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
for (int x = lowerX; x <= upperX; x++) {
|
|
|
|
for (int y = lowerY; y <= upperY; y++) {
|
|
|
|
editSession.setBlock(x, y, lowerZ, blockType);
|
|
|
|
editSession.setBlock(x, y, upperZ, blockType);
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int y = lowerY; y <= upperY; y++) {
|
|
|
|
for (int z = lowerZ; z <= upperZ; z++) {
|
|
|
|
editSession.setBlock(lowerX, y, z, blockType);
|
|
|
|
editSession.setBlock(upperX, y, z, blockType);
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int z = lowerZ; z <= upperZ; z++) {
|
|
|
|
for (int x = lowerX; x <= upperX; x++) {
|
|
|
|
editSession.setBlock(x, lowerY, z, blockType);
|
|
|
|
editSession.setBlock(x, upperY, z, blockType);
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-05 06:08:08 +00:00
|
|
|
logger.log(Level.INFO, player.getName() + " used " + split[0]);
|
2010-10-04 00:04:06 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + affected + " block(s) have been set.");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
2010-09-28 08:12:34 +00:00
|
|
|
// Replace all blocks in the region
|
|
|
|
} else if(split[0].equalsIgnoreCase("/editreplace")) {
|
2010-10-05 06:08:08 +00:00
|
|
|
checkArgs(split, 1, 2, "/editreplace");
|
2010-09-30 06:41:05 +00:00
|
|
|
int blockType = getItem(split[1]);
|
2010-10-02 23:44:20 +00:00
|
|
|
int replaceType = split.length > 2 ? getItem(split[2], true) : -1;
|
2010-09-28 08:12:34 +00:00
|
|
|
|
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
for (int x = lowerX; x <= upperX; x++) {
|
|
|
|
for (int y = lowerY; y <= upperY; y++) {
|
|
|
|
for (int z = lowerZ; z <= upperZ; z++) {
|
2010-10-02 23:44:20 +00:00
|
|
|
if ((replaceType == -1 && editSession.getBlock(x, y, z) != 0) ||
|
|
|
|
(editSession.getBlock(x, y, z) == replaceType)) {
|
2010-10-02 21:52:42 +00:00
|
|
|
editSession.setBlock(x, y, z, blockType);
|
2010-09-28 08:12:34 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-05 06:08:08 +00:00
|
|
|
logger.log(Level.INFO, player.getName() + " used " + split[0]);
|
2010-09-28 08:12:34 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + affected + " block(s) have been replaced.");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Lay blocks over an area
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editoverlay")) {
|
2010-10-05 06:08:08 +00:00
|
|
|
checkArgs(split, 1, 1, "/editoverlay");
|
2010-09-30 06:41:05 +00:00
|
|
|
int blockType = getItem(split[1]);
|
2010-09-28 08:12:34 +00:00
|
|
|
|
|
|
|
// We don't want to pass beyond boundaries
|
|
|
|
upperY = Math.min(127, upperY + 1);
|
|
|
|
lowerY = Math.max(-128, lowerY - 1);
|
|
|
|
|
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
for (int x = lowerX; x <= upperX; x++) {
|
|
|
|
for (int z = lowerZ; z <= upperZ; z++) {
|
|
|
|
for (int y = upperY; y >= lowerY; y--) {
|
2010-10-02 21:52:42 +00:00
|
|
|
if (y + 1 <= 127 && editSession.getBlock(x, y, z) != 0 && editSession.getBlock(x, y + 1, z) == 0) {
|
|
|
|
editSession.setBlock(x, y + 1, z, blockType);
|
2010-09-28 08:12:34 +00:00
|
|
|
affected++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-05 06:08:08 +00:00
|
|
|
logger.log(Level.INFO, player.getName() + " used " + split[0]);
|
2010-09-28 08:12:34 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + affected + " block(s) have been overlayed.");
|
|
|
|
|
2010-10-02 23:11:44 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// Copy
|
|
|
|
} else if (split[0].equalsIgnoreCase("/editcopy")) {
|
|
|
|
Point<Integer> min = new Point<Integer>(lowerX, lowerY, lowerZ);
|
|
|
|
Point<Integer> max = new Point<Integer>(upperX, upperY, upperZ);
|
|
|
|
Point<Integer> pos = new Point<Integer>((int)Math.floor(player.getX()),
|
|
|
|
(int)Math.floor(player.getY()),
|
|
|
|
(int)Math.floor(player.getZ()));
|
|
|
|
|
|
|
|
RegionClipboard clipboard = new RegionClipboard(min, max, pos);
|
|
|
|
clipboard.copy(editSession);
|
|
|
|
session.setClipboard(clipboard);
|
|
|
|
|
2010-10-05 06:08:08 +00:00
|
|
|
logger.log(Level.INFO, player.getName() + " used " + split[0]);
|
2010-10-02 23:11:44 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + "Block(s) copied.");
|
|
|
|
|
2010-09-28 08:12:34 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-03 19:43:30 +00:00
|
|
|
/**
|
|
|
|
* Fills an area recursively in the X/Z directions.
|
|
|
|
*
|
|
|
|
* @param editSession
|
|
|
|
* @param x
|
|
|
|
* @param z
|
|
|
|
* @param cx
|
|
|
|
* @param cy
|
|
|
|
* @param cz
|
|
|
|
* @param blockType
|
|
|
|
* @param radius
|
|
|
|
* @param minY
|
|
|
|
* @return
|
|
|
|
*/
|
2010-10-02 21:52:42 +00:00
|
|
|
private int fill(EditSession editSession, int x, int z, int cx, int cy,
|
2010-10-04 23:39:35 +00:00
|
|
|
int cz, int blockType, int radius, int minY)
|
|
|
|
throws MaxChangedBlocksException {
|
2010-09-28 08:12:34 +00:00
|
|
|
double dist = Math.sqrt(Math.pow(cx - x, 2) + Math.pow(cz - z, 2));
|
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
if (dist > radius) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-10-02 21:52:42 +00:00
|
|
|
if (editSession.getBlock(x, cy, z) == 0) {
|
|
|
|
affected = fillY(editSession, x, cy, z, blockType, minY);
|
2010-09-28 08:12:34 +00:00
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-10-02 21:52:42 +00:00
|
|
|
affected += fill(editSession, x + 1, z, cx, cy, cz, blockType, radius, minY);
|
|
|
|
affected += fill(editSession, x - 1, z, cx, cy, cz, blockType, radius, minY);
|
|
|
|
affected += fill(editSession, x, z + 1, cx, cy, cz, blockType, radius, minY);
|
|
|
|
affected += fill(editSession, x, z - 1, cx, cy, cz, blockType, radius, minY);
|
2010-09-28 08:12:34 +00:00
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-10-03 19:43:30 +00:00
|
|
|
/**
|
|
|
|
* Recursively fills a block and below until it hits another block.
|
|
|
|
*
|
|
|
|
* @param editSession
|
|
|
|
* @param x
|
|
|
|
* @param cy
|
|
|
|
* @param z
|
|
|
|
* @param blockType
|
|
|
|
* @param minY
|
2010-10-04 23:39:35 +00:00
|
|
|
* @throws MaxChangedBlocksException
|
2010-10-03 19:43:30 +00:00
|
|
|
* @return
|
|
|
|
*/
|
2010-10-02 21:52:42 +00:00
|
|
|
private int fillY(EditSession editSession, int x, int cy,
|
2010-10-04 23:39:35 +00:00
|
|
|
int z, int blockType, int minY)
|
|
|
|
throws MaxChangedBlocksException {
|
2010-09-28 08:12:34 +00:00
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
for (int y = cy; y > minY; y--) {
|
2010-10-02 21:52:42 +00:00
|
|
|
if (editSession.getBlock(x, y, z) == 0) {
|
|
|
|
editSession.setBlock(x, y, z, blockType);
|
2010-09-28 08:12:34 +00:00
|
|
|
affected++;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
2010-10-03 20:09:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute a script.
|
|
|
|
*
|
|
|
|
* @param player
|
|
|
|
* @param filename
|
|
|
|
* @param args
|
2010-10-03 23:12:29 +00:00
|
|
|
* @return Whether the file was attempted execution
|
2010-10-03 20:09:59 +00:00
|
|
|
*/
|
|
|
|
private boolean runScript(Player player, WorldEditSession session,
|
2010-10-03 20:23:43 +00:00
|
|
|
EditSession editSession, String filename, String[] args) throws
|
|
|
|
NoSuchScriptException {
|
2010-10-03 20:09:59 +00:00
|
|
|
File dir = new File("editscripts");
|
|
|
|
File f = new File("editscripts", filename);
|
|
|
|
|
|
|
|
try {
|
|
|
|
String filePath = f.getCanonicalPath();
|
|
|
|
String dirPath = dir.getCanonicalPath();
|
|
|
|
|
|
|
|
if (!filePath.substring(0, dirPath.length()).equals(dirPath)) {
|
2010-10-03 20:23:43 +00:00
|
|
|
throw new NoSuchScriptException();
|
2010-10-03 20:09:59 +00:00
|
|
|
} else if (!f.exists()) {
|
2010-10-03 20:23:43 +00:00
|
|
|
throw new NoSuchScriptException();
|
2010-10-03 20:09:59 +00:00
|
|
|
} else {
|
|
|
|
// Read file
|
|
|
|
StringBuffer buffer = new StringBuffer();
|
|
|
|
FileInputStream stream = new FileInputStream(f);
|
|
|
|
BufferedReader in = new BufferedReader(new InputStreamReader(stream, "UTF-8"));
|
|
|
|
int c;
|
|
|
|
while ((c = in.read()) > -1) {
|
|
|
|
buffer.append((char)c);
|
|
|
|
}
|
|
|
|
in.close();
|
|
|
|
String code = buffer.toString();
|
|
|
|
|
|
|
|
// Evaluate
|
2010-10-03 23:12:29 +00:00
|
|
|
ScriptContextFactory factory = new ScriptContextFactory();
|
|
|
|
Context cx = factory.enterContext();
|
2010-10-03 20:09:59 +00:00
|
|
|
try {
|
|
|
|
ScriptableObject scope = cx.initStandardObjects();
|
|
|
|
|
|
|
|
// Add args
|
|
|
|
ScriptableObject.putProperty(scope, "args",
|
|
|
|
Context.javaToJS(args, scope));
|
|
|
|
|
|
|
|
// Add context
|
|
|
|
ScriptPlayer scriptPlayer = new ScriptPlayer(player);
|
|
|
|
ScriptContext context = new ScriptContext(
|
|
|
|
scriptPlayer);
|
|
|
|
ScriptableObject.putProperty(scope, "context",
|
|
|
|
Context.javaToJS(context, scope));
|
|
|
|
ScriptableObject.putProperty(scope, "player",
|
|
|
|
Context.javaToJS(scriptPlayer, scope));
|
|
|
|
|
|
|
|
// Add Minecraft context
|
|
|
|
ScriptMinecraftContext minecraft =
|
|
|
|
new ScriptMinecraftContext(editSession);
|
|
|
|
ScriptableObject.putProperty(scope, "minecraft",
|
|
|
|
Context.javaToJS(minecraft, scope));
|
|
|
|
|
2010-10-03 23:12:29 +00:00
|
|
|
logger.log(Level.INFO, player.getName() + ": executing " + filename + "...");
|
2010-10-03 20:09:59 +00:00
|
|
|
cx.evaluateString(scope, code, filename, 1, null);
|
2010-10-03 23:12:29 +00:00
|
|
|
logger.log(Level.INFO, player.getName() + ": script " + filename + " executed successfully.");
|
2010-10-03 20:09:59 +00:00
|
|
|
player.sendMessage(Colors.LightPurple + filename + " executed successfully.");
|
|
|
|
} catch (RhinoException re) {
|
2010-10-03 23:12:29 +00:00
|
|
|
player.sendMessage(Colors.Rose + filename + ": JS error: " + re.getMessage());
|
2010-10-03 20:09:59 +00:00
|
|
|
re.printStackTrace();
|
2010-10-03 23:12:29 +00:00
|
|
|
} catch (Error err) {
|
|
|
|
player.sendMessage(Colors.Rose + filename + ": execution error: " + err.getMessage());
|
2010-10-03 20:09:59 +00:00
|
|
|
} finally {
|
|
|
|
Context.exit();
|
|
|
|
}
|
|
|
|
}
|
2010-10-03 23:12:29 +00:00
|
|
|
|
|
|
|
return true;
|
2010-10-03 20:09:59 +00:00
|
|
|
} catch (IOException e) {
|
|
|
|
player.sendMessage(Colors.Rose + "Script could not read or it does not exist.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2010-09-28 08:12:34 +00:00
|
|
|
}
|