Class MultiStageReorder

All Implemented Interfaces:
Extent, InputExtent, OutputExtent, ReorderingExtent

@Deprecated public class MultiStageReorder extends AbstractBufferingExtent implements ReorderingExtent
Re-orders blocks into several stages.
  • Constructor Details

    • MultiStageReorder

      public MultiStageReorder(Extent extent)
      Deprecated.
      Create a new instance when the re-ordering is enabled.
      Parameters:
      extent - the extent
    • MultiStageReorder

      public MultiStageReorder(Extent extent, boolean enabled)
      Deprecated.
      Create a new instance.
      Parameters:
      extent - the extent
      enabled - true to enable
  • Method Details

    • isEnabled

      public boolean isEnabled()
      Deprecated.
      Return whether re-ordering is enabled.
      Returns:
      true if re-ordering is enabled
    • setEnabled

      public void setEnabled(boolean enabled)
      Deprecated.
      Set whether re-ordering is enabled.
      Parameters:
      enabled - true if re-ordering is enabled
    • commitRequired

      public boolean commitRequired()
      Deprecated.
    • setBlock

      public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B block) throws WorldEditException
      Deprecated.
      Description copied from interface: OutputExtent
      Change the block at the given location to the given block. The operation may not tie the given 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.

      Specified by:
      setBlock in interface OutputExtent
      Specified by:
      setBlock in class AbstractBufferingExtent
      Parameters:
      location - position of the block
      block - block to set
      Returns:
      true if the block was successfully set (return value may not be accurate)
      Throws:
      WorldEditException - thrown on an error
    • getBufferedFullBlock

      protected BaseBlock getBufferedFullBlock(BlockVector3 position)
      Deprecated.
      Description copied from class: AbstractBufferingExtent
      Gets a block from the buffer, or null if not buffered.
      Overrides:
      getBufferedFullBlock in class AbstractBufferingExtent
      Parameters:
      position - The position
      Returns:
      The buffered block, or null
    • commitBefore

      public Operation commitBefore()
      Deprecated.
      Overrides:
      commitBefore in class AbstractDelegateExtent