public class Area
extends java.lang.Object
Area
describes an area in the game world. It has a start
and end position, which are usually determined by block positions within
a specific chunk (offset).Modifier and Type | Field and Description |
---|---|
static Area |
INFINITE
An "infinite" area (more precisely, the largest possible area).
|
Constructor and Description |
---|
Area()
Creates an "empty" Area.
|
Area(Area area)
Creates an Area with the same size as the provided Area.
|
Area(int minX,
int minY,
int minZ,
int maxX,
int maxY,
int maxZ)
Creates a new area from global min-/max-coordinates.
|
Area(int startcX,
int startcY,
int startcZ,
int startbX,
int startbY,
int startbZ,
int endcX,
int endcY,
int endcZ,
int endbX,
int endbY,
int endbZ)
Creates a new area.
|
Area(Vector3f globalStartPosition,
Vector3f globalEndPosition)
Creates a new area from global positions.
|
Area(Vector3i startChunk,
Vector3i startBlock,
Vector3i endChunk,
Vector3i endBlock)
Creates a new area.
|
Modifier and Type | Method and Description |
---|---|
void |
deleteAttribute(java.lang.String key)
Removes an attribute from this area.
|
boolean |
equals(java.lang.Object o) |
java.lang.Object |
getAttribute(java.lang.String key)
Gets the value to which the specified key is mapped,
or null if no attribute is stored for that key.
|
Vector3i |
getEndBlockPosition() |
Vector3i |
getEndChunkPosition() |
int |
getID()
Gets the internal unique id of this area (this id is only unique during
runtime).
|
Vector3i |
getStartBlockPosition() |
Vector3i |
getStartChunkPosition() |
boolean |
hasAttribute(java.lang.String key)
Gets whether or not the provided attribute exists.
|
int |
hashCode() |
boolean |
intersects(Area area)
Checks whether or not the provided area intersects this area.
|
boolean |
isPointInArea(float x,
float y,
float z)
Gets whether or not the provided position is inside this area.
|
boolean |
isPointInArea(int chunkx,
int chunky,
int chunkz,
int blockx,
int blocky,
int blockz)
Gets whether or not the provided position (chunkcoordinate + block position)
is inside this area.
|
boolean |
isPointInArea(Vector3f point)
Gets whether or not the point is inside this area.
|
boolean |
rearrange()
Rearranges the values of this
Area , i.e. the start position
will be compared with the end position, and if the start position is
less than the end position, the values will be swapped. |
void |
set(int minX,
int minY,
int minZ,
int maxX,
int maxY,
int maxZ)
Changes the area start and end positions.
|
void |
set(int startcX,
int startcY,
int startcZ,
int startbX,
int startbY,
int startbZ,
int endcX,
int endcY,
int endcZ,
int endbX,
int endbY,
int endbZ) |
void |
set(Vector3f globalStartPosition,
Vector3f globalEndPosition)
Changes start and end position of this area by getting the coordinates from
global positions.
|
void |
set(Vector3i startChunk,
Vector3i startBlock,
Vector3i endChunk,
Vector3i endBlock)
Changes the start and end positions of this area.
|
void |
setAttribute(java.lang.String key,
java.lang.Object value)
Stores an attribute for this area.
|
java.lang.String |
toString()
Gets a String representation of this area.
|
public static final Area INFINITE
public Area()
public Area(Area area)
area
- the Area you want this Area to be adapted to.public Area(Vector3i startChunk, Vector3i startBlock, Vector3i endChunk, Vector3i endBlock)
startChunk
- the start chunk offset.startBlock
- the start block position within the start chunk.endChunk
- the end chunk offset.endBlock
- the end block position within the end chunk.public Area(int startcX, int startcY, int startcZ, int startbX, int startbY, int startbZ, int endcX, int endcY, int endcZ, int endbX, int endbY, int endbZ)
startcX
- the start chunk x offset.startcY
- the start chunk y offset.startcZ
- the start chunk z offset.startbX
- the start block x position within the start chunk.startbY
- the start block y position within the start chunk.startbZ
- the start block z position within the start chunk.endcX
- the end chunk x offset.endcY
- the end chunk y offset.endcZ
- the end chunk z offset.endbX
- the end block x position within the end chunk.endbY
- the end block y position within the end chunk.endbZ
- the end block z position within the end chunk.public Area(int minX, int minY, int minZ, int maxX, int maxY, int maxZ)
minX
- global start x position of the area.minY
- global start y position of the area.minZ
- global start z position of the area.maxX
- global end x position of the area.maxY
- global end y position of the area.maxZ
- global end z position of the area.public Area(Vector3f globalStartPosition, Vector3f globalEndPosition)
globalStartPosition
- the global start position of the area.globalEndPosition
- the global end position of the area.public void set(Vector3i startChunk, Vector3i startBlock, Vector3i endChunk, Vector3i endBlock)
startChunk
- the new start chunk offset.startBlock
- the new start block position within the start chunk.endChunk
- the new end chunk offset.endBlock
- the new end block position within the end chunk.public void set(int startcX, int startcY, int startcZ, int startbX, int startbY, int startbZ, int endcX, int endcY, int endcZ, int endbX, int endbY, int endbZ)
public void set(int minX, int minY, int minZ, int maxX, int maxY, int maxZ)
minX
- the new global start x position of the area.minY
- the new global start y position of the area.minZ
- the new global start z position of the area.maxX
- the new global end x position of the area.maxY
- the new global end y position of the area.maxZ
- the new global end z position of the area.public void set(Vector3f globalStartPosition, Vector3f globalEndPosition)
globalStartPosition
- the new global start position of the area.globalEndPosition
- the new global end position of the area.public Vector3i getStartChunkPosition()
public Vector3i getStartBlockPosition()
public Vector3i getEndChunkPosition()
public Vector3i getEndBlockPosition()
public int getID()
public boolean rearrange()
Area
, i.e. the start position
will be compared with the end position, and if the start position is
less than the end position, the values will be swapped.public boolean isPointInArea(Vector3f point)
point
- a global world position (as a Vector3f)public boolean isPointInArea(int chunkx, int chunky, int chunkz, int blockx, int blocky, int blockz)
chunkx
- the chunk x position of the point.chunky
- the chunk y position of the point.chunkz
- the chunk z position of the point.blockx
- the block x position of the point.blocky
- the block y position of the point.blockz
- the block z position of the point.public boolean isPointInArea(float x, float y, float z)
x
- the global x world position.y
- the global y world position.z
- the global z world position.public boolean intersects(Area area)
area
- the area you want to check.public void setAttribute(java.lang.String key, java.lang.Object value)
key
- the name of the attribute.value
- the value/object you want to store.public java.lang.Object getAttribute(java.lang.String key)
key
- the name of the attribute.public boolean hasAttribute(java.lang.String key)
key
- the name of the attribute.public void deleteAttribute(java.lang.String key)
key
- the name of the attribute you want to delete.public java.lang.String toString()
toString
in class java.lang.Object
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object