Package | Description |
---|---|
net.risingworld.api | |
net.risingworld.api.events.player | |
net.risingworld.api.objects | |
net.risingworld.api.utils |
Modifier and Type | Method and Description |
---|---|
int |
World.getBlockID(Vector3i chunkPosition,
Vector3i blockPosition)
Gets the block id at the given position.
|
int |
World.getTerrainID(Vector3i chunkPosition,
Vector3i blockPosition)
Gets the terrain id at the given position.
|
void |
World.placeBlock(int blockID,
Vector3i chunkPosition,
Vector3i blockPosition)
Places a block at the given position.
|
void |
World.placeObject(int objectID,
int variation,
Vector3i chunkPosition,
Vector3i blockPosition,
float rotationX,
float rotationY,
float rotationZ)
Creates a new object (e.g. furniture) at the given position.
|
void |
World.placeTerrain(int terrainID,
Vector3i chunkPosition,
Vector3i blockPosition)
Places "terrain" (e.g. stone, dirt, gravel, sand etc) at the given position.
|
void |
World.placeVegetation(int plantID,
Vector3i chunkPosition,
Vector3i blockPosition,
float rotationX,
float rotationY,
float rotationZ)
Creates a new plant at the given position.
|
void |
World.removeAllConstructionsInArea(Vector3i startChunkPosition,
Vector3i startBlockPosition,
Vector3i endChunkPosition,
Vector3i endBlockPosition)
Removes all constructions (e.g. planks, beams, windows etc.) inside the given area.
|
void |
World.removeAllObjectsInArea(Vector3i startChunkPosition,
Vector3i startBlockPosition,
Vector3i endChunkPosition,
Vector3i endBlockPosition)
Removes all objects (e.g. furniture, lamps etc.) inside the given area.
|
void |
World.removeAllVegetationsInArea(Vector3i startChunkPosition,
Vector3i startBlockPosition,
Vector3i endChunkPosition,
Vector3i endBlockPosition)
Removes all vegetations (plants, trees etc.) inside the given area.
|
void |
World.setBlockDataInArea(int blockID,
Vector3i startChunkPosition,
Vector3i startBlockPosition,
Vector3i endChunkPosition,
Vector3i endBlockPosition)
Sets the block id in the given area which is described by the start and
end position.
|
void |
World.setBlockDataInRadius(int blockID,
int radius,
Vector3i chunkPosition,
Vector3i blockPosition)
Sets the block id in the given radius (spherical).
|
void |
World.setTerrainDataInArea(int terrainID,
Vector3i startChunkPosition,
Vector3i startBlockPosition,
Vector3i endChunkPosition,
Vector3i endBlockPosition)
Sets the terrain id in the given area which is described by the start and
end position.
|
void |
World.setTerrainDataInRadius(int terrainID,
int radius,
Vector3i chunkPosition,
Vector3i blockPosition)
Sets the terrain id in the given radius (spherical).
|
Modifier and Type | Method and Description |
---|---|
Vector3i |
PlayerChangeBlockPositionEvent.getNewBlockPosition()
Gets the new block position of the player.
|
Vector3i |
PlayerEnterChunkEvent.getNewChunkCoordinates()
Gets the coordinates of the new chunk.
|
Vector3i |
PlayerChangeBlockPositionEvent.getOldBlockPosition()
Gets the old block position of the player.
|
Vector3i |
PlayerEnterChunkEvent.getOldChunkCoordinates()
Gets the coordinates of the old, previous chunk.
|
Constructor and Description |
---|
PlayerChangeBlockPositionEvent(Player player,
Vector3i newBlockPosition,
Vector3i oldBlockPosition) |
PlayerEnterChunkEvent(Player player,
Vector3i newChunk,
Vector3i oldChunk) |
Modifier and Type | Method and Description |
---|---|
Vector3i |
Player.getBlockPosition()
Gets a Vector3i containing the current block position (x, y and z)
of the player within the current chunk.
|
Vector3i |
Player.getChunkPosition()
Gets a Vector3i containing the x, y and z coordinates of
the current chunk the player is in.
|
Modifier and Type | Method and Description |
---|---|
void |
Player.setChunkAndBlockPosition(Vector3i chunkPosition,
Vector3i blockPosition)
Sets the chunk and block position of the player (resulting
in the total global position).
|
Modifier and Type | Field and Description |
---|---|
static Vector3i |
Vector3i.UNIT_X
A unit vector along the X axis
|
static Vector3i |
Vector3i.UNIT_Y
A unit vector along the Y axis
|
static Vector3i |
Vector3i.UNIT_Z
A unit vector along the Z axis
|
static Vector3i |
Vector3i.ZERO
A vector with values 0, 0, 0
|
Modifier and Type | Method and Description |
---|---|
Vector3i |
Vector3i.addLocal(int addX,
int addY,
int addZ)
Adds the provided values to the values of this vector.
|
Vector3i |
Vector3i.addLocal(Vector3i other)
Adds the values of the provided vector to the values of this vector.
|
Vector3i |
Vector3i.crossLocal(int v2x,
int v2y,
int v2z)
Calculates the cross product of this vector and the provided coordinates.
|
Vector3i |
Vector3i.crossLocal(Vector3i other)
Calculates the cross product of this vector and another vector.
|
Vector3i |
Vector3i.divideLocal(int scalar) |
Vector3i |
Vector3i.divideLocal(Vector3i other) |
static Vector3i |
Utils.ChunkUtils.getChunkPosition(float x,
float y,
float z)
Calculates a chunk offset from a given global position and stores the
result in a
Vector3i . |
static Vector3i |
Utils.ChunkUtils.getChunkPosition(float x,
float y,
float z,
Vector3i storeTo)
Calculates a chunk offset from a given global position and stores the
result in the provided
Vector3i . |
static Vector3i |
Utils.ChunkUtils.getChunkPosition(Vector3f globalPosition)
Calculates a chunk offset from a given global position and stores the
result in a
Vector3i . |
static Vector3i |
Utils.ChunkUtils.getChunkPosition(Vector3f globalPosition,
Vector3i storeTo)
Calculates a chunk offset from a given global position and stores the
result in the provided
Vector3i . |
Vector3i |
Area.getEndBlockPosition() |
Vector3i |
Area.getEndChunkPosition() |
Vector3i |
Area.getStartBlockPosition() |
Vector3i |
Area.getStartChunkPosition() |
Vector3i |
Vector3i.multLocal(int scalar)
Multiplies the values of this vector with the provided scalar.
|
Vector3i |
Vector3i.multLocal(int multX,
int multY,
int multZ)
Multiplies the values of this vector with the provided values.
|
Vector3i |
Vector3i.multLocal(Vector3i other)
Multiplies the values of this vector with the values of the provided vector.
|
Vector3i |
Vector3i.negateLocal()
Negates all values of this vector.
|
Vector3i |
Vector3i.normalizeLocal()
Normalizes this vector (i.e. turn it into a unit vector).
|
Vector3i |
Vector3i.set(int x,
int y,
int z)
Sets the x, y and z values of this vector to the provided int values.
|
Vector3i |
Vector3i.set(Vector3i vector)
Sets the x, y and z values of this vector to the values of the
provided vector.
|
Vector3i |
Vector3i.setX(int x)
Sets the x value of this vector.
|
Vector3i |
Vector3i.setY(int y)
Sets the y value of this vector.
|
Vector3i |
Vector3i.setZ(int z)
Sets the z value of this vector.
|
Vector3i |
Vector3i.subtractLocal(int subtractX,
int subtractY,
int subtractZ)
Subtracts the provided values from the values of this vector.
|
Vector3i |
Vector3i.subtractLocal(Vector3i other)
Subtracts the values of the provided vector from the values of this vector.
|
Vector3i |
Vector3i.zero()
Sets all values to 0 (same set
set(0, 0, 0); ). |
Modifier and Type | Method and Description |
---|---|
Vector3i |
Vector3i.addLocal(Vector3i other)
Adds the values of the provided vector to the values of this vector.
|
float |
Vector3i.angleBetween(Vector3i other)
Gets the angle between this vector and another vector.
|
Vector3i |
Vector3i.crossLocal(Vector3i other)
Calculates the cross product of this vector and another vector.
|
float |
Vector3i.distance(Vector3i other)
Gets the distance between this vector and another vector.
|
float |
Vector3i.distanceSquared(Vector3i other)
Gets the squared distance between this vector and another Vector3i.
|
Vector3i |
Vector3i.divideLocal(Vector3i other) |
float |
Vector3i.dot(Vector3i other)
Gets the dot product of this vector with the provided vector.
|
static void |
Utils.ChunkUtils.getChunkAndBlockPosition(float x,
float y,
float z,
Vector3i chunkPositionStore,
Vector3i blockPositionStore)
Calculates a chunk offset and the according block position (within this
chunk) from a given global position and stores the results in the provided
Vector3i's . |
static void |
Utils.ChunkUtils.getChunkAndBlockPosition(Vector3f globalPosition,
Vector3i chunkPositionStore,
Vector3i blockPositionStore)
Calculates a chunk offset and the according block position (within this
chunk) from a given global position and stores the results in the provided
Vector3i's . |
static Vector3i |
Utils.ChunkUtils.getChunkPosition(float x,
float y,
float z,
Vector3i storeTo)
Calculates a chunk offset from a given global position and stores the
result in the provided
Vector3i . |
static Vector3i |
Utils.ChunkUtils.getChunkPosition(Vector3f globalPosition,
Vector3i storeTo)
Calculates a chunk offset from a given global position and stores the
result in the provided
Vector3i . |
static Vector3f |
Utils.ChunkUtils.getGlobalPosition(Vector3i chunkPosition,
Vector3i blockPosition) |
static Vector3f |
Utils.ChunkUtils.getGlobalPosition(Vector3i chunkPosition,
Vector3i blockPosition,
Vector3f storeTo) |
boolean |
Vector3i.isOrthogonal(Vector3i other)
Checks if this vector is orthogonal to another vector (i.e. the angle
between both vectors is ~ 90° degree).
|
Vector3i |
Vector3i.multLocal(Vector3i other)
Multiplies the values of this vector with the values of the provided vector.
|
Vector3i |
Vector3i.set(Vector3i vector)
Sets the x, y and z values of this vector to the values of the
provided vector.
|
void |
Area.set(Vector3i startChunk,
Vector3i startBlock,
Vector3i endChunk,
Vector3i endBlock)
Changes the start and end positions of this area.
|
Vector3i |
Vector3i.subtractLocal(Vector3i other)
Subtracts the values of the provided vector from the values of this vector.
|
Constructor and Description |
---|
Area(Vector3i startChunk,
Vector3i startBlock,
Vector3i endChunk,
Vector3i endBlock)
Creates a new area.
|
Vector3i(Vector3i copy)
Creates a new Vector3i and copies the X, Y and Z values from the
provided vector.
|