public class ForgetfulExtentBuffer extends AbstractDelegateExtent implements Pattern, BiomePattern
Extent
and allows later retrieval for
actual application of the changes.
This buffer will not attempt to return results from the buffer when
accessor methods (such as AbstractDelegateExtent.getBlock(BlockVector3)
) are called.
Constructor and Description |
---|
ForgetfulExtentBuffer(Extent delegate)
Create a new extent buffer that will buffer every change.
|
ForgetfulExtentBuffer(Extent delegate,
Mask mask)
Create a new extent buffer that will buffer changes that meet the criteria
of the given mask.
|
Modifier and Type | Method and Description |
---|---|
BiomeType |
apply(BlockVector2 pos)
Return a
BiomeType for the given position. |
BaseBlock |
apply(BlockVector3 pos)
Return a
BlockStateHolder for the given position. |
Region |
asRegion()
Return a region representation of this buffer.
|
boolean |
setBiome(BlockVector2 position,
BiomeType biome)
Set the biome.
|
<B extends BlockStateHolder<B>> |
setBlock(BlockVector3 location,
B block)
Change the block at the given location to the given block.
|
commit, commitBefore, createEntity, getBiome, getBlock, getEntities, getEntities, getExtent, getFullBlock, getMaximumPoint, getMinimumPoint
public ForgetfulExtentBuffer(Extent delegate)
delegate
- the delegate extent for InputExtent.getBlock(BlockVector3)
, etc. callspublic ForgetfulExtentBuffer(Extent delegate, Mask mask)
delegate
- the delegate extent for InputExtent.getBlock(BlockVector3)
, etc. callsmask
- the maskpublic <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException
OutputExtent
BlockStateHolder
to the world, so future changes to the
BlockStateHolder
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.
setBlock
in interface OutputExtent
setBlock
in class AbstractDelegateExtent
location
- position of the blockblock
- block to setWorldEditException
- thrown on an errorpublic boolean setBiome(BlockVector2 position, BiomeType biome)
OutputExtent
setBiome
in interface OutputExtent
setBiome
in class AbstractDelegateExtent
position
- the (x, z) location to set the biome atbiome
- the biome to set topublic BaseBlock apply(BlockVector3 pos)
Pattern
BlockStateHolder
for the given position.public BiomeType apply(BlockVector2 pos)
BiomePattern
BiomeType
for the given position.apply
in interface BiomePattern
pos
- the positionpublic Region asRegion()