public class Chunk
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
biome
Current biome ID
|
short[] |
blockData
Converted block data, flattened 20 x 68 x 20 (X x Y x Z) array
|
int |
cx
Chunk offset x
|
int |
cy
Chunk offset y
|
int |
cz
Chunk offset z
|
byte[] |
terrainData
Converted terrain data, flattened 20 x 68 x 20 (X x Y x Z) array
|
Constructor and Description |
---|
Chunk(int cx,
int cy,
int cz,
int biome,
short[] blockData,
byte[] terrainData)
Creates a new chunk object.
|
Modifier and Type | Method and Description |
---|---|
int |
getBiome()
Gets the biome ID of this chunk.
|
short |
getBlockID(int x,
int y,
int z)
Gets the block ID at a certain position.
|
int |
getRawArrayIndex(int x,
int y,
int z)
Calculates the index in order to access the terrain / block arrays directly.
|
byte |
getTerrainID(int x,
int y,
int z)
Gets the terrain ID at a certain position.
|
void |
setBiome(int newBiomeID)
Sets the new biome ID.
|
public int cx
public int cy
public int cz
public int biome
public short[] blockData
public byte[] terrainData
public Chunk(int cx, int cy, int cz, int biome, short[] blockData, byte[] terrainData)
cx
- the x chunk offset.cy
- the y chunk offset.cz
- the z chunk offset.biome
- biome ID.blockData
- a short-array representing the converted block data.terrainData
- a byte-array representing the converted terrain data.public int getBiome()
public void setBiome(int newBiomeID)
newBiomeID
- the new biome ID.public byte getTerrainID(int x, int y, int z)
x
- the x block position.y
- the y block position.z
- the z block position.public short getBlockID(int x, int y, int z)
x
- the x block position.y
- the y block position.z
- the z block position.public int getRawArrayIndex(int x, int y, int z)
getRawArrayIndex(0+2, 0+2, 0+2);
x
- the x index.y
- the y index.z
- the z index.blockData
as well as for the terrainData
array.