public class WorldEditBatch
extends java.lang.Object
Constructor and Description |
---|
WorldEditBatch()
Creates a new
WorldEditBatch with a default batch size of 10 (i.e. |
WorldEditBatch(int initialCapacity)
Creates a new
WorldEditBatch with the given initial capacity,
in other words, the internal batch will be initialized with the specified
size, i.e. you can add that many block edit sequences before the internal
batch array will be resized. |
Modifier and Type | Method and Description |
---|---|
void |
addToBatch(int id,
int cx,
int cy,
int cz,
int bx,
int by,
int bz)
Adds a new "edit sequence" to the batch.
|
void |
addToBatch(int id,
Vector3f globalPosition)
Adds a new "edit sequence" to the batch.
|
void |
clearBatch()
Clears the batch.
|
int[] |
getBatchData()
Used internally.
|
int |
position()
Used internally.
|
void |
setBatchData(int[] data,
int pos)
Used internally.
|
int |
size()
Gets the current size of the batch.
|
public WorldEditBatch()
WorldEditBatch
with a default batch size of 10 (i.e.
you can add 10 block edit sequences before the internal batch array will be
resized.public WorldEditBatch(int initialCapacity)
WorldEditBatch
with the given initial capacity,
in other words, the internal batch will be initialized with the specified
size, i.e. you can add that many block edit sequences before the internal
batch array will be resized. It's hightly recommended to provide an accurate
(or at least approximate) capacity, in order to avoid unnecessary internal
array enlargements.initialCapacity
- the initial capacity, i.e. the initial size of the
batch.public void addToBatch(int id, Vector3f globalPosition)
id
- the block/terrain id (0 == air).globalPosition
- the global target position.addToBatch(int, int, int, int, int, int, int)
public void addToBatch(int id, int cx, int cy, int cz, int bx, int by, int bz)
id
- the block/terrain id (0 == air).cx
- the x chunk position.cy
- the y chunk position.cz
- the z chunk position.bx
- the x block position.by
- the y block position.bz
- the z block position.public void clearBatch()
public int size()
public int position()
public int[] getBatchData()
public void setBatchData(int[] data, int pos)
data
- the batch data.pos
- the current batch position.