Package net.glowstone.block.blocktype
Class BlockChest
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockContainer
net.glowstone.block.blocktype.BlockChest
-
Nested Class Summary
Nested classes/interfaces inherited from class net.glowstone.block.itemtype.ItemType
ItemType.Context -
Field Summary
Fields inherited from class net.glowstone.block.blocktype.BlockType
ADJACENT, drops, placeSound, SIDES, soundGroup -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanblockInteract(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.util.Vector clickedLoc) Called when a player attempts to interact with (right-click) a block of this type already in the world.booleancanPlaceAt(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace against) Check whether the block can be placed at the given location.createBlockEntity(GlowChunk chunk, int cx, int cy, int cz) Create a new block entity at the given location.org.bukkit.block.BlockFaceGet the other half of a chest, or null if the given chest isn't part of a double chest.voidplaceBlock(GlowPlayer player, GlowBlockState state, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding, org.bukkit.util.Vector clickedLoc) Called when a block is placed to calculate what the block will become.Methods inherited from class net.glowstone.block.blocktype.BlockContainer
getBlockDrops, getContentDrops, getDrops, getMinedDrops, getNeededMiningToolMethods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, afterPlace, blockDestroy, canAbsorb, canOverride, canTickRandomly, getCastedBlockData, getOppositeBlockFace, getPlaceAs, getPlaceSound, getPulseTickSpeed, getSoundGroup, isPulseOnce, leftClickBlock, onBlockChanged, onEntityStep, onNearBlockChanged, onRedstoneUpdate, receivePulse, requestPulse, rightClickBlock, setDrops, setPlaceSound, updateBlock, updatePhysics, updatePhysicsAfterEvent, warnMaterialDataMethods inherited from class net.glowstone.block.itemtype.ItemType
getContext, getMaterial, getMaterials, getMaxStackSize, rightClickAir, setMaterial, setMaxStackSize, setPlaceAs, setPlaceAs, toString
-
Constructor Details
-
BlockChest
public BlockChest() -
BlockChest
public BlockChest(boolean isTrapped)
-
-
Method Details
-
createBlockEntity
Description copied from class:BlockTypeCreate a new block entity at the given location.- Overrides:
createBlockEntityin classBlockType- Parameters:
chunk- The chunk to create the block entity at.cx- The x coordinate in the chunk.cy- The y coordinate in the chunk.cz- The z coordinate in the chunk.- Returns:
- The new BlockEntity, or null if no block entity is used.
-
placeBlock
public void placeBlock(GlowPlayer player, GlowBlockState state, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding, org.bukkit.util.Vector clickedLoc) Description copied from class:BlockTypeCalled when a block is placed to calculate what the block will become.- Overrides:
placeBlockin classBlockType- Parameters:
player- the player who placed the blockstate- the BlockState to editface- the face off which the block is being placedholding- the ItemStack that was being heldclickedLoc- where in the block the click occurred
-
blockInteract
public boolean blockInteract(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.util.Vector clickedLoc) Description copied from class:BlockTypeCalled when a player attempts to interact with (right-click) a block of this type already in the world.- Overrides:
blockInteractin classBlockContainer- Parameters:
player- the player interactingblock- the block interacted withface- the clicked faceclickedLoc- where in the block the click occurred- Returns:
- Whether the interaction occurred.
-
canPlaceAt
Description copied from class:BlockTypeCheck whether the block can be placed at the given location.- Overrides:
canPlaceAtin classBlockType- Parameters:
player- The player who placed the block.block- The location the block is being placed at.against- The face the block is being placed against.- Returns:
- Whether the placement is valid.
-
getAttachedChest
Get the other half of a chest, or null if the given chest isn't part of a double chest.- Parameters:
me- a chest block- Returns:
- the other half of the double chest if
meis part of one; null otherwise
-