Class BlockArrayClipboard
- All Implemented Interfaces:
Clipboard
,Extent
,InputExtent
,OutputExtent
BaseBlock
s and
other data as lists or maps.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncommit()
Return anOperation
that should be called to tie up loose ends (such as to commit changes in a buffer).createEntity
(Location location, BaseEntity entity) Create an entity at the given location.getBiome
(BlockVector3 position) Get the biome at the given location.getBlock
(BlockVector3 position) Get a snapshot of the block at the given location.Get the dimensions of the copy, which is at minimum (1, 1, 1).Get a list of all entities.getEntities
(Region region) Get a list of all entities within the given region.getFullBlock
(BlockVector3 position) Get a immutable snapshot of the block at the given location.Get the maximum point in the extent.Get the minimum point in the extent.Get the origin point from which the copy was made from.Get the bounding region of this extent.boolean
Returns true if the clipboard has biome data.boolean
setBiome
(BlockVector3 position, BiomeType biome) Set the biome.<B extends BlockStateHolder<B>>
booleansetBlock
(BlockVector3 position, B block) Change the block at the given location to the given block.void
setOrigin
(BlockVector3 origin) Set the origin point from which the copy was made from.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.sk89q.worldedit.extent.InputExtent
getBiome
Methods inherited from interface com.sk89q.worldedit.extent.OutputExtent
fullySupports3DBiomes, setBiome
-
Constructor Details
-
BlockArrayClipboard
Create a new instance.The origin will be placed at the region's lowest minimum point.
- Parameters:
region
- the bounding region
-
-
Method Details
-
getRegion
Description copied from interface:Clipboard
Get the bounding region of this extent.Implementations should return a copy of the region.
-
getOrigin
Description copied from interface:Clipboard
Get the origin point from which the copy was made from. -
setOrigin
Description copied from interface:Clipboard
Set the origin point from which the copy was made from. -
getDimensions
Description copied from interface:Clipboard
Get the dimensions of the copy, which is at minimum (1, 1, 1).- Specified by:
getDimensions
in interfaceClipboard
- Returns:
- the dimensions
-
getMinimumPoint
Description copied from interface:Extent
Get the minimum point in the extent.If the extent is unbounded, then a large (negative) value may be returned.
- Specified by:
getMinimumPoint
in interfaceExtent
- Returns:
- the minimum point
-
getMaximumPoint
Description copied from interface:Extent
Get the maximum point in the extent.If the extent is unbounded, then a large (positive) value may be returned.
- Specified by:
getMaximumPoint
in interfaceExtent
- Returns:
- the maximum point
-
getEntities
Description copied from interface:Extent
Get a list of all entities within the given region.If the extent is not wholly loaded (i.e. a world being simulated in the game will not have every chunk loaded), then this list may not be incomplete.
- Specified by:
getEntities
in interfaceExtent
- Parameters:
region
- the region in which entities must be contained- Returns:
- a list of entities
-
getEntities
Description copied from interface:Extent
Get a list of all entities.If the extent is not wholly loaded (i.e. a world being simulated in the game will not have every chunk loaded), then this list may not be incomplete.
- Specified by:
getEntities
in interfaceExtent
- Returns:
- a list of entities
-
createEntity
Description copied from interface:Extent
Create an entity at the given location.- Specified by:
createEntity
in interfaceExtent
- Parameters:
location
- the locationentity
- the entity- Returns:
- a reference to the created entity, or null if the entity could not be created
-
getBlock
Description copied from interface:InputExtent
Get a snapshot of the block at the given location.If the given position is out of the bounds of the extent, then the behavior is undefined (an air block could be returned). However,
null
should not be returned.The returned block is immutable and is a snapshot of the block at the time of call. It has no position attached to it, so it could be reused in
Pattern
s and so on.- Specified by:
getBlock
in interfaceInputExtent
- Parameters:
position
- position of the block- Returns:
- the block
-
getFullBlock
Description copied from interface:InputExtent
Get a immutable snapshot of the block at the given location.- Specified by:
getFullBlock
in interfaceInputExtent
- Parameters:
position
- position of the block- Returns:
- the block
-
setBlock
public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 position, B block) throws WorldEditException Description copied from interface:OutputExtent
Change the block at the given location to the given block. The operation may not tie the givenBlockStateHolder
to the world, so future changes to theBlockStateHolder
do not affect the world until this method is called again.The return value of this method indicates whether the change was probably successful. It may not be successful if, for example, the location is out of the bounds of the extent. It may be unsuccessful if the block passed is the same as the one in the world. However, the return value is only an estimation and it may be incorrect, but it could be used to count, for example, the approximate number of changes.
- Specified by:
setBlock
in interfaceOutputExtent
- Parameters:
position
- position of the blockblock
- block to set- Returns:
- true if the block was successfully set (return value may not be accurate)
- Throws:
WorldEditException
- thrown on an error
-
hasBiomes
public boolean hasBiomes()Description copied from interface:Clipboard
Returns true if the clipboard has biome data. This can be checked sinceInputExtent.getBiome(BlockVector3)
strongly suggests returningBiomeTypes.OCEAN
instead ofnull
if biomes aren't present. -
getBiome
Description copied from interface:InputExtent
Get the biome at the given location.If there is no biome available, then the ocean biome should be returned.
As implementation varies per Minecraft version, this may not exactly get this positions biome. On versions prior to 1.15, this will get the entire column. On later versions it will get the 4x4x4 cube's biome.
- Specified by:
getBiome
in interfaceInputExtent
- Parameters:
position
- the (x, y, z) location to check the biome at- Returns:
- the biome at the location
-
setBiome
Description copied from interface:OutputExtent
Set the biome.As implementation varies per Minecraft version, this may set more than this position's biome. On versions prior to 1.15, this will set the entire column. On later versions it will set the 4x4x4 cube.
- Specified by:
setBiome
in interfaceOutputExtent
- Parameters:
position
- the (x, y, z) location to set the biome atbiome
- the biome to set to- Returns:
- true if the biome was successfully set (return value may not be accurate)
-
commit
Description copied from interface:OutputExtent
Return anOperation
that should be called to tie up loose ends (such as to commit changes in a buffer).- Specified by:
commit
in interfaceOutputExtent
- Returns:
- an operation or null if there is none to execute
-