// $Id$ /* * WorldEdit * Copyright (C) 2010 sk89q * * 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 . */ import com.sk89q.worldedit.*; import java.util.LinkedList; /** * * @author sk89q */ public class WorldEditSession { public static final int MAX_HISTORY_SIZE = 15; private Vector pos1, pos2; private Region region; private LinkedList history = new LinkedList(); private int historyPointer = 0; private CuboidClipboard clipboard; private boolean toolControl = true; private int maxBlocksChanged = -1; /** * Clear history. */ public void clearHistory() { history.clear(); historyPointer = 0; } /** * Get the edit session. */ 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(); } /** * Undo. * * @return whether anything was undone */ public boolean undo() { historyPointer--; if (historyPointer >= 0) { history.get(historyPointer).undo(); return true; } else { historyPointer = 0; return false; } } /** * Redo. * * @return whether anything was redone */ public boolean redo() { if (historyPointer < history.size()) { history.get(historyPointer).redo(); historyPointer++; return true; } return false; } /** * Checks to make sure that position 1 is defined. * * @throws IncompleteRegionException */ private void checkPos1() throws IncompleteRegionException { if (pos1 == null) { throw new IncompleteRegionException(); } } /** * Checks to make sure that position 2 is defined. * * @throws IncompleteRegionException */ private void checkPos2() throws IncompleteRegionException { if (pos2 == null) { throw new IncompleteRegionException(); } } /** * Gets defined position 1. * * @return position 1 * @throws IncompleteRegionException */ public Vector getPos1() throws IncompleteRegionException { checkPos1(); return pos1; } /** * Sets position 1. * * @param pt */ public void setPos1(Vector pt) { pos1 = pt; if (pos1 != null && pos2 != null) { region = new CuboidRegion(pos1, pos2); } } /** * Gets position 2. * * @return position 2 * @throws IncompleteRegionException */ public Vector getPos2() throws IncompleteRegionException { checkPos2(); return pos2; } /** * Sets position 2. * * @param pt */ public void setPos2(Vector pt) { pos2 = pt; if (pos1 != null && pos2 != null) { region = new CuboidRegion(pos1, pos2); } } /** * 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(); } } /** * Get the region. If you change the region, you should * call learnRegionChanges(). * * @return region * @throws IncompleteRegionException */ public Region getRegion() throws IncompleteRegionException { if (region == null) { throw new IncompleteRegionException(); } return region; } /** * Gets the clipboard. * * @return clipboard, may be null * @throws EmptyClipboardException */ public CuboidClipboard getClipboard() throws EmptyClipboardException { if (clipboard == null) { throw new EmptyClipboardException(); } return clipboard; } /** * Sets the clipboard. * * @param clipboard */ public void setClipboard(CuboidClipboard clipboard) { this.clipboard = clipboard; } /** * See if tool control is enabled. * * @return true if enabled */ public boolean isToolControlEnabled() { return toolControl; } /** * Change tool control setting. * * @param toolControl */ public void setToolControl(boolean toolControl) { this.toolControl = toolControl; } /** * Get the maximum number of blocks that can be changed in an edit session. * * @return block change limit */ 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; } }