2010-10-02 21:52:42 +00:00
|
|
|
// $Id$
|
|
|
|
/*
|
2010-11-03 23:46:47 +00:00
|
|
|
* WorldEditLibrary
|
2010-10-02 21:52:42 +00:00
|
|
|
* 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 18:33:18 +00:00
|
|
|
*/
|
2010-10-02 21:52:42 +00:00
|
|
|
|
2011-01-01 01:06:42 +00:00
|
|
|
package com.sk89q.worldedit;
|
|
|
|
|
2010-10-02 21:52:42 +00:00
|
|
|
import java.util.Map;
|
|
|
|
import java.util.HashMap;
|
2010-10-18 20:51:43 +00:00
|
|
|
import java.util.LinkedHashMap;
|
2010-10-14 19:06:14 +00:00
|
|
|
import java.util.Set;
|
2010-10-05 07:40:50 +00:00
|
|
|
import java.util.HashSet;
|
2010-10-11 18:30:11 +00:00
|
|
|
import java.util.Stack;
|
2010-11-17 06:59:53 +00:00
|
|
|
import java.util.List;
|
2010-10-20 09:12:16 +00:00
|
|
|
import java.util.ArrayList;
|
2010-11-17 06:59:53 +00:00
|
|
|
import java.util.Collections;
|
2010-10-31 01:20:15 +00:00
|
|
|
import java.util.Random;
|
2010-12-31 22:31:49 +00:00
|
|
|
import com.sk89q.worldedit.regions.*;
|
|
|
|
import com.sk89q.worldedit.bags.*;
|
|
|
|
import com.sk89q.worldedit.blocks.*;
|
|
|
|
import com.sk89q.worldedit.patterns.*;
|
2010-10-02 21:52:42 +00:00
|
|
|
|
|
|
|
/**
|
2010-10-05 07:40:50 +00:00
|
|
|
* This class can wrap all block editing operations into one "edit session" that
|
2011-01-01 18:33:18 +00:00
|
|
|
* stores the state of the blocks before modification. This allows for easy undo
|
|
|
|
* or redo. In addition to that, this class can use a "queue mode" that will
|
|
|
|
* know how to handle some special types of items such as signs and torches. For
|
|
|
|
* example, torches must be placed only after there is already a block below it,
|
|
|
|
* otherwise the torch will be placed as an item.
|
|
|
|
*
|
2010-10-05 07:40:50 +00:00
|
|
|
* @author sk89q
|
2010-10-02 21:52:42 +00:00
|
|
|
*/
|
|
|
|
public class EditSession {
|
2010-12-31 22:31:49 +00:00
|
|
|
/**
|
|
|
|
* Random number generator.
|
|
|
|
*/
|
|
|
|
private static Random prng = new Random();
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2011-01-01 01:06:42 +00:00
|
|
|
/**
|
|
|
|
* Server interface.
|
|
|
|
*/
|
|
|
|
private ServerInterface server;
|
2011-01-01 18:33:18 +00:00
|
|
|
/**
|
|
|
|
* World.
|
|
|
|
*/
|
|
|
|
private LocalWorld world;
|
|
|
|
|
2010-10-02 21:52:42 +00:00
|
|
|
/**
|
|
|
|
* Stores the original blocks before modification.
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
private DoubleArrayList<BlockVector, BaseBlock> original = new DoubleArrayList<BlockVector, BaseBlock>(
|
|
|
|
true);
|
2010-10-04 23:39:35 +00:00
|
|
|
/**
|
|
|
|
* Stores the current blocks.
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
private DoubleArrayList<BlockVector, BaseBlock> current = new DoubleArrayList<BlockVector, BaseBlock>(
|
|
|
|
false);
|
2010-10-05 07:40:50 +00:00
|
|
|
/**
|
2010-11-27 07:24:55 +00:00
|
|
|
* Blocks that should be placed before last.
|
2010-10-05 07:40:50 +00:00
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
private DoubleArrayList<BlockVector, BaseBlock> queueAfter = new DoubleArrayList<BlockVector, BaseBlock>(
|
|
|
|
false);
|
2010-11-27 07:24:55 +00:00
|
|
|
/**
|
|
|
|
* Blocks that should be placed last.
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
private DoubleArrayList<BlockVector, BaseBlock> queueLast = new DoubleArrayList<BlockVector, BaseBlock>(
|
|
|
|
false);
|
2010-10-04 23:39:35 +00:00
|
|
|
/**
|
|
|
|
* The maximum number of blocks to change at a time. If this number is
|
2011-01-01 18:33:18 +00:00
|
|
|
* exceeded, a MaxChangedBlocksException exception will be raised. -1
|
|
|
|
* indicates no limit.
|
2010-10-04 23:39:35 +00:00
|
|
|
*/
|
|
|
|
private int maxBlocks = -1;
|
2010-10-05 07:40:50 +00:00
|
|
|
/**
|
|
|
|
* Indicates whether some types of blocks should be queued for best
|
|
|
|
* reproduction.
|
|
|
|
*/
|
|
|
|
private boolean queued = false;
|
2010-10-31 01:20:15 +00:00
|
|
|
/**
|
2010-12-31 22:31:49 +00:00
|
|
|
* Block bag to use for getting blocks.
|
2010-10-31 01:20:15 +00:00
|
|
|
*/
|
2010-12-31 22:31:49 +00:00
|
|
|
private BlockBag blockBag;
|
|
|
|
/**
|
|
|
|
* List of missing blocks;
|
|
|
|
*/
|
|
|
|
private Set<Integer> missingBlocks = new HashSet<Integer>();
|
2010-10-05 07:40:50 +00:00
|
|
|
|
2010-10-04 23:39:35 +00:00
|
|
|
/**
|
|
|
|
* Construct the object with a maximum number of blocks.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
|
|
|
* @param server
|
|
|
|
* @param world
|
|
|
|
* @param maxBlocks
|
2010-10-04 23:39:35 +00:00
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public EditSession(ServerInterface server, LocalWorld world, int maxBlocks) {
|
2010-10-04 23:39:35 +00:00
|
|
|
if (maxBlocks < -1) {
|
|
|
|
throw new IllegalArgumentException("Max blocks must be >= -1");
|
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-04 23:39:35 +00:00
|
|
|
this.maxBlocks = maxBlocks;
|
2011-01-01 18:33:18 +00:00
|
|
|
this.server = server;
|
|
|
|
this.world = world;
|
2010-10-04 23:39:35 +00:00
|
|
|
}
|
2010-10-02 21:52:42 +00:00
|
|
|
|
2010-12-31 22:31:49 +00:00
|
|
|
/**
|
|
|
|
* Construct the object with a maximum number of blocks and a block bag.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
|
|
|
* @param server
|
|
|
|
* @param maxBlocks
|
|
|
|
* @blockBag
|
2010-12-31 22:31:49 +00:00
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public EditSession(ServerInterface server, LocalWorld world, int maxBlocks,
|
|
|
|
BlockBag blockBag) {
|
2010-12-31 22:31:49 +00:00
|
|
|
if (maxBlocks < -1) {
|
|
|
|
throw new IllegalArgumentException("Max blocks must be >= -1");
|
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-12-31 22:31:49 +00:00
|
|
|
this.maxBlocks = maxBlocks;
|
|
|
|
this.blockBag = blockBag;
|
2011-01-01 18:33:18 +00:00
|
|
|
this.server = server;
|
|
|
|
this.world = world;
|
2010-12-31 22:31:49 +00:00
|
|
|
}
|
|
|
|
|
2010-10-02 21:52:42 +00:00
|
|
|
/**
|
|
|
|
* Sets a block without changing history.
|
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param pt
|
2010-10-02 21:52:42 +00:00
|
|
|
* @param blockType
|
|
|
|
* @return Whether the block changed
|
|
|
|
*/
|
2010-12-31 22:31:49 +00:00
|
|
|
private boolean rawSetBlock(Vector pt, BaseBlock block) {
|
2010-11-05 06:36:54 +00:00
|
|
|
int y = pt.getBlockY();
|
|
|
|
if (y < 0 || y > 127) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-11-16 08:15:06 +00:00
|
|
|
|
|
|
|
// Clear the chest so that it doesn't drop items
|
2011-01-01 18:33:18 +00:00
|
|
|
if (server.getBlockType(world, pt) == 54 && blockBag == null) {
|
|
|
|
server.clearChest(world, pt);
|
2010-11-16 08:15:06 +00:00
|
|
|
}
|
2010-11-17 04:39:48 +00:00
|
|
|
|
|
|
|
int id = block.getID();
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-12-31 22:31:49 +00:00
|
|
|
if (blockBag != null) {
|
2011-01-01 18:33:18 +00:00
|
|
|
int existing = server.getBlockType(world, pt);
|
|
|
|
|
2010-12-31 22:31:49 +00:00
|
|
|
if (id > 0) {
|
|
|
|
try {
|
|
|
|
blockBag.fetchPlacedBlock(id);
|
|
|
|
} catch (UnplaceableBlockException e) {
|
|
|
|
return false;
|
|
|
|
} catch (BlockBagException e) {
|
|
|
|
missingBlocks.add(id);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (existing > 0) {
|
|
|
|
try {
|
|
|
|
blockBag.storeDroppedBlock(existing);
|
|
|
|
} catch (BlockBagException e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
|
|
|
boolean result = server.setBlockType(world, pt, id);
|
2010-11-17 04:39:48 +00:00
|
|
|
if (id != 0) {
|
|
|
|
if (BlockType.usesData(id)) {
|
2011-01-01 18:33:18 +00:00
|
|
|
server.setBlockData(world, pt, block.getData());
|
2010-11-17 04:39:48 +00:00
|
|
|
}
|
2010-10-14 08:31:05 +00:00
|
|
|
|
2010-10-15 17:22:55 +00:00
|
|
|
// Signs
|
|
|
|
if (block instanceof SignBlock) {
|
2011-01-01 18:33:18 +00:00
|
|
|
SignBlock signBlock = (SignBlock) block;
|
2010-10-15 17:22:55 +00:00
|
|
|
String[] text = signBlock.getText();
|
2011-01-01 18:33:18 +00:00
|
|
|
server.setSignText(world, pt, text);
|
|
|
|
// Chests
|
2010-12-31 22:31:49 +00:00
|
|
|
} else if (block instanceof ChestBlock && blockBag == null) {
|
2011-01-01 18:33:18 +00:00
|
|
|
ChestBlock chestBlock = (ChestBlock) block;
|
|
|
|
server.setChestContents(world, pt, chestBlock.getItems());
|
|
|
|
// Mob spawners
|
2010-11-27 03:33:28 +00:00
|
|
|
} else if (block instanceof MobSpawnerBlock) {
|
2011-01-01 18:33:18 +00:00
|
|
|
MobSpawnerBlock mobSpawnerblock = (MobSpawnerBlock) block;
|
|
|
|
server.setMobSpawnerType(world, pt, mobSpawnerblock.getMobType());
|
2010-10-15 17:22:55 +00:00
|
|
|
}
|
2010-10-14 08:31:05 +00:00
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
return result;
|
2010-10-11 08:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the block at position x, y, z with a block type. If queue mode is
|
2011-01-01 18:33:18 +00:00
|
|
|
* enabled, blocks may not be actually set in world until flushQueue() is
|
|
|
|
* called.
|
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param pt
|
2010-10-13 23:49:35 +00:00
|
|
|
* @param block
|
2010-10-11 08:22:47 +00:00
|
|
|
* @return Whether the block changed -- not entirely dependable
|
|
|
|
*/
|
2010-10-13 23:49:35 +00:00
|
|
|
public boolean setBlock(Vector pt, BaseBlock block)
|
2011-01-01 18:33:18 +00:00
|
|
|
throws MaxChangedBlocksException {
|
2010-10-13 05:38:05 +00:00
|
|
|
BlockVector blockPt = pt.toBlockVector();
|
2010-10-04 23:39:35 +00:00
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
// if (!original.containsKey(blockPt)) {
|
|
|
|
original.put(blockPt, getBlock(pt));
|
|
|
|
|
|
|
|
if (maxBlocks != -1 && original.size() > maxBlocks) {
|
|
|
|
throw new MaxChangedBlocksException(maxBlocks);
|
|
|
|
}
|
|
|
|
// }
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
current.put(pt.toBlockVector(), block);
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
return smartSetBlock(pt, block);
|
2010-10-05 07:40:50 +00:00
|
|
|
}
|
|
|
|
|
2010-10-13 05:38:05 +00:00
|
|
|
/**
|
|
|
|
* Set a block only if there's no block already there.
|
|
|
|
*
|
|
|
|
* @param pt
|
2010-10-13 23:49:35 +00:00
|
|
|
* @param block
|
2010-10-13 05:38:05 +00:00
|
|
|
* @return if block was changed
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2010-10-13 23:49:35 +00:00
|
|
|
public boolean setBlockIfAir(Vector pt, BaseBlock block)
|
2010-10-13 05:38:05 +00:00
|
|
|
throws MaxChangedBlocksException {
|
2010-10-13 23:49:35 +00:00
|
|
|
if (!getBlock(pt).isAir()) {
|
2010-10-13 05:38:05 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2010-10-13 23:49:35 +00:00
|
|
|
return setBlock(pt, block);
|
2010-10-13 05:38:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-05 07:40:50 +00:00
|
|
|
/**
|
|
|
|
* Actually set the block. Will use queue.
|
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param pt
|
2010-10-13 23:49:35 +00:00
|
|
|
* @param block
|
2010-10-05 07:40:50 +00:00
|
|
|
* @return
|
|
|
|
*/
|
2010-10-13 23:49:35 +00:00
|
|
|
private boolean smartSetBlock(Vector pt, BaseBlock block) {
|
2010-10-05 07:40:50 +00:00
|
|
|
if (queued) {
|
2010-11-27 07:24:55 +00:00
|
|
|
// Place torches, etc. last
|
|
|
|
if (BlockType.shouldPlaceLast(block.getID())) {
|
|
|
|
queueLast.put(pt.toBlockVector(), block);
|
|
|
|
return getBlock(pt).getID() != block.getID();
|
2011-01-01 18:33:18 +00:00
|
|
|
// Destroy torches, etc. first
|
2010-11-27 07:24:55 +00:00
|
|
|
} else if (BlockType.shouldPlaceLast(getBlock(pt).getID())) {
|
|
|
|
rawSetBlock(pt, new BaseBlock(0));
|
|
|
|
} else {
|
|
|
|
queueAfter.put(pt.toBlockVector(), block);
|
2010-10-15 07:22:03 +00:00
|
|
|
return getBlock(pt).getID() != block.getID();
|
2010-10-05 07:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
return rawSetBlock(pt, block);
|
2010-10-02 21:52:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the block type at a position x, y, z.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param pt
|
2010-10-02 21:52:42 +00:00
|
|
|
* @return Block type
|
|
|
|
*/
|
2010-10-13 23:49:35 +00:00
|
|
|
public BaseBlock getBlock(Vector pt) {
|
2010-10-05 07:40:50 +00:00
|
|
|
// In the case of the queue, the block may have not actually been
|
|
|
|
// changed yet
|
|
|
|
if (queued) {
|
2011-01-01 18:33:18 +00:00
|
|
|
/*
|
|
|
|
* BlockVector blockPt = pt.toBlockVector();
|
|
|
|
*
|
|
|
|
* if (current.containsKey(blockPt)) { return current.get(blockPt);
|
|
|
|
* }
|
|
|
|
*/
|
2010-10-05 07:40:50 +00:00
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-14 08:31:05 +00:00
|
|
|
return rawGetBlock(pt);
|
2010-10-11 08:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the block type at a position x, y, z.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param pt
|
2010-10-13 23:49:35 +00:00
|
|
|
* @return BaseBlock
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
2011-01-01 01:06:42 +00:00
|
|
|
public BaseBlock rawGetBlock(Vector pt) {
|
2011-01-01 18:33:18 +00:00
|
|
|
int type = server.getBlockType(world, pt);
|
|
|
|
int data = server.getBlockData(world, pt);
|
2010-10-14 08:31:05 +00:00
|
|
|
|
|
|
|
// Sign
|
|
|
|
if (type == 63 || type == 68) {
|
2011-01-01 18:33:18 +00:00
|
|
|
String[] text = server.getSignText(world, pt);
|
2010-10-14 08:31:05 +00:00
|
|
|
return new SignBlock(type, data, text);
|
2011-01-01 18:33:18 +00:00
|
|
|
// Chest
|
2010-10-25 06:42:56 +00:00
|
|
|
} else if (type == 54) {
|
2011-01-01 18:33:18 +00:00
|
|
|
BaseItemStack[] items = server.getChestContents(world, pt);
|
2010-10-25 06:42:56 +00:00
|
|
|
return new ChestBlock(data, items);
|
2011-01-01 18:33:18 +00:00
|
|
|
// Mob spawner
|
2010-11-27 03:33:28 +00:00
|
|
|
} else if (type == 52) {
|
2011-01-01 18:33:18 +00:00
|
|
|
return new MobSpawnerBlock(data,
|
|
|
|
server.getMobSpawnerType(world, pt));
|
2010-10-14 08:31:05 +00:00
|
|
|
} else {
|
|
|
|
return new BaseBlock(type, data);
|
|
|
|
}
|
2010-10-02 21:52:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restores all blocks to their initial state.
|
|
|
|
*/
|
|
|
|
public void undo() {
|
2011-01-01 18:33:18 +00:00
|
|
|
for (Map.Entry<BlockVector, BaseBlock> entry : original) {
|
|
|
|
BlockVector pt = (BlockVector) entry.getKey();
|
|
|
|
smartSetBlock(pt, (BaseBlock) entry.getValue());
|
2010-10-02 21:52:42 +00:00
|
|
|
}
|
2010-10-05 07:40:50 +00:00
|
|
|
flushQueue();
|
2010-10-02 21:52:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets to new state.
|
|
|
|
*/
|
|
|
|
public void redo() {
|
2011-01-01 18:33:18 +00:00
|
|
|
for (Map.Entry<BlockVector, BaseBlock> entry : current) {
|
|
|
|
BlockVector pt = (BlockVector) entry.getKey();
|
|
|
|
smartSetBlock(pt, (BaseBlock) entry.getValue());
|
2010-10-02 21:52:42 +00:00
|
|
|
}
|
2010-10-05 07:40:50 +00:00
|
|
|
flushQueue();
|
2010-10-02 21:52:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the number of changed blocks.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public int size() {
|
|
|
|
return original.size();
|
|
|
|
}
|
2010-10-04 23:39:35 +00:00
|
|
|
|
|
|
|
/**
|
2011-01-01 18:33:18 +00:00
|
|
|
* Get the maximum number of blocks that can be changed. -1 will be returned
|
|
|
|
* if disabled.
|
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return block change limit
|
2010-10-04 23:39:35 +00:00
|
|
|
*/
|
|
|
|
public int getBlockChangeLimit() {
|
|
|
|
return maxBlocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the maximum number of blocks that can be changed.
|
|
|
|
*
|
2011-01-01 18:33:18 +00:00
|
|
|
* @param maxBlocks
|
|
|
|
* -1 to disable
|
2010-10-04 23:39:35 +00:00
|
|
|
*/
|
|
|
|
public void setBlockChangeLimit(int maxBlocks) {
|
|
|
|
if (maxBlocks < -1) {
|
|
|
|
throw new IllegalArgumentException("Max blocks must be >= -1");
|
|
|
|
}
|
|
|
|
this.maxBlocks = maxBlocks;
|
|
|
|
}
|
2010-10-05 07:40:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns queue status.
|
|
|
|
*
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return whether the queue is enabled
|
2010-10-05 07:40:50 +00:00
|
|
|
*/
|
|
|
|
public boolean isQueueEnabled() {
|
|
|
|
return queued;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Queue certain types of block for better reproduction of those blocks.
|
|
|
|
*/
|
|
|
|
public void enableQueue() {
|
|
|
|
queued = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable the queue. This will flush the queue.
|
|
|
|
*/
|
|
|
|
public void disableQueue() {
|
|
|
|
if (queued != false) {
|
|
|
|
flushQueue();
|
|
|
|
}
|
|
|
|
queued = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finish off the queue.
|
|
|
|
*/
|
|
|
|
public void flushQueue() {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (!queued) {
|
|
|
|
return;
|
|
|
|
}
|
2010-11-27 07:24:55 +00:00
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
for (Map.Entry<BlockVector, BaseBlock> entry : queueAfter) {
|
|
|
|
BlockVector pt = (BlockVector) entry.getKey();
|
|
|
|
rawSetBlock(pt, (BaseBlock) entry.getValue());
|
2010-11-27 07:24:55 +00:00
|
|
|
}
|
2010-12-31 22:31:49 +00:00
|
|
|
|
|
|
|
// We don't want to place these blocks if other blocks were missing
|
|
|
|
// because it might cause the items to drop
|
|
|
|
if (blockBag == null || missingBlocks.size() == 0) {
|
2011-01-01 18:33:18 +00:00
|
|
|
for (Map.Entry<BlockVector, BaseBlock> entry : queueLast) {
|
|
|
|
BlockVector pt = (BlockVector) entry.getKey();
|
|
|
|
rawSetBlock(pt, (BaseBlock) entry.getValue());
|
2010-12-31 22:31:49 +00:00
|
|
|
}
|
2010-10-05 07:40:50 +00:00
|
|
|
}
|
2010-11-27 07:24:55 +00:00
|
|
|
|
|
|
|
queueAfter.clear();
|
|
|
|
queueLast.clear();
|
2010-10-05 07:40:50 +00:00
|
|
|
}
|
2010-10-11 08:22:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fills an area recursively in the X/Z directions.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param origin
|
2010-10-13 23:49:35 +00:00
|
|
|
* @param block
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param radius
|
|
|
|
* @param depth
|
2010-11-17 04:03:54 +00:00
|
|
|
* @param recursive
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return number of blocks affected
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int fillXZ(Vector origin, BaseBlock block, int radius, int depth,
|
|
|
|
boolean recursive) throws MaxChangedBlocksException {
|
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
int affected = 0;
|
2010-10-30 08:28:00 +00:00
|
|
|
int originX = origin.getBlockX();
|
|
|
|
int originY = origin.getBlockY();
|
|
|
|
int originZ = origin.getBlockZ();
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-10-30 08:28:00 +00:00
|
|
|
HashSet<BlockVector> visited = new HashSet<BlockVector>();
|
|
|
|
Stack<BlockVector> queue = new Stack<BlockVector>();
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
queue.push(new BlockVector(originX, originY, originZ));
|
2010-10-30 08:28:00 +00:00
|
|
|
|
|
|
|
while (!queue.empty()) {
|
|
|
|
BlockVector pt = queue.pop();
|
|
|
|
int cx = pt.getBlockX();
|
2010-11-17 04:03:54 +00:00
|
|
|
int cy = pt.getBlockY();
|
2010-10-30 08:28:00 +00:00
|
|
|
int cz = pt.getBlockZ();
|
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
if (cy < 0 || cy > originY || visited.contains(pt)) {
|
2010-10-30 08:28:00 +00:00
|
|
|
continue;
|
|
|
|
}
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-10-30 08:28:00 +00:00
|
|
|
visited.add(pt);
|
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
if (recursive) {
|
|
|
|
if (origin.distance(pt) > radius) {
|
|
|
|
continue;
|
|
|
|
}
|
2010-10-30 08:28:00 +00:00
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
if (getBlock(pt).isAir()) {
|
|
|
|
if (setBlock(pt, block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
2010-10-30 08:28:00 +00:00
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
queue.push(new BlockVector(cx, cy - 1, cz));
|
|
|
|
queue.push(new BlockVector(cx, cy + 1, cz));
|
2010-10-30 08:28:00 +00:00
|
|
|
} else {
|
2010-11-17 04:03:54 +00:00
|
|
|
double dist = Math.sqrt(Math.pow(originX - cx, 2)
|
|
|
|
+ Math.pow(originZ - cz, 2));
|
|
|
|
int minY = originY - depth + 1;
|
|
|
|
|
|
|
|
if (dist > radius) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (getBlock(pt).isAir()) {
|
|
|
|
affected += fillY(cx, originY, cz, block, minY);
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
2010-10-30 08:28:00 +00:00
|
|
|
}
|
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
queue.push(new BlockVector(cx + 1, cy, cz));
|
|
|
|
queue.push(new BlockVector(cx - 1, cy, cz));
|
|
|
|
queue.push(new BlockVector(cx, cy, cz + 1));
|
|
|
|
queue.push(new BlockVector(cx, cy, cz - 1));
|
2010-10-30 08:28:00 +00:00
|
|
|
}
|
2010-10-11 08:22:47 +00:00
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recursively fills a block and below until it hits another block.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param x
|
|
|
|
* @param cy
|
|
|
|
* @param z
|
2010-10-13 23:49:35 +00:00
|
|
|
* @param block
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param minY
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
* @return
|
|
|
|
*/
|
2010-10-13 23:49:35 +00:00
|
|
|
private int fillY(int x, int cy, int z, BaseBlock block, int minY)
|
2011-01-01 18:33:18 +00:00
|
|
|
throws MaxChangedBlocksException {
|
2010-10-11 08:22:47 +00:00
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
for (int y = cy; y >= minY; y--) {
|
2010-10-13 01:03:56 +00:00
|
|
|
Vector pt = new Vector(x, y, z);
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
if (getBlock(pt).isAir()) {
|
|
|
|
setBlock(pt, block);
|
2010-10-11 08:22:47 +00:00
|
|
|
affected++;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-11-16 22:07:52 +00:00
|
|
|
/**
|
|
|
|
* Fills an area recursively in the X/Z directions.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-11-16 22:07:52 +00:00
|
|
|
* @param origin
|
|
|
|
* @param pattern
|
|
|
|
* @param radius
|
|
|
|
* @param depth
|
2010-11-17 04:03:54 +00:00
|
|
|
* @param recursive
|
2010-11-16 22:07:52 +00:00
|
|
|
* @return number of blocks affected
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int fillXZ(Vector origin, Pattern pattern, int radius, int depth,
|
|
|
|
boolean recursive) throws MaxChangedBlocksException {
|
2010-11-16 22:07:52 +00:00
|
|
|
|
|
|
|
int affected = 0;
|
|
|
|
int originX = origin.getBlockX();
|
|
|
|
int originY = origin.getBlockY();
|
|
|
|
int originZ = origin.getBlockZ();
|
|
|
|
|
|
|
|
HashSet<BlockVector> visited = new HashSet<BlockVector>();
|
|
|
|
Stack<BlockVector> queue = new Stack<BlockVector>();
|
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
queue.push(new BlockVector(originX, originY, originZ));
|
2010-11-16 22:07:52 +00:00
|
|
|
|
|
|
|
while (!queue.empty()) {
|
|
|
|
BlockVector pt = queue.pop();
|
|
|
|
int cx = pt.getBlockX();
|
2010-11-17 04:03:54 +00:00
|
|
|
int cy = pt.getBlockY();
|
2010-11-16 22:07:52 +00:00
|
|
|
int cz = pt.getBlockZ();
|
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
if (cy < 0 || cy > originY || visited.contains(pt)) {
|
2010-11-16 22:07:52 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
visited.add(pt);
|
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
if (recursive) {
|
|
|
|
if (origin.distance(pt) > radius) {
|
|
|
|
continue;
|
|
|
|
}
|
2010-11-16 22:07:52 +00:00
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
if (getBlock(pt).isAir()) {
|
|
|
|
if (setBlock(pt, pattern.next(pt))) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
2010-11-16 22:07:52 +00:00
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
queue.push(new BlockVector(cx, cy - 1, cz));
|
|
|
|
queue.push(new BlockVector(cx, cy + 1, cz));
|
2010-11-16 22:07:52 +00:00
|
|
|
} else {
|
2010-11-17 04:03:54 +00:00
|
|
|
double dist = Math.sqrt(Math.pow(originX - cx, 2)
|
|
|
|
+ Math.pow(originZ - cz, 2));
|
|
|
|
int minY = originY - depth + 1;
|
|
|
|
|
|
|
|
if (dist > radius) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (getBlock(pt).isAir()) {
|
|
|
|
affected += fillY(cx, originY, cz, pattern, minY);
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
2010-11-16 22:07:52 +00:00
|
|
|
}
|
|
|
|
|
2010-11-17 04:03:54 +00:00
|
|
|
queue.push(new BlockVector(cx + 1, cy, cz));
|
|
|
|
queue.push(new BlockVector(cx - 1, cy, cz));
|
|
|
|
queue.push(new BlockVector(cx, cy, cz + 1));
|
|
|
|
queue.push(new BlockVector(cx, cy, cz - 1));
|
2010-11-16 22:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recursively fills a block and below until it hits another block.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-11-16 22:07:52 +00:00
|
|
|
* @param x
|
|
|
|
* @param cy
|
|
|
|
* @param z
|
|
|
|
* @param pattern
|
|
|
|
* @param minY
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
private int fillY(int x, int cy, int z, Pattern pattern, int minY)
|
2011-01-01 18:33:18 +00:00
|
|
|
throws MaxChangedBlocksException {
|
2010-11-16 22:07:52 +00:00
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
for (int y = cy; y >= minY; y--) {
|
|
|
|
Vector pt = new Vector(x, y, z);
|
|
|
|
|
|
|
|
if (getBlock(pt).isAir()) {
|
|
|
|
setBlock(pt, pattern.next(pt));
|
|
|
|
affected++;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
/**
|
|
|
|
* Remove blocks above.
|
|
|
|
*
|
|
|
|
* @param pos
|
2010-10-11 15:56:19 +00:00
|
|
|
* @param size
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param height
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return number of blocks affected
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int removeAbove(Vector pos, int size, int height)
|
|
|
|
throws MaxChangedBlocksException {
|
2010-10-11 08:22:47 +00:00
|
|
|
int maxY = Math.min(127, pos.getBlockY() + height - 1);
|
|
|
|
size--;
|
|
|
|
int affected = 0;
|
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
int oX = pos.getBlockX();
|
|
|
|
int oY = pos.getBlockY();
|
|
|
|
int oZ = pos.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = oX - size; x <= oX + size; x++) {
|
|
|
|
for (int z = oZ - size; z <= oZ + size; z++) {
|
|
|
|
for (int y = oY; y <= maxY; y++) {
|
2010-10-13 01:03:56 +00:00
|
|
|
Vector pt = new Vector(x, y, z);
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
if (!getBlock(pt).isAir()) {
|
|
|
|
setBlock(pt, new BaseBlock(0));
|
2010-10-11 08:22:47 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove blocks below.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param pos
|
2010-10-11 15:56:19 +00:00
|
|
|
* @param size
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param height
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return number of blocks affected
|
2010-10-11 08:22:47 +00:00
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int removeBelow(Vector pos, int size, int height)
|
|
|
|
throws MaxChangedBlocksException {
|
2010-10-11 08:22:47 +00:00
|
|
|
int minY = Math.max(0, pos.getBlockY() - height);
|
|
|
|
size--;
|
|
|
|
int affected = 0;
|
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
int oX = pos.getBlockX();
|
|
|
|
int oY = pos.getBlockY();
|
|
|
|
int oZ = pos.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = oX - size; x <= oX + size; x++) {
|
|
|
|
for (int z = oZ - size; z <= oZ + size; z++) {
|
|
|
|
for (int y = oY; y >= minY; y--) {
|
2010-10-13 01:03:56 +00:00
|
|
|
Vector pt = new Vector(x, y, z);
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
if (!getBlock(pt).isAir()) {
|
|
|
|
setBlock(pt, new BaseBlock(0));
|
2010-10-11 08:22:47 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-10-18 23:36:22 +00:00
|
|
|
/**
|
|
|
|
* Remove nearby blocks of a type.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-18 23:36:22 +00:00
|
|
|
* @param pos
|
|
|
|
* @param blockType
|
|
|
|
* @param size
|
|
|
|
* @return number of blocks affected
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int removeNear(Vector pos, int blockType, int size)
|
|
|
|
throws MaxChangedBlocksException {
|
2010-10-18 23:36:22 +00:00
|
|
|
int affected = 0;
|
|
|
|
BaseBlock air = new BaseBlock(0);
|
|
|
|
|
|
|
|
for (int x = -size; x <= size; x++) {
|
|
|
|
for (int y = -size; y <= size; y++) {
|
|
|
|
for (int z = -size; z <= size; z++) {
|
|
|
|
Vector p = pos.add(x, y, z);
|
|
|
|
|
|
|
|
if (getBlock(p).getID() == blockType) {
|
|
|
|
if (setBlock(p, air)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
/**
|
|
|
|
* Sets all the blocks inside a region to a certain block type.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param region
|
2010-10-13 23:49:35 +00:00
|
|
|
* @param block
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return number of blocks affected
|
2010-10-11 08:22:47 +00:00
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2010-10-13 23:49:35 +00:00
|
|
|
public int setBlocks(Region region, BaseBlock block)
|
2010-10-11 08:22:47 +00:00
|
|
|
throws MaxChangedBlocksException {
|
|
|
|
int affected = 0;
|
|
|
|
|
2010-11-06 21:43:56 +00:00
|
|
|
if (region instanceof CuboidRegion) {
|
|
|
|
// Doing this for speed
|
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
|
|
|
|
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minY = min.getBlockY();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxY = max.getBlockY();
|
|
|
|
int maxZ = max.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int y = minY; y <= maxY; y++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
|
|
|
Vector pt = new Vector(x, y, z);
|
|
|
|
|
|
|
|
if (setBlock(pt, block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (Vector pt : region) {
|
|
|
|
if (setBlock(pt, block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets all the blocks inside a region to a certain block type.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-11-06 21:43:56 +00:00
|
|
|
* @param region
|
|
|
|
* @param block
|
|
|
|
* @return number of blocks affected
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
|
|
|
public int setBlocks(Region region, Pattern pattern)
|
|
|
|
throws MaxChangedBlocksException {
|
|
|
|
int affected = 0;
|
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
if (region instanceof CuboidRegion) {
|
|
|
|
// Doing this for speed
|
2010-10-13 01:03:56 +00:00
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minY = min.getBlockY();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxY = max.getBlockY();
|
|
|
|
int maxZ = max.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int y = minY; y <= maxY; y++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
2010-10-13 01:03:56 +00:00
|
|
|
Vector pt = new Vector(x, y, z);
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-11-06 21:43:56 +00:00
|
|
|
if (setBlock(pt, pattern.next(pt))) {
|
2010-10-11 08:22:47 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2010-10-13 01:03:56 +00:00
|
|
|
for (Vector pt : region) {
|
2010-11-06 21:43:56 +00:00
|
|
|
if (setBlock(pt, pattern.next(pt))) {
|
2010-10-11 08:22:47 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces all the blocks of a type inside a region to another block type.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param region
|
2011-01-01 18:33:18 +00:00
|
|
|
* @param fromBlockType
|
|
|
|
* -1 for non-air
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param toBlockType
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return number of blocks affected
|
2010-10-11 08:22:47 +00:00
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int replaceBlocks(Region region, Set<Integer> fromBlockTypes,
|
|
|
|
BaseBlock toBlock) throws MaxChangedBlocksException {
|
2010-10-11 08:22:47 +00:00
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
if (region instanceof CuboidRegion) {
|
|
|
|
// Doing this for speed
|
2010-10-13 01:03:56 +00:00
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minY = min.getBlockY();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxY = max.getBlockY();
|
|
|
|
int maxZ = max.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int y = minY; y <= maxY; y++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
2010-10-13 01:03:56 +00:00
|
|
|
Vector pt = new Vector(x, y, z);
|
2010-10-15 07:22:03 +00:00
|
|
|
int curBlockType = getBlock(pt).getID();
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
if ((fromBlockTypes == null && curBlockType != 0)
|
|
|
|
|| (fromBlockTypes != null && fromBlockTypes
|
|
|
|
.contains(curBlockType))) {
|
2010-10-13 23:49:35 +00:00
|
|
|
if (setBlock(pt, toBlock)) {
|
2010-10-11 08:22:47 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2010-10-13 01:03:56 +00:00
|
|
|
for (Vector pt : region) {
|
2010-10-15 07:22:03 +00:00
|
|
|
int curBlockType = getBlock(pt).getID();
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
if (fromBlockTypes == null && curBlockType != 0
|
|
|
|
|| fromBlockTypes.contains(curBlockType)) {
|
2010-10-13 23:49:35 +00:00
|
|
|
if (setBlock(pt, toBlock)) {
|
2010-10-11 08:22:47 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
2010-11-16 22:07:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces all the blocks of a type inside a region to another block type.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-11-16 22:07:52 +00:00
|
|
|
* @param region
|
2011-01-01 18:33:18 +00:00
|
|
|
* @param fromBlockType
|
|
|
|
* -1 for non-air
|
2010-11-16 22:07:52 +00:00
|
|
|
* @param pattern
|
|
|
|
* @return number of blocks affected
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
|
|
|
public int replaceBlocks(Region region, Set<Integer> fromBlockTypes,
|
2011-01-01 18:33:18 +00:00
|
|
|
Pattern pattern) throws MaxChangedBlocksException {
|
2010-11-16 22:07:52 +00:00
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
if (region instanceof CuboidRegion) {
|
|
|
|
// Doing this for speed
|
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
|
|
|
|
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minY = min.getBlockY();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxY = max.getBlockY();
|
|
|
|
int maxZ = max.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int y = minY; y <= maxY; y++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
|
|
|
Vector pt = new Vector(x, y, z);
|
|
|
|
int curBlockType = getBlock(pt).getID();
|
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
if ((fromBlockTypes == null && curBlockType != 0)
|
|
|
|
|| (fromBlockTypes != null && fromBlockTypes
|
|
|
|
.contains(curBlockType))) {
|
2010-11-16 22:07:52 +00:00
|
|
|
if (setBlock(pt, pattern.next(pt))) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (Vector pt : region) {
|
|
|
|
int curBlockType = getBlock(pt).getID();
|
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
if (fromBlockTypes == null && curBlockType != 0
|
|
|
|
|| fromBlockTypes.contains(curBlockType)) {
|
2010-11-16 22:07:52 +00:00
|
|
|
if (setBlock(pt, pattern.next(pt))) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
2010-10-11 08:22:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Make faces of the region (as if it was a cuboid if it's not).
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-11 08:22:47 +00:00
|
|
|
* @param region
|
2010-10-13 23:49:35 +00:00
|
|
|
* @param block
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return number of blocks affected
|
2010-10-11 08:22:47 +00:00
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2010-10-13 23:49:35 +00:00
|
|
|
public int makeCuboidFaces(Region region, BaseBlock block)
|
2010-10-11 08:22:47 +00:00
|
|
|
throws MaxChangedBlocksException {
|
|
|
|
int affected = 0;
|
|
|
|
|
2010-10-13 01:03:56 +00:00
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
2010-10-18 17:45:03 +00:00
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minY = min.getBlockY();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxY = max.getBlockY();
|
|
|
|
int maxZ = max.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int y = minY; y <= maxY; y++) {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (setBlock(new Vector(x, y, minZ), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(new Vector(x, y, maxZ), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
2010-10-11 08:22:47 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
for (int y = minY; y <= maxY; y++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (setBlock(new Vector(minX, y, z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(new Vector(maxX, y, z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
2010-10-11 08:22:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
|
|
|
for (int x = minX; x <= maxX; x++) {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (setBlock(new Vector(x, minY, z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(new Vector(x, maxY, z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
2010-10-11 08:22:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-10-18 17:45:03 +00:00
|
|
|
/**
|
|
|
|
* Make walls of the region (as if it was a cuboid if it's not).
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-18 17:45:03 +00:00
|
|
|
* @param region
|
|
|
|
* @param block
|
|
|
|
* @return number of blocks affected
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
|
|
|
public int makeCuboidWalls(Region region, BaseBlock block)
|
|
|
|
throws MaxChangedBlocksException {
|
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minY = min.getBlockY();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxY = max.getBlockY();
|
|
|
|
int maxZ = max.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int y = minY; y <= maxY; y++) {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (setBlock(new Vector(x, y, minZ), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(new Vector(x, y, maxZ), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
2010-10-18 17:45:03 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
for (int y = minY; y <= maxY; y++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (setBlock(new Vector(minX, y, z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(new Vector(maxX, y, z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
2010-10-18 17:45:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
/**
|
|
|
|
* Overlays a layer of blocks over a cuboid area.
|
|
|
|
*
|
|
|
|
* @param region
|
2010-10-13 23:49:35 +00:00
|
|
|
* @param block
|
2010-10-11 15:56:19 +00:00
|
|
|
* @return number of blocks affected
|
2010-10-11 08:22:47 +00:00
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2010-10-13 23:49:35 +00:00
|
|
|
public int overlayCuboidBlocks(Region region, BaseBlock block)
|
2010-10-11 08:22:47 +00:00
|
|
|
throws MaxChangedBlocksException {
|
2010-10-13 01:03:56 +00:00
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
int upperY = Math.min(127, max.getBlockY() + 1);
|
2011-01-01 18:33:18 +00:00
|
|
|
int lowerY = Math.max(0, min.getBlockY() - 1);
|
2010-10-11 08:22:47 +00:00
|
|
|
|
|
|
|
int affected = 0;
|
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxZ = max.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
2010-10-11 08:22:47 +00:00
|
|
|
for (int y = upperY; y >= lowerY; y--) {
|
2010-10-13 23:49:35 +00:00
|
|
|
Vector above = new Vector(x, y + 1, z);
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
if (y + 1 <= 127 && !getBlock(new Vector(x, y, z)).isAir()
|
|
|
|
&& getBlock(above).isAir()) {
|
|
|
|
if (setBlock(above, block)) {
|
2010-10-11 08:22:47 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-10-11 17:27:18 +00:00
|
|
|
/**
|
|
|
|
* Stack a cuboid region.
|
|
|
|
*
|
|
|
|
* @param region
|
2010-10-13 04:41:06 +00:00
|
|
|
* @param dir
|
2010-10-11 17:27:18 +00:00
|
|
|
* @param count
|
|
|
|
* @param copyAir
|
|
|
|
* @return number of blocks affected
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int stackCuboidRegion(Region region, Vector dir, int count,
|
|
|
|
boolean copyAir) throws MaxChangedBlocksException {
|
2010-10-11 08:22:47 +00:00
|
|
|
int affected = 0;
|
|
|
|
|
2010-10-13 01:03:56 +00:00
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
2010-11-06 22:09:32 +00:00
|
|
|
|
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minY = min.getBlockY();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxY = max.getBlockY();
|
|
|
|
int maxZ = max.getBlockZ();
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-11 08:22:47 +00:00
|
|
|
int xs = region.getWidth();
|
|
|
|
int ys = region.getHeight();
|
|
|
|
int zs = region.getLength();
|
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
|
|
|
for (int y = minY; y <= maxY; y++) {
|
2010-10-13 23:49:35 +00:00
|
|
|
BaseBlock block = getBlock(new Vector(x, y, z));
|
2010-10-11 08:22:47 +00:00
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
if (!block.isAir() || copyAir) {
|
2010-10-11 08:22:47 +00:00
|
|
|
for (int i = 1; i <= count; i++) {
|
2011-01-01 18:33:18 +00:00
|
|
|
Vector pos = new Vector(x + xs * dir.getBlockX()
|
|
|
|
* i, y + ys * dir.getBlockY() * i, z + zs
|
|
|
|
* dir.getBlockZ() * i);
|
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
if (setBlock(pos, block)) {
|
2010-10-11 08:22:47 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
2010-10-11 18:17:32 +00:00
|
|
|
|
2010-10-18 20:51:43 +00:00
|
|
|
/**
|
|
|
|
* Move a cuboid region.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-18 20:51:43 +00:00
|
|
|
* @param region
|
|
|
|
* @param dir
|
|
|
|
* @param distance
|
|
|
|
* @param copyAir
|
|
|
|
* @param replace
|
|
|
|
* @return number of blocks moved
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int moveCuboidRegion(Region region, Vector dir, int distance,
|
|
|
|
boolean copyAir, BaseBlock replace)
|
2010-10-18 20:51:43 +00:00
|
|
|
throws MaxChangedBlocksException {
|
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
Vector shift = dir.multiply(distance);
|
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
2010-11-06 22:09:32 +00:00
|
|
|
|
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minY = min.getBlockY();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxY = max.getBlockY();
|
|
|
|
int maxZ = max.getBlockZ();
|
|
|
|
|
2010-10-18 20:51:43 +00:00
|
|
|
Vector newMin = min.add(shift);
|
|
|
|
Vector newMax = min.add(shift);
|
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
Map<Vector, BaseBlock> delayed = new LinkedHashMap<Vector, BaseBlock>();
|
2010-10-18 20:51:43 +00:00
|
|
|
|
2010-11-06 22:09:32 +00:00
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
|
|
|
for (int y = minY; y <= maxY; y++) {
|
2010-10-18 20:51:43 +00:00
|
|
|
Vector pos = new Vector(x, y, z);
|
|
|
|
BaseBlock block = getBlock(pos);
|
|
|
|
|
|
|
|
if (!block.isAir() || copyAir) {
|
|
|
|
Vector newPos = pos.add(shift);
|
|
|
|
|
|
|
|
delayed.put(newPos, getBlock(pos));
|
|
|
|
|
|
|
|
// Don't want to replace the old block if it's in
|
|
|
|
// the new area
|
|
|
|
if (x >= newMin.getBlockX() && x <= newMax.getBlockX()
|
2011-01-01 18:33:18 +00:00
|
|
|
&& y >= newMin.getBlockY()
|
|
|
|
&& y <= newMax.getBlockY()
|
|
|
|
&& z >= newMin.getBlockZ()
|
|
|
|
&& z <= newMax.getBlockZ()) {
|
2010-10-18 20:51:43 +00:00
|
|
|
} else {
|
|
|
|
setBlock(pos, replace);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
for (Map.Entry<Vector, BaseBlock> entry : delayed.entrySet()) {
|
2010-10-18 20:51:43 +00:00
|
|
|
setBlock(entry.getKey(), entry.getValue());
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-10-11 18:17:32 +00:00
|
|
|
/**
|
|
|
|
* Drain nearby pools of water or lava.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-11 18:17:32 +00:00
|
|
|
* @param pos
|
|
|
|
* @param radius
|
|
|
|
* @return number of blocks affected
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int drainArea(Vector pos, int radius)
|
|
|
|
throws MaxChangedBlocksException {
|
2010-10-11 18:17:32 +00:00
|
|
|
int affected = 0;
|
|
|
|
|
2010-10-13 01:03:56 +00:00
|
|
|
HashSet<BlockVector> visited = new HashSet<BlockVector>();
|
|
|
|
Stack<BlockVector> queue = new Stack<BlockVector>();
|
2010-10-11 18:17:32 +00:00
|
|
|
|
|
|
|
for (int x = pos.getBlockX() - 1; x <= pos.getBlockX() + 1; x++) {
|
|
|
|
for (int z = pos.getBlockZ() - 1; z <= pos.getBlockZ() + 1; z++) {
|
|
|
|
for (int y = pos.getBlockY() - 1; y <= pos.getBlockY() + 1; y++) {
|
2010-10-13 01:03:56 +00:00
|
|
|
queue.push(new BlockVector(x, y, z));
|
2010-10-11 18:17:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-11 18:30:11 +00:00
|
|
|
while (!queue.empty()) {
|
2010-10-13 01:03:56 +00:00
|
|
|
BlockVector cur = queue.pop();
|
2010-10-15 08:07:48 +00:00
|
|
|
|
2010-10-15 07:22:03 +00:00
|
|
|
int type = getBlock(cur).getID();
|
2010-10-11 18:17:32 +00:00
|
|
|
|
2010-10-11 18:30:11 +00:00
|
|
|
// Check block type
|
|
|
|
if (type != 8 && type != 9 && type != 10 && type != 11) {
|
|
|
|
continue;
|
|
|
|
}
|
2010-10-11 18:17:32 +00:00
|
|
|
|
2010-10-11 18:30:11 +00:00
|
|
|
// Don't want to revisit
|
|
|
|
if (visited.contains(cur)) {
|
|
|
|
continue;
|
|
|
|
}
|
2010-10-15 08:07:48 +00:00
|
|
|
|
2010-10-11 18:30:11 +00:00
|
|
|
visited.add(cur);
|
2010-10-11 18:17:32 +00:00
|
|
|
|
2010-10-11 18:30:11 +00:00
|
|
|
// Check radius
|
|
|
|
if (pos.distance(cur) > radius) {
|
|
|
|
continue;
|
|
|
|
}
|
2010-10-11 18:17:32 +00:00
|
|
|
|
2010-10-11 18:30:11 +00:00
|
|
|
for (int x = cur.getBlockX() - 1; x <= cur.getBlockX() + 1; x++) {
|
|
|
|
for (int z = cur.getBlockZ() - 1; z <= cur.getBlockZ() + 1; z++) {
|
|
|
|
for (int y = cur.getBlockY() - 1; y <= cur.getBlockY() + 1; y++) {
|
2010-10-13 01:03:56 +00:00
|
|
|
BlockVector newPos = new BlockVector(x, y, z);
|
2010-10-11 18:17:32 +00:00
|
|
|
|
2010-10-11 18:30:11 +00:00
|
|
|
if (!cur.equals(newPos)) {
|
|
|
|
queue.push(newPos);
|
|
|
|
}
|
2010-10-11 18:17:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-13 23:49:35 +00:00
|
|
|
if (setBlock(cur, new BaseBlock(0))) {
|
2010-10-11 18:30:11 +00:00
|
|
|
affected++;
|
|
|
|
}
|
2010-10-11 18:17:32 +00:00
|
|
|
}
|
2010-10-15 08:07:48 +00:00
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Level water.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-15 08:07:48 +00:00
|
|
|
* @param pos
|
|
|
|
* @param radius
|
|
|
|
* @return number of blocks affected
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2010-11-06 05:04:44 +00:00
|
|
|
public int fixLiquid(Vector pos, int radius, int moving, int stationary)
|
|
|
|
throws MaxChangedBlocksException {
|
2010-10-15 08:07:48 +00:00
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
HashSet<BlockVector> visited = new HashSet<BlockVector>();
|
|
|
|
Stack<BlockVector> queue = new Stack<BlockVector>();
|
|
|
|
|
|
|
|
for (int x = pos.getBlockX() - 1; x <= pos.getBlockX() + 1; x++) {
|
|
|
|
for (int z = pos.getBlockZ() - 1; z <= pos.getBlockZ() + 1; z++) {
|
|
|
|
for (int y = pos.getBlockY() - 1; y <= pos.getBlockY() + 1; y++) {
|
|
|
|
int type = getBlock(new Vector(x, y, z)).getID();
|
|
|
|
|
|
|
|
// Check block type
|
2010-11-06 05:04:44 +00:00
|
|
|
if (type == moving || type == stationary) {
|
2010-10-15 08:07:48 +00:00
|
|
|
queue.push(new BlockVector(x, y, z));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-06 05:04:44 +00:00
|
|
|
BaseBlock stationaryBlock = new BaseBlock(stationary);
|
2010-10-15 08:07:48 +00:00
|
|
|
|
|
|
|
while (!queue.empty()) {
|
|
|
|
BlockVector cur = queue.pop();
|
|
|
|
|
|
|
|
int type = getBlock(cur).getID();
|
|
|
|
|
|
|
|
// Check block type
|
2010-11-06 05:04:44 +00:00
|
|
|
if (type != moving && type != stationary && type != 0) {
|
2010-10-15 08:07:48 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't want to revisit
|
|
|
|
if (visited.contains(cur)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
visited.add(cur);
|
|
|
|
|
2010-11-06 05:04:44 +00:00
|
|
|
if (setBlock(cur, stationaryBlock)) {
|
2010-10-15 08:07:48 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check radius
|
|
|
|
if (pos.distance(cur) > radius) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-11-27 07:02:18 +00:00
|
|
|
queue.push(cur.add(1, 0, 0).toBlockVector());
|
|
|
|
queue.push(cur.add(-1, 0, 0).toBlockVector());
|
|
|
|
queue.push(cur.add(0, 0, 1).toBlockVector());
|
|
|
|
queue.push(cur.add(0, 0, -1).toBlockVector());
|
2010-10-15 08:07:48 +00:00
|
|
|
}
|
2010-10-11 18:17:32 +00:00
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
2010-10-18 00:22:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method to draw the cylinder.
|
|
|
|
*
|
|
|
|
* @param center
|
|
|
|
* @param x
|
|
|
|
* @param z
|
|
|
|
* @param height
|
|
|
|
* @param block
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
private int makeHCylinderPoints(Vector center, int x, int z, int height,
|
|
|
|
BaseBlock block) throws MaxChangedBlocksException {
|
2010-10-18 00:22:29 +00:00
|
|
|
int affected = 0;
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-18 00:22:29 +00:00
|
|
|
if (x == 0) {
|
|
|
|
for (int y = 0; y < height; y++) {
|
|
|
|
setBlock(center.add(0, y, z), block);
|
|
|
|
setBlock(center.add(0, y, -z), block);
|
|
|
|
setBlock(center.add(z, y, 0), block);
|
|
|
|
setBlock(center.add(-z, y, 0), block);
|
|
|
|
affected += 4;
|
|
|
|
}
|
|
|
|
} else if (x == z) {
|
|
|
|
for (int y = 0; y < height; y++) {
|
|
|
|
setBlock(center.add(x, y, z), block);
|
|
|
|
setBlock(center.add(-x, y, z), block);
|
|
|
|
setBlock(center.add(x, y, -z), block);
|
|
|
|
setBlock(center.add(-x, y, -z), block);
|
|
|
|
affected += 4;
|
|
|
|
}
|
|
|
|
} else if (x < z) {
|
|
|
|
for (int y = 0; y < height; y++) {
|
|
|
|
setBlock(center.add(x, y, z), block);
|
|
|
|
setBlock(center.add(-x, y, z), block);
|
|
|
|
setBlock(center.add(x, y, -z), block);
|
|
|
|
setBlock(center.add(-x, y, -z), block);
|
|
|
|
setBlock(center.add(z, y, x), block);
|
|
|
|
setBlock(center.add(-z, y, x), block);
|
|
|
|
setBlock(center.add(z, y, -x), block);
|
|
|
|
setBlock(center.add(-z, y, -x), block);
|
|
|
|
affected += 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw a hollow cylinder.
|
|
|
|
*
|
|
|
|
* @param pos
|
|
|
|
* @param block
|
|
|
|
* @param radius
|
|
|
|
* @param height
|
|
|
|
* @return number of blocks set
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int makeHollowCylinder(Vector pos, BaseBlock block, int radius,
|
|
|
|
int height) throws MaxChangedBlocksException {
|
2010-10-18 00:22:29 +00:00
|
|
|
int x = 0;
|
|
|
|
int z = radius;
|
|
|
|
int d = (5 - radius * 4) / 4;
|
|
|
|
int affected = 0;
|
|
|
|
|
2010-10-18 00:39:20 +00:00
|
|
|
if (height == 0) {
|
|
|
|
return 0;
|
|
|
|
} else if (height < 0) {
|
|
|
|
height = -height;
|
|
|
|
pos = pos.subtract(0, height, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pos.getBlockY() - height - 1 < 0) {
|
|
|
|
height = pos.getBlockY() + 1;
|
|
|
|
} else if (pos.getBlockY() + height - 1 > 127) {
|
|
|
|
height = 127 - pos.getBlockY() + 1;
|
|
|
|
}
|
|
|
|
|
2010-10-18 00:22:29 +00:00
|
|
|
affected += makeHCylinderPoints(pos, x, z, height, block);
|
|
|
|
|
|
|
|
while (x < z) {
|
|
|
|
x++;
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-18 00:22:29 +00:00
|
|
|
if (d >= 0) {
|
|
|
|
z--;
|
|
|
|
d += 2 * (x - z) + 1;
|
|
|
|
} else {
|
|
|
|
d += 2 * x + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
affected += makeHCylinderPoints(pos, x, z, height, block);
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method to draw the cylinder.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-18 00:22:29 +00:00
|
|
|
* @param center
|
|
|
|
* @param x
|
|
|
|
* @param z
|
|
|
|
* @param height
|
|
|
|
* @param block
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
private int makeCylinderPoints(Vector center, int x, int z, int height,
|
|
|
|
BaseBlock block) throws MaxChangedBlocksException {
|
2010-10-18 00:22:29 +00:00
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
if (x == z) {
|
|
|
|
for (int y = 0; y < height; y++) {
|
|
|
|
for (int z2 = -z; z2 <= z; z2++) {
|
|
|
|
setBlock(center.add(x, y, z2), block);
|
|
|
|
setBlock(center.add(-x, y, z2), block);
|
|
|
|
affected += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (x < z) {
|
|
|
|
for (int y = 0; y < height; y++) {
|
|
|
|
for (int x2 = -x; x2 <= x; x2++) {
|
|
|
|
for (int z2 = -z; z2 <= z; z2++) {
|
|
|
|
setBlock(center.add(x2, y, z2), block);
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
setBlock(center.add(z, y, x2), block);
|
|
|
|
setBlock(center.add(-z, y, x2), block);
|
|
|
|
affected += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw a filled cylinder.
|
|
|
|
*
|
|
|
|
* @param pos
|
|
|
|
* @param block
|
|
|
|
* @param radius
|
|
|
|
* @param height
|
|
|
|
* @return number of blocks set
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int makeCylinder(Vector pos, BaseBlock block, int radius, int height)
|
|
|
|
throws MaxChangedBlocksException {
|
2010-10-18 00:22:29 +00:00
|
|
|
int x = 0;
|
|
|
|
int z = radius;
|
|
|
|
int d = (5 - radius * 4) / 4;
|
|
|
|
int affected = 0;
|
|
|
|
|
2010-10-18 00:39:20 +00:00
|
|
|
if (height == 0) {
|
|
|
|
return 0;
|
|
|
|
} else if (height < 0) {
|
|
|
|
height = -height;
|
|
|
|
pos = pos.subtract(0, height, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pos.getBlockY() - height - 1 < 0) {
|
|
|
|
height = pos.getBlockY() + 1;
|
|
|
|
} else if (pos.getBlockY() + height - 1 > 127) {
|
|
|
|
height = 127 - pos.getBlockY() + 1;
|
|
|
|
}
|
|
|
|
|
2010-10-18 00:22:29 +00:00
|
|
|
affected += makeCylinderPoints(pos, x, z, height, block);
|
|
|
|
|
|
|
|
while (x < z) {
|
|
|
|
x++;
|
|
|
|
|
|
|
|
if (d >= 0) {
|
|
|
|
z--;
|
|
|
|
d += 2 * (x - z) + 1;
|
|
|
|
} else {
|
|
|
|
d += 2 * x + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
affected += makeCylinderPoints(pos, x, z, height, block);
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-10-18 17:39:32 +00:00
|
|
|
/**
|
|
|
|
* Makes a sphere.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-18 17:39:32 +00:00
|
|
|
* @param pos
|
|
|
|
* @param block
|
|
|
|
* @param radius
|
|
|
|
* @param filled
|
|
|
|
* @return number of blocks changed
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
public int makeSphere(Vector pos, BaseBlock block, int radius,
|
|
|
|
boolean filled) throws MaxChangedBlocksException {
|
2010-10-18 17:39:32 +00:00
|
|
|
int affected = 0;
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-18 17:39:32 +00:00
|
|
|
for (int x = 0; x <= radius; x++) {
|
|
|
|
for (int y = 0; y <= radius; y++) {
|
|
|
|
for (int z = 0; z <= radius; z++) {
|
|
|
|
Vector vec = pos.add(x, y, z);
|
|
|
|
double d = vec.distance(pos);
|
|
|
|
|
|
|
|
if (d <= radius + 0.5 && (filled || d >= radius - 0.5)) {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (setBlock(vec, block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(pos.add(-x, y, z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(pos.add(x, -y, z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(pos.add(x, y, -z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(pos.add(-x, -y, z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(pos.add(x, -y, -z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(pos.add(-x, y, -z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
if (setBlock(pos.add(-x, -y, -z), block)) {
|
|
|
|
affected++;
|
|
|
|
}
|
2010-10-18 17:39:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-11-07 04:26:52 +00:00
|
|
|
/**
|
|
|
|
* Make snow.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-11-07 04:26:52 +00:00
|
|
|
* @param pos
|
|
|
|
* @param radius
|
|
|
|
* @return number of blocks affected
|
|
|
|
* @throws MaxChangedBlocksException
|
|
|
|
*/
|
|
|
|
public int simulateSnow(Vector pos, int radius)
|
|
|
|
throws MaxChangedBlocksException {
|
|
|
|
int affected = 0;
|
|
|
|
|
|
|
|
int ox = pos.getBlockX();
|
|
|
|
int oy = pos.getBlockY();
|
|
|
|
int oz = pos.getBlockZ();
|
|
|
|
|
|
|
|
BaseBlock ice = new BaseBlock(79);
|
|
|
|
BaseBlock snow = new BaseBlock(78);
|
|
|
|
|
|
|
|
for (int x = ox - radius; x <= ox + radius; x++) {
|
|
|
|
for (int z = oz - radius; z <= oz + radius; z++) {
|
|
|
|
if ((new Vector(x, oy, z)).distance(pos) > radius) {
|
|
|
|
continue;
|
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-11-07 04:26:52 +00:00
|
|
|
for (int y = 127; y >= 1; y--) {
|
|
|
|
Vector pt = new Vector(x, y, z);
|
|
|
|
int id = getBlock(pt).getID();
|
|
|
|
|
|
|
|
// Snow should not cover these blocks
|
|
|
|
if (id == 6 // Saplings
|
|
|
|
|| id == 10 // Lava
|
|
|
|
|| id == 11 // Lava
|
|
|
|
|| id == 37 // Yellow flower
|
|
|
|
|| id == 38 // Red rose
|
|
|
|
|| id == 39 // Brown mushroom
|
|
|
|
|| id == 40 // Red mushroom
|
|
|
|
|| id == 44 // Step
|
|
|
|
|| id == 50 // Torch
|
|
|
|
|| id == 51 // Fire
|
|
|
|
|| id == 53 // Wood steps
|
|
|
|
|| id == 55 // Redstone wire
|
|
|
|
|| id == 59 // Crops
|
2011-01-01 18:33:18 +00:00
|
|
|
|| (id >= 63 && id <= 72) || id == 75 // Redstone
|
|
|
|
// torch
|
2010-11-07 04:26:52 +00:00
|
|
|
|| id == 76 // Redstone torch
|
|
|
|
|| id == 77 // Stone button
|
|
|
|
|| id == 78 // Snow
|
|
|
|
|| id == 79 // Ice
|
|
|
|
|| id == 81 // Cactus
|
|
|
|
|| id == 83 // Reed
|
|
|
|
|| id == 85 // Fence
|
|
|
|
|| id == 90) { // Portal
|
|
|
|
break;
|
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-11-07 04:26:52 +00:00
|
|
|
// Ice!
|
|
|
|
if (id == 8 || id == 9) {
|
|
|
|
if (setBlock(pt, ice)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cover
|
|
|
|
if (id != 0) {
|
|
|
|
if (y == 127) { // Too high!
|
|
|
|
break;
|
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-11-07 04:26:52 +00:00
|
|
|
if (setBlock(pt.add(0, 1, 0), snow)) {
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-10-13 05:38:05 +00:00
|
|
|
/**
|
|
|
|
* Set a block by chance.
|
|
|
|
*
|
|
|
|
* @param pos
|
2010-10-13 23:49:35 +00:00
|
|
|
* @param block
|
2011-01-01 18:33:18 +00:00
|
|
|
* @param c
|
|
|
|
* 0-1 chance
|
2010-10-13 05:38:05 +00:00
|
|
|
* @return whether a block was changed
|
|
|
|
*/
|
2010-10-13 23:49:35 +00:00
|
|
|
private boolean setChanceBlockIfAir(Vector pos, BaseBlock block, double c)
|
2010-10-13 05:38:05 +00:00
|
|
|
throws MaxChangedBlocksException {
|
|
|
|
if (Math.random() <= c) {
|
2010-10-13 23:49:35 +00:00
|
|
|
return setBlockIfAir(pos, block);
|
2010-10-13 05:38:05 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-31 01:20:15 +00:00
|
|
|
/**
|
|
|
|
* Makes a pumpkin patch.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-31 01:20:15 +00:00
|
|
|
* @param basePos
|
|
|
|
*/
|
|
|
|
private void makePumpkinPatch(Vector basePos)
|
|
|
|
throws MaxChangedBlocksException {
|
2011-01-01 18:33:18 +00:00
|
|
|
// BaseBlock logBlock = new BaseBlock(17);
|
2010-10-31 01:20:15 +00:00
|
|
|
BaseBlock leavesBlock = new BaseBlock(18);
|
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
// setBlock(basePos.subtract(0, 1, 0), logBlock);
|
2010-10-31 01:20:15 +00:00
|
|
|
setBlockIfAir(basePos, leavesBlock);
|
|
|
|
|
|
|
|
makePumpkinPatchVine(basePos, basePos.add(0, 0, 1));
|
|
|
|
makePumpkinPatchVine(basePos, basePos.add(0, 0, -1));
|
|
|
|
makePumpkinPatchVine(basePos, basePos.add(1, 0, 0));
|
|
|
|
makePumpkinPatchVine(basePos, basePos.add(-1, 0, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make a pumpkin patch fine.
|
|
|
|
*
|
|
|
|
* @param basePos
|
|
|
|
* @param pos
|
|
|
|
*/
|
|
|
|
private void makePumpkinPatchVine(Vector basePos, Vector pos)
|
|
|
|
throws MaxChangedBlocksException {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (pos.distance(basePos) > 4)
|
|
|
|
return;
|
|
|
|
if (getBlock(pos).getID() != 0)
|
|
|
|
return;
|
2010-10-31 01:20:15 +00:00
|
|
|
|
|
|
|
for (int i = -1; i > -3; i--) {
|
|
|
|
Vector testPos = pos.add(0, i, 0);
|
|
|
|
if (getBlock(testPos).getID() == 0) {
|
|
|
|
pos = testPos;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setBlockIfAir(pos, new BaseBlock(18));
|
|
|
|
|
|
|
|
int t = prng.nextInt(4);
|
|
|
|
int h = prng.nextInt(3) - 1;
|
|
|
|
|
|
|
|
if (t == 0) {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (prng.nextBoolean())
|
|
|
|
makePumpkinPatchVine(basePos, pos.add(1, 0, 0));
|
|
|
|
if (prng.nextBoolean())
|
|
|
|
setBlockIfAir(pos.add(1, h, -1), new BaseBlock(18));
|
2010-10-31 01:20:15 +00:00
|
|
|
setBlockIfAir(pos.add(0, 0, -1), new BaseBlock(86));
|
|
|
|
} else if (t == 1) {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (prng.nextBoolean())
|
|
|
|
makePumpkinPatchVine(basePos, pos.add(0, 0, 1));
|
|
|
|
if (prng.nextBoolean())
|
|
|
|
setBlockIfAir(pos.add(1, h, 0), new BaseBlock(18));
|
2010-10-31 01:20:15 +00:00
|
|
|
setBlockIfAir(pos.add(1, 0, 1), new BaseBlock(86));
|
|
|
|
} else if (t == 2) {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (prng.nextBoolean())
|
|
|
|
makePumpkinPatchVine(basePos, pos.add(0, 0, -1));
|
|
|
|
if (prng.nextBoolean())
|
|
|
|
setBlockIfAir(pos.add(-1, h, 0), new BaseBlock(18));
|
2010-10-31 01:20:15 +00:00
|
|
|
setBlockIfAir(pos.add(-1, 0, 1), new BaseBlock(86));
|
|
|
|
} else if (t == 3) {
|
2011-01-01 18:33:18 +00:00
|
|
|
if (prng.nextBoolean())
|
|
|
|
makePumpkinPatchVine(basePos, pos.add(-1, 0, 0));
|
|
|
|
if (prng.nextBoolean())
|
|
|
|
setBlockIfAir(pos.add(-1, h, -1), new BaseBlock(18));
|
2010-10-31 01:20:15 +00:00
|
|
|
setBlockIfAir(pos.add(-1, 0, -1), new BaseBlock(86));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes pumpkin patches.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-10-31 01:20:15 +00:00
|
|
|
* @param basePos
|
|
|
|
* @param size
|
|
|
|
* @return number of trees created
|
|
|
|
*/
|
|
|
|
public int makePumpkinPatches(Vector basePos, int size)
|
|
|
|
throws MaxChangedBlocksException {
|
|
|
|
int affected = 0;
|
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
for (int x = basePos.getBlockX() - size; x <= basePos.getBlockX()
|
|
|
|
+ size; x++) {
|
|
|
|
for (int z = basePos.getBlockZ() - size; z <= basePos.getBlockZ()
|
|
|
|
+ size; z++) {
|
2010-10-31 01:20:15 +00:00
|
|
|
// Don't want to be in the ground
|
|
|
|
if (!getBlock(new Vector(x, basePos.getBlockY(), z)).isAir())
|
|
|
|
continue;
|
|
|
|
// The gods don't want a pumpkin patch here
|
2011-01-01 18:33:18 +00:00
|
|
|
if (Math.random() < 0.98) {
|
|
|
|
continue;
|
|
|
|
}
|
2010-10-31 01:20:15 +00:00
|
|
|
|
|
|
|
for (int y = basePos.getBlockY(); y >= basePos.getBlockY() - 10; y--) {
|
|
|
|
// Check if we hit the ground
|
|
|
|
int t = getBlock(new Vector(x, y, z)).getID();
|
|
|
|
if (t == 2 || t == 3) {
|
|
|
|
makePumpkinPatch(new Vector(x, y + 1, z));
|
|
|
|
affected++;
|
|
|
|
break;
|
|
|
|
} else if (t != 0) { // Trees won't grow on this!
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
|
|
|
|
2010-10-13 05:38:05 +00:00
|
|
|
/**
|
2010-11-07 04:03:34 +00:00
|
|
|
* Makes a forest.
|
2010-10-13 05:38:05 +00:00
|
|
|
*
|
|
|
|
* @param basePos
|
|
|
|
* @param size
|
2010-11-07 04:03:34 +00:00
|
|
|
* @param density
|
|
|
|
* @param pineTree
|
2010-10-13 05:38:05 +00:00
|
|
|
* @return number of trees created
|
|
|
|
*/
|
2010-11-07 04:03:34 +00:00
|
|
|
public int makeForest(Vector basePos, int size, double density,
|
|
|
|
boolean pineTree) throws MaxChangedBlocksException {
|
2010-10-13 05:38:05 +00:00
|
|
|
int affected = 0;
|
2011-01-01 18:33:18 +00:00
|
|
|
|
|
|
|
for (int x = basePos.getBlockX() - size; x <= basePos.getBlockX()
|
|
|
|
+ size; x++) {
|
|
|
|
for (int z = basePos.getBlockZ() - size; z <= basePos.getBlockZ()
|
|
|
|
+ size; z++) {
|
2010-10-13 05:38:05 +00:00
|
|
|
// Don't want to be in the ground
|
2010-10-13 23:49:35 +00:00
|
|
|
if (!getBlock(new Vector(x, basePos.getBlockY(), z)).isAir())
|
|
|
|
continue;
|
2010-10-13 05:38:05 +00:00
|
|
|
// The gods don't want a tree here
|
2011-01-01 18:33:18 +00:00
|
|
|
if (Math.random() >= density) {
|
|
|
|
continue;
|
|
|
|
} // def 0.05
|
2010-10-13 05:38:05 +00:00
|
|
|
|
|
|
|
for (int y = basePos.getBlockY(); y >= basePos.getBlockY() - 10; y--) {
|
|
|
|
// Check if we hit the ground
|
2010-10-15 07:22:03 +00:00
|
|
|
int t = getBlock(new Vector(x, y, z)).getID();
|
2010-10-13 05:38:05 +00:00
|
|
|
if (t == 2 || t == 3) {
|
2010-11-07 04:03:34 +00:00
|
|
|
if (pineTree) {
|
|
|
|
makePineTree(new Vector(x, y + 1, z));
|
|
|
|
} else {
|
2011-01-01 18:33:18 +00:00
|
|
|
server.generateTree(this, world,
|
|
|
|
new Vector(x, y + 1, z));
|
2010-11-07 04:03:34 +00:00
|
|
|
}
|
2010-10-13 05:38:05 +00:00
|
|
|
affected++;
|
|
|
|
break;
|
|
|
|
} else if (t != 0) { // Trees won't grow on this!
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
2010-11-07 04:03:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes a terrible looking pine tree.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-11-07 04:03:34 +00:00
|
|
|
* @param basePos
|
|
|
|
*/
|
2011-01-01 18:33:18 +00:00
|
|
|
private void makePineTree(Vector basePos) throws MaxChangedBlocksException {
|
|
|
|
int trunkHeight = (int) Math.floor(Math.random() * 2) + 3;
|
|
|
|
int height = (int) Math.floor(Math.random() * 5) + 8;
|
2010-11-07 04:03:34 +00:00
|
|
|
|
|
|
|
BaseBlock logBlock = new BaseBlock(17);
|
|
|
|
BaseBlock leavesBlock = new BaseBlock(18);
|
|
|
|
|
|
|
|
// Create trunk
|
|
|
|
for (int i = 0; i < trunkHeight; i++) {
|
|
|
|
if (!setBlockIfAir(basePos.add(0, i, 0), logBlock)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move up
|
|
|
|
basePos = basePos.add(0, trunkHeight, 0);
|
|
|
|
|
|
|
|
// Create tree + leaves
|
|
|
|
for (int i = 0; i < height; i++) {
|
|
|
|
setBlockIfAir(basePos.add(0, i, 0), logBlock);
|
|
|
|
|
|
|
|
// Less leaves at these levels
|
|
|
|
double chance = ((i == 0 || i == height - 1) ? 0.6 : 1);
|
|
|
|
|
|
|
|
// Inner leaves
|
|
|
|
setChanceBlockIfAir(basePos.add(-1, i, 0), leavesBlock, chance);
|
|
|
|
setChanceBlockIfAir(basePos.add(1, i, 0), leavesBlock, chance);
|
|
|
|
setChanceBlockIfAir(basePos.add(0, i, -1), leavesBlock, chance);
|
|
|
|
setChanceBlockIfAir(basePos.add(0, i, 1), leavesBlock, chance);
|
|
|
|
setChanceBlockIfAir(basePos.add(1, i, 1), leavesBlock, chance);
|
|
|
|
setChanceBlockIfAir(basePos.add(-1, i, 1), leavesBlock, chance);
|
|
|
|
setChanceBlockIfAir(basePos.add(1, i, -1), leavesBlock, chance);
|
|
|
|
setChanceBlockIfAir(basePos.add(-1, i, -1), leavesBlock, chance);
|
|
|
|
|
|
|
|
if (!(i == 0 || i == height - 1)) {
|
|
|
|
for (int j = -2; j <= 2; j++) {
|
|
|
|
setChanceBlockIfAir(basePos.add(-2, i, j), leavesBlock, 0.6);
|
|
|
|
}
|
|
|
|
for (int j = -2; j <= 2; j++) {
|
|
|
|
setChanceBlockIfAir(basePos.add(2, i, j), leavesBlock, 0.6);
|
|
|
|
}
|
|
|
|
for (int j = -2; j <= 2; j++) {
|
|
|
|
setChanceBlockIfAir(basePos.add(j, i, -2), leavesBlock, 0.6);
|
|
|
|
}
|
|
|
|
for (int j = -2; j <= 2; j++) {
|
|
|
|
setChanceBlockIfAir(basePos.add(j, i, 2), leavesBlock, 0.6);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setBlockIfAir(basePos.add(0, height, 0), leavesBlock);
|
|
|
|
}
|
2010-11-17 06:59:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Count the number of blocks of a list of types in a region.
|
2011-01-01 18:33:18 +00:00
|
|
|
*
|
2010-11-17 06:59:53 +00:00
|
|
|
* @param region
|
|
|
|
* @param searchIDs
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public int countBlocks(Region region, Set<Integer> searchIDs) {
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
if (region instanceof CuboidRegion) {
|
|
|
|
// Doing this for speed
|
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
|
|
|
|
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minY = min.getBlockY();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxY = max.getBlockY();
|
|
|
|
int maxZ = max.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int y = minY; y <= maxY; y++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
|
|
|
Vector pt = new Vector(x, y, z);
|
|
|
|
|
|
|
|
if (searchIDs.contains(getBlock(pt).getID())) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (Vector pt : region) {
|
|
|
|
if (searchIDs.contains(getBlock(pt).getID())) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the block distribution inside a region.
|
|
|
|
*
|
|
|
|
* @param region
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public List<Countable<Integer>> getBlockDistribution(Region region) {
|
2011-01-01 18:33:18 +00:00
|
|
|
List<Countable<Integer>> distribution = new ArrayList<Countable<Integer>>();
|
|
|
|
Map<Integer, Countable<Integer>> map = new HashMap<Integer, Countable<Integer>>();
|
2010-11-17 06:59:53 +00:00
|
|
|
|
|
|
|
if (region instanceof CuboidRegion) {
|
|
|
|
// Doing this for speed
|
|
|
|
Vector min = region.getMinimumPoint();
|
|
|
|
Vector max = region.getMaximumPoint();
|
|
|
|
|
|
|
|
int minX = min.getBlockX();
|
|
|
|
int minY = min.getBlockY();
|
|
|
|
int minZ = min.getBlockZ();
|
|
|
|
int maxX = max.getBlockX();
|
|
|
|
int maxY = max.getBlockY();
|
|
|
|
int maxZ = max.getBlockZ();
|
|
|
|
|
|
|
|
for (int x = minX; x <= maxX; x++) {
|
|
|
|
for (int y = minY; y <= maxY; y++) {
|
|
|
|
for (int z = minZ; z <= maxZ; z++) {
|
|
|
|
Vector pt = new Vector(x, y, z);
|
|
|
|
|
|
|
|
int id = getBlock(pt).getID();
|
|
|
|
|
|
|
|
if (map.containsKey(id)) {
|
|
|
|
map.get(id).increment();
|
|
|
|
} else {
|
|
|
|
Countable<Integer> c = new Countable<Integer>(id, 1);
|
|
|
|
map.put(id, c);
|
|
|
|
distribution.add(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (Vector pt : region) {
|
|
|
|
int id = getBlock(pt).getID();
|
|
|
|
|
|
|
|
if (map.containsKey(id)) {
|
|
|
|
map.get(id).increment();
|
|
|
|
} else {
|
|
|
|
Countable<Integer> c = new Countable<Integer>(id, 1);
|
|
|
|
map.put(id, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Collections.sort(distribution);
|
2011-01-01 18:33:18 +00:00
|
|
|
// Collections.reverse(distribution);
|
2010-11-17 06:59:53 +00:00
|
|
|
|
|
|
|
return distribution;
|
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-11-21 21:58:05 +00:00
|
|
|
/**
|
|
|
|
* Returns the highest solid 'terrain' block which can occur naturally.
|
|
|
|
* Looks at: 1, 2, 3, 7, 12, 13, 14, 15, 16, 56, 73, 74, 87, 88, 89
|
|
|
|
*
|
|
|
|
* @param x
|
|
|
|
* @param z
|
2011-01-01 18:33:18 +00:00
|
|
|
* @param minY
|
|
|
|
* minimal height
|
|
|
|
* @param maxY
|
|
|
|
* maximal height
|
2010-11-21 21:58:05 +00:00
|
|
|
* @return height of highest block found or 'minY'
|
|
|
|
*/
|
|
|
|
|
2011-01-01 18:33:18 +00:00
|
|
|
public int getHighestTerrainBlock(int x, int z, int minY, int maxY) {
|
2010-11-21 21:58:05 +00:00
|
|
|
for (int y = maxY; y >= minY; y--) {
|
|
|
|
Vector pt = new Vector(x, y, z);
|
|
|
|
int id = getBlock(pt).getID();
|
|
|
|
|
|
|
|
if (id == 1 // stone
|
|
|
|
|| id == 2 // grass
|
|
|
|
|| id == 3 // dirt
|
|
|
|
|| id == 7 // bedrock
|
|
|
|
|| id == 12 // sand
|
|
|
|
|| id == 13 // gravel
|
|
|
|
// hell
|
|
|
|
|| id == 87 // netherstone
|
|
|
|
|| id == 88 // slowsand
|
|
|
|
|| id == 89 // lightstone
|
|
|
|
// ores
|
|
|
|
|| id == 14 // coal ore
|
|
|
|
|| id == 15 // iron ore
|
|
|
|
|| id == 16 // gold ore
|
|
|
|
|| id == 56 // diamond ore
|
|
|
|
|| id == 73 // redstone ore
|
|
|
|
|| id == 74 // redstone ore (active)
|
|
|
|
) {
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return minY;
|
|
|
|
}
|
2011-01-01 18:33:18 +00:00
|
|
|
|
2010-12-31 22:31:49 +00:00
|
|
|
/**
|
|
|
|
* Gets the list of missing blocks and clears the list for the next
|
|
|
|
* operation.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public Set<Integer> popMissingBlocks() {
|
|
|
|
Set<Integer> missingBlocks = this.missingBlocks;
|
|
|
|
this.missingBlocks = new HashSet<Integer>();
|
|
|
|
return missingBlocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the blockBag
|
|
|
|
*/
|
|
|
|
public BlockBag getBlockBag() {
|
|
|
|
return blockBag;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-01-01 18:33:18 +00:00
|
|
|
* @param blockBag
|
|
|
|
* the blockBag to set
|
2010-12-31 22:31:49 +00:00
|
|
|
*/
|
|
|
|
public void setBlockBag(BlockBag blockBag) {
|
|
|
|
this.blockBag = blockBag;
|
|
|
|
}
|
2010-10-02 21:52:42 +00:00
|
|
|
}
|