Class ExtentBuffer
java.lang.Object
com.sk89q.worldedit.extent.AbstractDelegateExtent
com.sk89q.worldedit.extent.AbstractBufferingExtent
com.sk89q.worldedit.extent.buffer.ExtentBuffer
- All Implemented Interfaces:
Extent,InputExtent,OutputExtent
Buffers changes to an
Extent and allows retrieval of the changed blocks,
without modifying the underlying extent.-
Field Summary
Fields inherited from class com.sk89q.worldedit.extent.AbstractDelegateExtent
extent -
Constructor Summary
ConstructorsConstructorDescriptionExtentBuffer(Extent delegate) Create a new extent buffer that will buffer every change.ExtentBuffer(Extent delegate, Mask mask) Create a new extent buffer that will buffer changes that meet the criteria of the given mask. -
Method Summary
Modifier and TypeMethodDescriptionprotected BaseBlockgetBufferedFullBlock(BlockVector3 position) Gets a block from the buffer, or null if not buffered.<T extends BlockStateHolder<T>>
booleansetBlock(BlockVector3 location, T block) Change the block at the given location to the given block.Methods inherited from class com.sk89q.worldedit.extent.AbstractBufferingExtent
getBlock, getBufferedBlock, getFullBlock, setDelegateBlockMethods inherited from class com.sk89q.worldedit.extent.AbstractDelegateExtent
addPostProcessor, addProcessor, apply, cancel, commit, commitBefore, countBlocks, countBlocks, createEntity, createEntity, disableHistory, disableQueue, enableQueue, fullySupports3DBiomes, getBiome, getBiomeType, getBlock, getBlockDistribution, getBlockDistributionWithData, getBrightness, getEmittedLight, getEntities, getEntities, getExtent, getFullBlock, getMaximumPoint, getMaxY, getMinimumPoint, getMinY, getSkyLight, isQueueEnabled, isWorld, relight, relightBlock, relightSky, removeEntity, replaceBlocks, replaceBlocks, replaceBlocks, setBiome, setBiome, setBlock, setBlockLight, setBlocks, setBlocks, setBlocks, setChangeSet, setSkyLight, tile, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface com.sk89q.worldedit.extent.Extent
addCaves, addOre, addOres, addSchems, apply, center, contains, contains, enableHistory, generate, getHighestTerrainBlock, getHighestTerrainBlock, getNearestSurfaceLayer, getNearestSurfaceTerrainBlock, getNearestSurfaceTerrainBlock, getNearestSurfaceTerrainBlock, getNearestSurfaceTerrainBlock, getNearestSurfaceTerrainBlock, lazyCopy, regenerateChunk, spawnResourceMethods inherited from interface com.sk89q.worldedit.extent.InputExtent
getBiome, getBrightness, getEmittedLight, getHeightMap, getOpacity, getOpacity, getSkyLightMethods inherited from interface com.sk89q.worldedit.extent.OutputExtent
setBiome, setBlockLight, setHeightMap, setSkyLight, setTile
-
Constructor Details
-
ExtentBuffer
Create a new extent buffer that will buffer every change.- Parameters:
delegate- the delegate extent forInputExtent.getBlock(BlockVector3), etc. calls
-
ExtentBuffer
Create a new extent buffer that will buffer changes that meet the criteria of the given mask.- Parameters:
delegate- the delegate extent forInputExtent.getBlock(BlockVector3), etc. callsmask- the mask
-
-
Method Details
-
getBufferedFullBlock
Description copied from class:AbstractBufferingExtentGets a block from the buffer, or null if not buffered.- Overrides:
getBufferedFullBlockin classAbstractBufferingExtent- Parameters:
position- The position- Returns:
- The buffered block, or null
-
setBlock
public <T extends BlockStateHolder<T>> boolean setBlock(BlockVector3 location, T block) throws WorldEditException Description copied from interface:OutputExtentChange the block at the given location to the given block. The operation may not tie the givenBlockStateHolderto the world, so future changes to theBlockStateHolderdo 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:
setBlockin interfaceOutputExtent- Specified by:
setBlockin classAbstractBufferingExtent- Parameters:
location- 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
-