Added getChunkCubes() to Region to get 16^3 chunks a region overlaps with

This commit is contained in:
zml2008 2012-03-29 21:06:43 -07:00
parent 3bfb12c051
commit 03f7d4ecfb
5 changed files with 161 additions and 42 deletions

View File

@ -20,6 +20,7 @@
package com.sk89q.worldedit.regions;
import com.sk89q.worldedit.BlockVector;
import com.sk89q.worldedit.BlockVector2D;
import com.sk89q.worldedit.LocalWorld;
import com.sk89q.worldedit.Vector;
import com.sk89q.worldedit.Vector2D;
@ -302,11 +303,27 @@ public class CuboidRegion extends AbstractRegion implements FlatRegion {
Vector min = getMinimumPoint();
Vector max = getMaximumPoint();
for (int x = min.getBlockX(); x <= max.getBlockX(); ++x) {
for (int z = min.getBlockZ(); z <= max.getBlockZ(); ++z) {
chunks.add(new BlockVector2D(x >> ChunkStore.CHUNK_SHIFTS,
z >> ChunkStore.CHUNK_SHIFTS));
}
}
return chunks;
}
public Set<Vector> getChunkCubes() {
Set<Vector> chunks = new HashSet<Vector>();
Vector min = getMinimumPoint();
Vector max = getMaximumPoint();
for (int x = min.getBlockX(); x <= max.getBlockX(); ++x) {
for (int y = min.getBlockY(); y <= max.getBlockY(); ++y) {
for (int z = min.getBlockZ(); z <= max.getBlockZ(); ++z) {
Vector pt = new Vector(x, y, z);
chunks.add(ChunkStore.toChunk(pt));
chunks.add(new BlockVector(x >> ChunkStore.CHUNK_SHIFTS,
y >> ChunkStore.CHUNK_SHIFTS, z >> ChunkStore.CHUNK_SHIFTS));
}
}
}
@ -376,7 +393,33 @@ public class CuboidRegion extends AbstractRegion implements FlatRegion {
return new Iterable<Vector2D>() {
@Override
public Iterator<Vector2D> iterator() {
return new FlatRegionIterator(CuboidRegion.this);
return new Iterator<Vector2D>() {
private Vector min = getMinimumPoint();
private Vector max = getMaximumPoint();
private int nextX = min.getBlockX();
private int nextZ = min.getBlockZ();
public boolean hasNext() {
return (nextX != Integer.MIN_VALUE);
}
public Vector2D next() {
if (!hasNext()) throw new java.util.NoSuchElementException();
Vector2D answer = new Vector2D(nextX, nextZ);
if (++nextX > max.getBlockX()) {
nextX = min.getBlockX();
if (++nextZ > max.getBlockZ()) {
nextX = Integer.MIN_VALUE;
}
}
return answer;
}
@Override
public void remove() {
throw new UnsupportedOperationException();
}
};
}
};
}

View File

@ -22,6 +22,9 @@ package com.sk89q.worldedit.regions;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import com.sk89q.worldedit.BlockVector;
import com.sk89q.worldedit.BlockVector2D;
import com.sk89q.worldedit.LocalWorld;
import com.sk89q.worldedit.Vector;
import com.sk89q.worldedit.Vector2D;
@ -49,7 +52,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Construct the region.
*
*
* @param world
*/
public CylinderRegion(LocalWorld world) {
@ -59,9 +62,10 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Construct the region.
*
*
* @param world
* @param points
* @param center
* @param radius
* @param minY
* @param maxY
*/
@ -81,8 +85,8 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Returns the main center point of the cylinder
*
* @return
*
* @return
*/
public Vector getCenter() {
return center;
@ -90,7 +94,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Sets the main center point of the region
*
*
*/
public void setCenter(Vector center) {
this.center = center;
@ -99,8 +103,8 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Returns the radius of the cylinder
*
* @return
*
* @return
*/
public Vector2D getRadius() {
return radius.subtract(0.5, 0.5);
@ -108,8 +112,8 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Sets the radius of the cylinder
*
* @param radius
*
* @param radius
*/
public void setRadius(Vector2D radius) {
this.radius = radius.add(0.5, 0.5);
@ -117,7 +121,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Extends the radius to be at least the given radius
*
*
* @param minRadius
*/
public void extendRadius(Vector2D minRadius) {
@ -126,7 +130,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Set the minimum Y.
*
*
* @param y
*/
public void setMinimumY(int y) {
@ -136,7 +140,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Se the maximum Y.
*
*
* @param y
*/
public void setMaximumY(int y) {
@ -146,7 +150,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Get the lower point of a region.
*
*
* @return min. point
*/
public Vector getMinimumPoint() {
@ -155,7 +159,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Get the upper point of a region.
*
*
* @return max. point
*/
public Vector getMaximumPoint() {
@ -164,7 +168,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Gets the maximum Y value
* @return
* @return
*/
public int getMaximumY() {
return maxY;
@ -172,7 +176,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Gets the minimum Y value
* @return
* @return
*/
public int getMinimumY() {
return minY;
@ -180,7 +184,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Get the number of blocks in the region.
*
*
* @return number of blocks
*/
public int getArea() {
@ -299,7 +303,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Get a list of chunks.
*
*
* @return
*/
public Set<Vector2D> getChunks() {
@ -310,9 +314,30 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
for (int x = min.getBlockX(); x <= max.getBlockX(); ++x) {
for (int z = min.getBlockZ(); z <= max.getBlockZ(); ++z) {
Vector pt = new Vector(x, minY, z);
if (contains(pt)) {
chunks.add(ChunkStore.toChunk(pt));
if (contains(new BlockVector(x, minY, z))) {
chunks.add(new BlockVector2D(x >> ChunkStore.CHUNK_SHIFTS,
z >> ChunkStore.CHUNK_SHIFTS));
}
}
}
return chunks;
}
@Override
public Set<Vector> getChunkCubes() {
Set<Vector> chunks = new HashSet<Vector>();
Vector min = getMinimumPoint();
Vector max = getMaximumPoint();
for (int x = min.getBlockX(); x <= max.getBlockX(); ++x) {
for (int y = min.getBlockY(); y <= max.getBlockY(); ++y) {
for (int z = min.getBlockZ(); z <= max.getBlockZ(); ++z) {
if (contains(new BlockVector(x, y, z))) {
chunks.add(new BlockVector(x >> ChunkStore.CHUNK_SHIFTS,
y >> ChunkStore.CHUNK_SHIFTS, z >> ChunkStore.CHUNK_SHIFTS));
}
}
}
}
@ -322,8 +347,8 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Sets the height of the cylinder to fit the specified Y.
*
* @param y
*
* @param y
* @return true if the area was expanded
*/
public boolean setY(int y) {
@ -356,7 +381,7 @@ public class CylinderRegion extends AbstractRegion implements FlatRegion {
/**
* Returns string representation in the format
* "(centerX, centerY, centerZ) - (radiusX, radiusZ)"
*
*
* @return string
*/
@Override

View File

@ -19,6 +19,8 @@
package com.sk89q.worldedit.regions;
import com.sk89q.worldedit.BlockVector;
import com.sk89q.worldedit.BlockVector2D;
import com.sk89q.worldedit.LocalWorld;
import com.sk89q.worldedit.Vector;
import com.sk89q.worldedit.Vector2D;
@ -48,10 +50,10 @@ public class EllipsoidRegion extends AbstractRegion {
public EllipsoidRegion(Vector pos1, Vector pos2) {
this(null, pos1, pos2);
}
/**
* Construct a new instance of this ellipsoid region.
*
*
* @param world
* @param center
* @param radius
@ -198,7 +200,7 @@ public class EllipsoidRegion extends AbstractRegion {
/**
* Set radiuses.
*
* @param radiuses
* @param radius
*/
public void setRadius(Vector radius) {
this.radius = radius.add(0.5, 0.5, 0.5);
@ -218,8 +220,31 @@ public class EllipsoidRegion extends AbstractRegion {
for (int x = min.getBlockX(); x <= max.getBlockX(); ++x) {
for (int y = min.getBlockY(); y <= max.getBlockY(); ++y) {
for (int z = min.getBlockZ(); z <= max.getBlockZ(); ++z) {
Vector pt = new Vector(x, y, z);
chunks.add(ChunkStore.toChunk(pt));
if (contains(new BlockVector(x, y, z))) {
chunks.add(new BlockVector2D(x >> ChunkStore.CHUNK_SHIFTS,
z >> ChunkStore.CHUNK_SHIFTS));
}
}
}
}
return chunks;
}
@Override
public Set<Vector> getChunkCubes() {
Set<Vector> chunks = new HashSet<Vector>();
Vector min = getMinimumPoint();
Vector max = getMaximumPoint();
for (int x = min.getBlockX(); x <= max.getBlockX(); ++x) {
for (int y = min.getBlockY(); y <= max.getBlockY(); ++y) {
for (int z = min.getBlockZ(); z <= max.getBlockZ(); ++z) {
if (contains(new BlockVector(x, y, z))) {
chunks.add(new BlockVector(x >> ChunkStore.CHUNK_SHIFTS,
y >> ChunkStore.CHUNK_SHIFTS, z >> ChunkStore.CHUNK_SHIFTS));
}
}
}
}

View File

@ -269,7 +269,7 @@ public class Polygonal2DRegion extends AbstractRegion implements FlatRegion {
/**
* Expand the region.
*
* @param change
* @param changes
*/
public void expand(Vector... changes) throws RegionOperationException {
for (Vector change : changes) {
@ -292,7 +292,7 @@ public class Polygonal2DRegion extends AbstractRegion implements FlatRegion {
/**
* Contract the region.
*
* @param change
* @param changes
*/
public void contract(Vector... changes) throws RegionOperationException {
for (Vector change : changes) {
@ -415,12 +415,31 @@ public class Polygonal2DRegion extends AbstractRegion implements FlatRegion {
Vector min = getMinimumPoint();
Vector max = getMaximumPoint();
for (int x = min.getBlockX(); x <= max.getBlockX(); ++x) {
for (int z = min.getBlockZ(); z <= max.getBlockZ(); ++z) {
if (contains(new BlockVector(x, minY, z))) { // Not the best
chunks.add(new BlockVector2D(x >> ChunkStore.CHUNK_SHIFTS,
z >> ChunkStore.CHUNK_SHIFTS));
}
}
}
return chunks;
}
@Override
public Set<Vector> getChunkCubes() {
Set<Vector> chunks = new HashSet<Vector>();
Vector min = getMinimumPoint();
Vector max = getMaximumPoint();
for (int x = min.getBlockX(); x <= max.getBlockX(); ++x) {
for (int y = min.getBlockY(); y <= max.getBlockY(); ++y) {
for (int z = min.getBlockZ(); z <= max.getBlockZ(); ++z) {
Vector pt = new Vector(x, y, z);
if (contains(pt)) { // Not the best
chunks.add(ChunkStore.toChunk(pt));
if (contains(new BlockVector(x, y, z))) { // Not the best
chunks.add(new BlockVector(x >> ChunkStore.CHUNK_SHIFTS,
y >> ChunkStore.CHUNK_SHIFTS, z >> ChunkStore.CHUNK_SHIFTS));
}
}
}

View File

@ -130,17 +130,24 @@ public interface Region extends Iterable<BlockVector> {
* @return
*/
public Set<Vector2D> getChunks();
/**
* Return a list of 16*16*16 chunks in a region
*
* @return The chunk cubes this region overlaps with
*/
public Set<Vector> getChunkCubes();
/**
* Get the world the selection is in
*
*
* @return
*/
public LocalWorld getWorld();
/**
* Sets the world the selection is in
*
*
* @return
*/
public void setWorld(LocalWorld world);