2010-09-30 06:41:05 +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/>.
|
|
|
|
*/
|
|
|
|
|
2011-01-01 01:40:07 +00:00
|
|
|
package com.sk89q.worldedit;
|
|
|
|
|
2011-02-18 23:14:43 +00:00
|
|
|
import java.util.HashMap;
|
2011-01-01 01:40:07 +00:00
|
|
|
import java.util.LinkedList;
|
2011-02-18 23:14:43 +00:00
|
|
|
import java.util.Map;
|
2010-10-20 23:15:20 +00:00
|
|
|
import com.sk89q.worldedit.snapshots.Snapshot;
|
2011-02-18 23:14:43 +00:00
|
|
|
import com.sk89q.worldedit.tools.Brush;
|
|
|
|
import com.sk89q.worldedit.tools.SinglePickaxe;
|
|
|
|
import com.sk89q.worldedit.tools.BlockTool;
|
|
|
|
import com.sk89q.worldedit.tools.Tool;
|
2010-12-31 22:31:49 +00:00
|
|
|
import com.sk89q.worldedit.bags.BlockBag;
|
2010-10-14 08:31:05 +00:00
|
|
|
import com.sk89q.worldedit.regions.Region;
|
|
|
|
import com.sk89q.worldedit.regions.CuboidRegion;
|
2010-10-02 20:46:33 +00:00
|
|
|
|
2010-09-30 06:41:05 +00:00
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* An instance of this represents the WorldEdit session of a user. A session
|
|
|
|
* stores history and settings. Sessions are not tied particularly to any
|
|
|
|
* player and can be shuffled between players, saved, and loaded.
|
2010-09-30 06:41:05 +00:00
|
|
|
*
|
|
|
|
* @author sk89q
|
|
|
|
*/
|
2011-01-01 18:34:36 +00:00
|
|
|
public class LocalSession {
|
2011-02-18 23:14:43 +00:00
|
|
|
/**
|
|
|
|
* List of compass modes.
|
|
|
|
*/
|
2011-01-26 18:52:53 +00:00
|
|
|
public enum CompassMode {
|
|
|
|
JUMPTO,
|
|
|
|
THRU
|
|
|
|
}
|
|
|
|
|
2010-10-02 21:52:42 +00:00
|
|
|
public static final int MAX_HISTORY_SIZE = 15;
|
2011-01-02 05:50:31 +00:00
|
|
|
|
2011-01-31 08:58:29 +00:00
|
|
|
private LocalConfiguration config;
|
|
|
|
|
2010-10-14 09:14:18 +00:00
|
|
|
private boolean placeAtPos1 = false;
|
2010-10-13 01:03:56 +00:00
|
|
|
private Vector pos1, pos2;
|
2010-10-13 04:41:06 +00:00
|
|
|
private Region region;
|
2010-10-02 21:52:42 +00:00
|
|
|
private LinkedList<EditSession> history = new LinkedList<EditSession>();
|
|
|
|
private int historyPointer = 0;
|
2010-10-11 08:22:47 +00:00
|
|
|
private CuboidClipboard clipboard;
|
2010-10-03 23:45:54 +00:00
|
|
|
private boolean toolControl = true;
|
2011-01-02 05:50:31 +00:00
|
|
|
private boolean superPickaxe = false;
|
2011-02-18 23:14:43 +00:00
|
|
|
private BlockTool pickaxeMode = new SinglePickaxe();
|
|
|
|
private Map<Integer, Tool> tools
|
|
|
|
= new HashMap<Integer, Tool>();
|
2010-10-04 23:39:35 +00:00
|
|
|
private int maxBlocksChanged = -1;
|
2010-12-31 22:31:49 +00:00
|
|
|
private boolean useInventory;
|
2010-10-20 23:15:20 +00:00
|
|
|
private Snapshot snapshot;
|
2011-01-23 10:09:51 +00:00
|
|
|
private String lastScript;
|
2011-01-26 18:52:53 +00:00
|
|
|
private CompassMode compassMode = CompassMode.JUMPTO;
|
2011-01-31 08:58:29 +00:00
|
|
|
private boolean beenToldVersion = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct the object.
|
|
|
|
*
|
|
|
|
* @param config
|
|
|
|
*/
|
|
|
|
public LocalSession(LocalConfiguration config) {
|
|
|
|
this.config = config;
|
|
|
|
}
|
2010-10-02 21:52:42 +00:00
|
|
|
|
2010-10-02 23:13:52 +00:00
|
|
|
/**
|
|
|
|
* Clear history.
|
|
|
|
*/
|
|
|
|
public void clearHistory() {
|
|
|
|
history.clear();
|
|
|
|
historyPointer = 0;
|
|
|
|
}
|
|
|
|
|
2010-10-02 21:52:42 +00:00
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Remember an edit session for the undo history. If the history maximum
|
|
|
|
* size is reached, old edit sessions will be discarded.
|
|
|
|
*
|
|
|
|
* @param editSession
|
2010-10-02 21:52:42 +00:00
|
|
|
*/
|
|
|
|
public void remember(EditSession editSession) {
|
|
|
|
// Don't store anything if no changes were made
|
|
|
|
if (editSession.size() == 0) { return; }
|
|
|
|
|
|
|
|
// Destroy any sessions after this undo point
|
|
|
|
while (historyPointer < history.size()) {
|
|
|
|
history.remove(historyPointer);
|
|
|
|
}
|
|
|
|
history.add(editSession);
|
|
|
|
while (history.size() > MAX_HISTORY_SIZE) {
|
|
|
|
history.remove(0);
|
|
|
|
}
|
|
|
|
historyPointer = history.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Performs an undo.
|
2010-10-02 21:52:42 +00:00
|
|
|
*
|
2011-02-18 23:14:43 +00:00
|
|
|
* @param newBlockBag
|
2010-10-11 08:22:47 +00:00
|
|
|
* @return whether anything was undone
|
2010-10-02 21:52:42 +00:00
|
|
|
*/
|
2010-12-31 22:31:49 +00:00
|
|
|
public EditSession undo(BlockBag newBlockBag) {
|
2010-10-02 21:52:42 +00:00
|
|
|
historyPointer--;
|
|
|
|
if (historyPointer >= 0) {
|
2010-12-31 22:31:49 +00:00
|
|
|
EditSession editSession = history.get(historyPointer);
|
2011-02-18 23:14:43 +00:00
|
|
|
EditSession newEditSession =
|
|
|
|
new EditSession(editSession.getWorld(), -1, newBlockBag);
|
|
|
|
editSession.undo(newEditSession);
|
2010-12-31 22:31:49 +00:00
|
|
|
return editSession;
|
2010-10-02 21:52:42 +00:00
|
|
|
} else {
|
|
|
|
historyPointer = 0;
|
2010-12-31 22:31:49 +00:00
|
|
|
return null;
|
2010-10-02 21:52:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Performs a redo
|
2010-10-02 21:52:42 +00:00
|
|
|
*
|
2011-02-18 23:14:43 +00:00
|
|
|
* @param newBlockBag
|
2010-10-11 08:22:47 +00:00
|
|
|
* @return whether anything was redone
|
2010-10-02 21:52:42 +00:00
|
|
|
*/
|
2010-12-31 22:31:49 +00:00
|
|
|
public EditSession redo(BlockBag newBlockBag) {
|
2010-10-02 21:52:42 +00:00
|
|
|
if (historyPointer < history.size()) {
|
2010-12-31 22:31:49 +00:00
|
|
|
EditSession editSession = history.get(historyPointer);
|
2011-02-18 23:14:43 +00:00
|
|
|
EditSession newEditSession =
|
|
|
|
new EditSession(editSession.getWorld(), -1, newBlockBag);
|
|
|
|
editSession.redo(newEditSession);
|
2010-10-02 21:52:42 +00:00
|
|
|
historyPointer++;
|
2010-12-31 22:31:49 +00:00
|
|
|
return editSession;
|
2010-10-02 21:52:42 +00:00
|
|
|
}
|
|
|
|
|
2010-12-31 22:31:49 +00:00
|
|
|
return null;
|
2010-10-02 21:52:42 +00:00
|
|
|
}
|
2010-09-30 06:41:05 +00:00
|
|
|
|
2010-10-03 19:43:30 +00:00
|
|
|
/**
|
|
|
|
* Checks to make sure that position 1 is defined.
|
|
|
|
*
|
|
|
|
* @throws IncompleteRegionException
|
|
|
|
*/
|
2010-09-30 06:41:05 +00:00
|
|
|
private void checkPos1() throws IncompleteRegionException {
|
2010-10-11 08:22:47 +00:00
|
|
|
if (pos1 == null) {
|
2010-09-30 06:41:05 +00:00
|
|
|
throw new IncompleteRegionException();
|
|
|
|
}
|
|
|
|
}
|
2010-11-16 09:01:37 +00:00
|
|
|
|
2010-10-03 19:43:30 +00:00
|
|
|
/**
|
|
|
|
* Checks to make sure that position 2 is defined.
|
|
|
|
*
|
|
|
|
* @throws IncompleteRegionException
|
|
|
|
*/
|
2010-09-30 06:41:05 +00:00
|
|
|
private void checkPos2() throws IncompleteRegionException {
|
2010-10-11 08:22:47 +00:00
|
|
|
if (pos2 == null) {
|
2010-09-30 06:41:05 +00:00
|
|
|
throw new IncompleteRegionException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-16 09:01:37 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the region is fully defined.
|
2011-02-18 23:14:43 +00:00
|
|
|
*
|
|
|
|
* @return
|
2010-11-16 09:01:37 +00:00
|
|
|
*/
|
|
|
|
public boolean isRegionDefined() {
|
|
|
|
return pos1 != null && pos2 != null;
|
|
|
|
}
|
|
|
|
|
2010-10-03 19:43:30 +00:00
|
|
|
/**
|
|
|
|
* Gets defined position 1.
|
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return position 1
|
2010-10-03 19:43:30 +00:00
|
|
|
* @throws IncompleteRegionException
|
|
|
|
*/
|
2010-10-13 01:03:56 +00:00
|
|
|
public Vector getPos1() throws IncompleteRegionException {
|
2010-09-30 06:41:05 +00:00
|
|
|
checkPos1();
|
|
|
|
return pos1;
|
|
|
|
}
|
|
|
|
|
2010-10-03 19:43:30 +00:00
|
|
|
/**
|
2010-10-03 23:45:54 +00:00
|
|
|
* Sets position 1.
|
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param pt
|
2010-10-03 19:43:30 +00:00
|
|
|
*/
|
2010-10-13 01:03:56 +00:00
|
|
|
public void setPos1(Vector pt) {
|
2010-10-11 08:22:47 +00:00
|
|
|
pos1 = pt;
|
2010-10-13 04:41:06 +00:00
|
|
|
if (pos1 != null && pos2 != null) {
|
|
|
|
region = new CuboidRegion(pos1, pos2);
|
|
|
|
}
|
2010-10-03 23:45:54 +00:00
|
|
|
}
|
|
|
|
|
2010-10-03 19:43:30 +00:00
|
|
|
/**
|
|
|
|
* Gets position 2.
|
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return position 2
|
2010-10-03 19:43:30 +00:00
|
|
|
* @throws IncompleteRegionException
|
|
|
|
*/
|
2010-10-13 01:03:56 +00:00
|
|
|
public Vector getPos2() throws IncompleteRegionException {
|
2010-09-30 06:41:05 +00:00
|
|
|
checkPos2();
|
|
|
|
return pos2;
|
|
|
|
}
|
|
|
|
|
2010-10-03 19:43:30 +00:00
|
|
|
/**
|
|
|
|
* Sets position 2.
|
2010-10-03 23:45:54 +00:00
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param pt
|
2010-10-03 19:43:30 +00:00
|
|
|
*/
|
2010-10-13 01:03:56 +00:00
|
|
|
public void setPos2(Vector pt) {
|
2010-10-11 08:22:47 +00:00
|
|
|
pos2 = pt;
|
2010-10-13 04:41:06 +00:00
|
|
|
if (pos1 != null && pos2 != null) {
|
|
|
|
region = new CuboidRegion(pos1, pos2);
|
|
|
|
}
|
2010-09-30 06:41:05 +00:00
|
|
|
}
|
|
|
|
|
2010-10-03 23:45:54 +00:00
|
|
|
/**
|
2010-10-13 04:41:06 +00:00
|
|
|
* Update session position 1/2 based on the currently set region,
|
|
|
|
* provided that the region is of a cuboid.
|
|
|
|
*/
|
|
|
|
public void learnRegionChanges() {
|
|
|
|
if (region instanceof CuboidRegion) {
|
|
|
|
CuboidRegion cuboidRegion = (CuboidRegion)region;
|
|
|
|
pos1 = cuboidRegion.getPos1();
|
|
|
|
pos2 = cuboidRegion.getPos2();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-13 17:08:53 +00:00
|
|
|
* Get the region. If you change the region, you should
|
2010-10-13 04:41:06 +00:00
|
|
|
* call learnRegionChanges().
|
2010-10-03 19:43:30 +00:00
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return region
|
2010-10-13 17:08:53 +00:00
|
|
|
* @throws IncompleteRegionException
|
2010-10-03 19:43:30 +00:00
|
|
|
*/
|
2010-10-13 17:08:53 +00:00
|
|
|
public Region getRegion() throws IncompleteRegionException {
|
|
|
|
if (region == null) {
|
|
|
|
throw new IncompleteRegionException();
|
|
|
|
}
|
2010-10-13 04:41:06 +00:00
|
|
|
return region;
|
2010-10-05 20:46:31 +00:00
|
|
|
}
|
|
|
|
|
2010-10-02 23:11:44 +00:00
|
|
|
/**
|
2010-10-03 19:43:30 +00:00
|
|
|
* Gets the clipboard.
|
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return clipboard, may be null
|
2010-10-13 17:08:53 +00:00
|
|
|
* @throws EmptyClipboardException
|
2010-10-02 23:11:44 +00:00
|
|
|
*/
|
2010-10-13 17:08:53 +00:00
|
|
|
public CuboidClipboard getClipboard() throws EmptyClipboardException {
|
|
|
|
if (clipboard == null) {
|
|
|
|
throw new EmptyClipboardException();
|
|
|
|
}
|
2010-10-02 23:11:44 +00:00
|
|
|
return clipboard;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-03 19:43:30 +00:00
|
|
|
* Sets the clipboard.
|
|
|
|
*
|
2010-10-02 23:11:44 +00:00
|
|
|
* @param clipboard
|
|
|
|
*/
|
2010-10-11 08:22:47 +00:00
|
|
|
public void setClipboard(CuboidClipboard clipboard) {
|
2010-10-02 23:11:44 +00:00
|
|
|
this.clipboard = clipboard;
|
|
|
|
}
|
2010-10-03 23:45:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* See if tool control is enabled.
|
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return true if enabled
|
2010-10-03 23:45:54 +00:00
|
|
|
*/
|
|
|
|
public boolean isToolControlEnabled() {
|
|
|
|
return toolControl;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Change tool control setting.
|
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @param toolControl
|
2010-10-03 23:45:54 +00:00
|
|
|
*/
|
|
|
|
public void setToolControl(boolean toolControl) {
|
|
|
|
this.toolControl = toolControl;
|
|
|
|
}
|
|
|
|
|
2010-10-04 23:39:35 +00:00
|
|
|
/**
|
|
|
|
* Get the maximum number of blocks that can be changed in an edit session.
|
2010-10-11 15:56:19 +00:00
|
|
|
*
|
|
|
|
* @return block change limit
|
2010-10-04 23:39:35 +00:00
|
|
|
*/
|
|
|
|
public int getBlockChangeLimit() {
|
|
|
|
return maxBlocksChanged;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the maximum number of blocks that can be changed.
|
|
|
|
*
|
|
|
|
* @param maxBlocksChanged
|
|
|
|
*/
|
|
|
|
public void setBlockChangeLimit(int maxBlocksChanged) {
|
|
|
|
this.maxBlocksChanged = maxBlocksChanged;
|
|
|
|
}
|
2010-10-13 18:26:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the super pick axe is enabled.
|
|
|
|
*
|
|
|
|
* @return status
|
|
|
|
*/
|
|
|
|
public boolean hasSuperPickAxe() {
|
2011-01-02 05:50:31 +00:00
|
|
|
return superPickaxe;
|
2010-10-13 18:26:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable super pick axe.
|
|
|
|
*/
|
|
|
|
public void enableSuperPickAxe() {
|
2011-01-02 05:50:31 +00:00
|
|
|
superPickaxe = true;
|
2010-10-13 18:26:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable super pick axe.
|
|
|
|
*/
|
|
|
|
public void disableSuperPickAxe() {
|
2011-01-02 05:50:31 +00:00
|
|
|
superPickaxe = false;
|
2010-10-13 18:26:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggle the super pick axe.
|
|
|
|
*
|
|
|
|
* @return status
|
|
|
|
*/
|
|
|
|
public boolean toggleSuperPickAxe() {
|
2011-01-02 05:50:31 +00:00
|
|
|
superPickaxe = !superPickaxe;
|
|
|
|
return superPickaxe;
|
2010-10-13 18:26:07 +00:00
|
|
|
}
|
2010-10-14 09:14:18 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Get the placement position.
|
|
|
|
*
|
|
|
|
* @param player
|
2010-10-14 09:14:18 +00:00
|
|
|
* @return position
|
|
|
|
* @throws IncompleteRegionException
|
|
|
|
*/
|
2011-01-01 18:34:36 +00:00
|
|
|
public Vector getPlacementPosition(LocalPlayer player)
|
2010-10-14 09:14:18 +00:00
|
|
|
throws IncompleteRegionException {
|
|
|
|
if (!placeAtPos1) {
|
|
|
|
return player.getBlockIn();
|
|
|
|
}
|
|
|
|
|
|
|
|
checkPos1();
|
|
|
|
return pos1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Toggle placement position.
|
|
|
|
*
|
|
|
|
* @return
|
2010-10-14 09:14:18 +00:00
|
|
|
*/
|
|
|
|
public boolean togglePlacementPosition() {
|
|
|
|
placeAtPos1 = !placeAtPos1;
|
|
|
|
return placeAtPos1;
|
|
|
|
}
|
2010-12-31 22:31:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a block bag for a player.
|
|
|
|
*
|
|
|
|
* @param player
|
|
|
|
* @return
|
|
|
|
*/
|
2011-01-01 18:34:36 +00:00
|
|
|
public BlockBag getBlockBag(LocalPlayer player) {
|
2010-12-31 22:31:49 +00:00
|
|
|
if (!useInventory) {
|
|
|
|
return null;
|
|
|
|
}
|
2011-01-01 01:06:42 +00:00
|
|
|
return player.getInventoryBlockBag();
|
2010-12-31 22:31:49 +00:00
|
|
|
}
|
2010-10-20 23:15:20 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Get the snapshot that has been selected.
|
|
|
|
*
|
|
|
|
* @return the snapshot
|
2010-10-20 23:15:20 +00:00
|
|
|
*/
|
|
|
|
public Snapshot getSnapshot() {
|
|
|
|
return snapshot;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Select a snapshot.
|
|
|
|
*
|
2010-10-20 23:15:20 +00:00
|
|
|
* @param snapshot
|
|
|
|
*/
|
|
|
|
public void setSnapshot(Snapshot snapshot) {
|
|
|
|
this.snapshot = snapshot;
|
|
|
|
}
|
2010-11-07 06:17:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the superPickaxeMode
|
|
|
|
*/
|
2011-02-18 23:14:43 +00:00
|
|
|
public BlockTool getSuperPickaxe() {
|
|
|
|
return pickaxeMode;
|
2010-11-07 06:17:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Set the super pickaxe tool.
|
|
|
|
*
|
|
|
|
* @param tool
|
2010-11-07 06:17:32 +00:00
|
|
|
*/
|
2011-02-18 23:14:43 +00:00
|
|
|
public void setSuperPickaxe(BlockTool tool) {
|
|
|
|
this.pickaxeMode = tool;
|
2010-11-07 06:17:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Get the tool assigned to the item.
|
|
|
|
*
|
|
|
|
* @param item
|
2010-11-07 06:17:32 +00:00
|
|
|
* @return the tool
|
|
|
|
*/
|
2011-02-18 23:14:43 +00:00
|
|
|
public Tool getTool(int item) {
|
|
|
|
return tools.get(item);
|
2011-01-09 19:14:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Get the brush tool assigned to the item. If there is no tool assigned
|
|
|
|
* or the tool is not assigned, the slot will be replaced with the
|
|
|
|
* brush tool.
|
|
|
|
*
|
|
|
|
* @param item
|
|
|
|
* @return the tool
|
2011-01-09 19:14:55 +00:00
|
|
|
*/
|
2011-02-18 23:14:43 +00:00
|
|
|
public Brush getBrushTool(int item) {
|
|
|
|
Tool tool = getTool(item);
|
|
|
|
|
|
|
|
if (tool == null || !(tool instanceof Brush)) {
|
|
|
|
tool = new Brush();
|
|
|
|
setTool(item, tool);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (Brush)tool;
|
2011-01-09 19:14:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Set the tool.
|
|
|
|
*
|
|
|
|
* @param item
|
|
|
|
* @param tool the tool to set
|
2011-01-09 19:14:55 +00:00
|
|
|
*/
|
2011-02-18 23:14:43 +00:00
|
|
|
public void setTool(int item, Tool tool) {
|
|
|
|
this.tools.put(item, tool);
|
2010-11-07 06:17:32 +00:00
|
|
|
}
|
2010-12-31 22:31:49 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Returns whether inventory usage is enabled for this session.
|
|
|
|
*
|
2010-12-31 22:31:49 +00:00
|
|
|
* @return the useInventory
|
|
|
|
*/
|
|
|
|
public boolean isUsingInventory() {
|
|
|
|
return useInventory;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Set the state of inventory usage.
|
|
|
|
*
|
2010-12-31 22:31:49 +00:00
|
|
|
* @param useInventory the useInventory to set
|
|
|
|
*/
|
|
|
|
public void setUseInventory(boolean useInventory) {
|
|
|
|
this.useInventory = useInventory;
|
|
|
|
}
|
2011-01-23 10:09:51 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Get the last script used.
|
|
|
|
*
|
2011-01-23 10:09:51 +00:00
|
|
|
* @return the lastScript
|
|
|
|
*/
|
|
|
|
public String getLastScript() {
|
|
|
|
return lastScript;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Set the last script used.
|
|
|
|
*
|
2011-01-23 10:09:51 +00:00
|
|
|
* @param lastScript the lastScript to set
|
|
|
|
*/
|
|
|
|
public void setLastScript(String lastScript) {
|
|
|
|
this.lastScript = lastScript;
|
|
|
|
}
|
2011-01-26 18:52:53 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Get the compass mode.
|
|
|
|
*
|
2011-01-26 18:52:53 +00:00
|
|
|
* @return the compassMode
|
|
|
|
*/
|
|
|
|
public CompassMode getCompassMode() {
|
|
|
|
return compassMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-18 23:14:43 +00:00
|
|
|
* Set the compass mode.
|
|
|
|
*
|
2011-01-26 18:52:53 +00:00
|
|
|
* @param compassMode the compassMode to set
|
|
|
|
*/
|
|
|
|
public void setCompassMode(CompassMode compassMode) {
|
|
|
|
this.compassMode = compassMode;
|
|
|
|
}
|
2011-01-31 08:58:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tell the player the WorldEdit version.
|
2011-02-18 23:14:43 +00:00
|
|
|
*
|
|
|
|
* @param player
|
2011-01-31 08:58:29 +00:00
|
|
|
*/
|
|
|
|
public void tellVersion(LocalPlayer player) {
|
|
|
|
if (config.showFirstUseVersion) {
|
|
|
|
if (!beenToldVersion) {
|
|
|
|
player.printRaw("\u00A78WorldEdit ver. " + WorldEdit.getVersion()
|
|
|
|
+ " (http://sk89q.com/projects/worldedit/)");
|
|
|
|
beenToldVersion = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-09-30 06:41:05 +00:00
|
|
|
}
|