2010-10-11 08:22:47 +00:00
|
|
|
// $Id$
|
|
|
|
/*
|
|
|
|
* WorldEdit
|
2012-01-05 21:38:23 +00:00
|
|
|
* Copyright (C) 2010 sk89q <http://www.sk89q.com> and contributors
|
2010-10-11 08:22:47 +00:00
|
|
|
*
|
|
|
|
* 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-10-14 08:31:05 +00:00
|
|
|
package com.sk89q.worldedit.regions;
|
|
|
|
|
2011-02-20 01:44:39 +00:00
|
|
|
import com.sk89q.worldedit.BlockVector;
|
2011-12-13 03:20:31 +00:00
|
|
|
import com.sk89q.worldedit.LocalWorld;
|
2010-10-14 08:31:05 +00:00
|
|
|
import com.sk89q.worldedit.Vector;
|
2010-10-28 17:27:30 +00:00
|
|
|
import com.sk89q.worldedit.Vector2D;
|
|
|
|
import java.util.Set;
|
2010-10-11 08:22:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2011-02-20 01:44:39 +00:00
|
|
|
* @author sk89q
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
2011-02-20 01:44:39 +00:00
|
|
|
public interface Region extends Iterable<BlockVector> {
|
2010-10-11 08:22:47 +00:00
|
|
|
/**
|
|
|
|
* Get the lower point of a region.
|
2011-09-24 19:32:03 +00:00
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return min. point
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
2010-10-13 01:03:56 +00:00
|
|
|
public Vector getMinimumPoint();
|
2011-11-23 01:29:48 +00:00
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
/**
|
|
|
|
* Get the upper point of a region.
|
2011-09-24 19:32:03 +00:00
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return max. point
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
2010-10-13 01:03:56 +00:00
|
|
|
public Vector getMaximumPoint();
|
2011-11-23 01:29:48 +00:00
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
/**
|
|
|
|
* Get the number of blocks in the region.
|
2011-09-24 19:32:03 +00:00
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return number of blocks
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
2011-02-20 01:44:39 +00:00
|
|
|
public int getArea();
|
2011-11-23 01:29:48 +00:00
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
/**
|
|
|
|
* Get X-size.
|
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return width
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
|
|
|
public int getWidth();
|
2011-11-23 01:29:48 +00:00
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
/**
|
|
|
|
* Get Y-size.
|
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return height
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
|
|
|
public int getHeight();
|
2011-11-23 01:29:48 +00:00
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
/**
|
|
|
|
* Get Z-size.
|
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return length
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
|
|
|
public int getLength();
|
2011-11-23 01:29:48 +00:00
|
|
|
|
2010-10-13 04:41:06 +00:00
|
|
|
/**
|
|
|
|
* Expand the region.
|
|
|
|
*
|
2012-03-14 10:21:41 +00:00
|
|
|
* @deprecated will be seamlessly replaced by {@link #expand(Vector...)
|
2010-10-13 04:41:06 +00:00
|
|
|
* @param change
|
2011-09-24 19:32:03 +00:00
|
|
|
* @throws RegionOperationException
|
2010-10-13 04:41:06 +00:00
|
|
|
*/
|
2012-03-14 10:21:41 +00:00
|
|
|
@Deprecated
|
2011-02-20 01:44:39 +00:00
|
|
|
public void expand(Vector change) throws RegionOperationException;
|
2011-11-23 01:29:48 +00:00
|
|
|
|
2012-01-05 20:06:40 +00:00
|
|
|
/**
|
|
|
|
* Expand the region.
|
|
|
|
*
|
|
|
|
* @param changes array/arguments with multiple related changes
|
|
|
|
* @throws RegionOperationException
|
|
|
|
*/
|
|
|
|
public void expand(Vector... changes) throws RegionOperationException;
|
|
|
|
|
2010-10-13 04:41:06 +00:00
|
|
|
/**
|
|
|
|
* Contract the region.
|
|
|
|
*
|
2012-03-14 10:21:41 +00:00
|
|
|
* @deprecated will be seamlessly replaced by {@link #contract(Vector...)
|
2010-10-13 04:41:06 +00:00
|
|
|
* @param change
|
2011-09-24 19:32:03 +00:00
|
|
|
* @throws RegionOperationException
|
2010-10-13 04:41:06 +00:00
|
|
|
*/
|
2012-03-14 10:21:41 +00:00
|
|
|
@Deprecated
|
2011-02-20 01:44:39 +00:00
|
|
|
public void contract(Vector change) throws RegionOperationException;
|
2011-11-23 01:29:48 +00:00
|
|
|
|
2012-01-05 20:06:40 +00:00
|
|
|
/**
|
|
|
|
* Contract the region.
|
|
|
|
*
|
|
|
|
* @param changes array/arguments with multiple related changes
|
|
|
|
* @throws RegionOperationException
|
|
|
|
*/
|
|
|
|
public void contract(Vector... changes) throws RegionOperationException;
|
|
|
|
|
2012-01-03 15:13:50 +00:00
|
|
|
/**
|
|
|
|
* Shift the region.
|
|
|
|
*
|
|
|
|
* @param change
|
|
|
|
* @throws RegionOperationException
|
|
|
|
*/
|
|
|
|
public void shift(Vector multiply) throws RegionOperationException;
|
|
|
|
|
2011-02-20 01:44:39 +00:00
|
|
|
/**
|
|
|
|
* Returns true based on whether the region contains the point,
|
|
|
|
*
|
|
|
|
* @param pt
|
2011-09-24 19:32:03 +00:00
|
|
|
* @return
|
2011-02-20 01:44:39 +00:00
|
|
|
*/
|
|
|
|
public boolean contains(Vector pt);
|
2011-11-23 01:29:48 +00:00
|
|
|
|
2010-10-28 17:27:30 +00:00
|
|
|
/**
|
|
|
|
* Get a list of chunks.
|
2011-09-24 19:32:03 +00:00
|
|
|
*
|
2010-10-28 17:27:30 +00:00
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public Set<Vector2D> getChunks();
|
2012-03-30 04:06:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a list of 16*16*16 chunks in a region
|
|
|
|
*
|
|
|
|
* @return The chunk cubes this region overlaps with
|
|
|
|
*/
|
|
|
|
public Set<Vector> getChunkCubes();
|
|
|
|
|
2011-12-13 03:20:31 +00:00
|
|
|
/**
|
|
|
|
* Get the world the selection is in
|
2012-03-30 04:06:43 +00:00
|
|
|
*
|
2011-12-13 03:20:31 +00:00
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public LocalWorld getWorld();
|
2012-03-30 04:06:43 +00:00
|
|
|
|
2011-12-13 03:20:31 +00:00
|
|
|
/**
|
|
|
|
* Sets the world the selection is in
|
2012-03-30 04:06:43 +00:00
|
|
|
*
|
2011-12-13 03:20:31 +00:00
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public void setWorld(LocalWorld world);
|
2010-10-11 08:22:47 +00:00
|
|
|
}
|