Package net.glowstone.block.blocktype
Class BlockFurnace
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockContainer
net.glowstone.block.blocktype.BlockFurnace
-
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 TypeMethodDescriptioncreateBlockEntity(GlowChunk chunk, int cx, int cy, int cz) Create a new block entity at the given location.protected MaterialMatchergetNeededMiningTool(GlowBlock block) intgetPulseTickSpeed(GlowBlock block) The rate at which the block should be pulsed.booleanisPulseOnce(GlowBlock block) Whether the block should only be pulsed once.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.voidreceivePulse(GlowBlock block) Called when the BlockType gets pulsed as requested.Methods inherited from class net.glowstone.block.blocktype.BlockContainer
blockInteract, getBlockDrops, getContentDrops, getDrops, getMinedDropsMethods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, afterPlace, blockDestroy, canAbsorb, canOverride, canPlaceAt, canTickRandomly, getCastedBlockData, getOppositeBlockFace, getPlaceAs, getPlaceSound, getSoundGroup, leftClickBlock, onBlockChanged, onEntityStep, onNearBlockChanged, onRedstoneUpdate, 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
-
BlockFurnace
public BlockFurnace()
-
-
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
-
getNeededMiningTool
- Overrides:
getNeededMiningToolin classBlockContainer
-
receivePulse
Description copied from class:BlockTypeCalled when the BlockType gets pulsed as requested.- Overrides:
receivePulsein classBlockType- Parameters:
block- The block that was pulsed
-
getPulseTickSpeed
Description copied from class:BlockTypeThe rate at which the block should be pulsed.- Overrides:
getPulseTickSpeedin classBlockType- Parameters:
block- the block- Returns:
- 0 if the block should not pulse, or a number of ticks between pulses.
-
isPulseOnce
Description copied from class:BlockTypeWhether the block should only be pulsed once.- Overrides:
isPulseOncein classBlockType- Parameters:
block- the block- Returns:
- true if the block should be pulsed once, false otherwise.
-