PocketMine-MP 5.15.1 git-5ef247620a7c6301a849b54e5ef1009217729fc8
pocketmine\block\tile\BrewingStand Class Reference
+ Inheritance diagram for pocketmine\block\tile\BrewingStand:
+ Collaboration diagram for pocketmine\block\tile\BrewingStand:

Public Member Functions

 __construct (World $world, Vector3 $pos)
 
 canOpenWith (string $key)
 
 clearSpawnCompoundCache ()
 
 close ()
 
 copyDataFromItem (Item $item)
 
 getBlock ()
 
 getCleanedNBT ()
 
 getDefaultName ()
 
 getInventory ()
 
 getName ()
 
 getPosition ()
 
 getRealInventory ()
 
 getRenderUpdateBugWorkaroundStateProperties (Block $block)
 
 getSerializedSpawnCompound ()
 
 getSpawnCompound ()
 
 hasName ()
 
 isClosed ()
 
 isDirty ()
 
 onBlockDestroyed ()
 
 onUpdate ()
 
 readSaveData (CompoundTag $nbt)
 
 saveNBT ()
 
 setDirty (bool $dirty=true)
 
 setName (string $str)
 

Public Attributes

bool $closed = false
 
const BREW_TIME_TICKS = 400
 
const TAG_CUSTOM_NAME = "CustomName"
 
const TAG_ID = "id"
 
const TAG_ITEMS = "Items"
 
const TAG_LOCK = "Lock"
 
const TAG_X = "x"
 
const TAG_Y = "y"
 
const TAG_Z = "z"
 

Protected Member Functions

 addAdditionalSpawnData (CompoundTag $nbt)
 
 onBlockDestroyedHook ()
 
 writeSaveData (CompoundTag $nbt)
 

Protected Attributes

Position $position
 
TimingsHandler $timings
 

Detailed Description

Definition at line 43 of file tile/BrewingStand.php.

Constructor & Destructor Documentation

◆ __construct()

pocketmine\block\tile\BrewingStand::__construct ( World  $world,
Vector3  $pos 
)

Reimplemented from pocketmine\block\tile\Tile.

Definition at line 63 of file tile/BrewingStand.php.

Member Function Documentation

◆ addAdditionalSpawnData()

pocketmine\block\tile\BrewingStand::addAdditionalSpawnData ( CompoundTag  $nbt)
protected

An extension to getSpawnCompound() for further modifying the generic tile NBT.

Reimplemented from pocketmine\block\tile\Spawnable.

Definition at line 95 of file tile/BrewingStand.php.

◆ canOpenWith()

pocketmine\block\tile\Container::canOpenWith ( string  $key)
inherited

Returns whether this container can be opened by an item with the given custom name.

◆ clearSpawnCompoundCache()

pocketmine\block\tile\Spawnable::clearSpawnCompoundCache ( )
inherited

Definition at line 52 of file Spawnable.php.

◆ close()

pocketmine\block\tile\BrewingStand::close ( )

Reimplemented from pocketmine\block\tile\Tile.

Definition at line 107 of file tile/BrewingStand.php.

◆ copyDataFromItem()

pocketmine\block\tile\Tile::copyDataFromItem ( Item  $item)
inherited

Definition at line 92 of file Tile.php.

◆ getBlock()

pocketmine\block\tile\Tile::getBlock ( )
inherited

Definition at line 98 of file Tile.php.

◆ getCleanedNBT()

pocketmine\block\tile\Tile::getCleanedNBT ( )
inherited

Definition at line 82 of file Tile.php.

◆ getDefaultName()

pocketmine\block\tile\BrewingStand::getDefaultName ( )

Implements pocketmine\block\tile\Nameable.

Definition at line 103 of file tile/BrewingStand.php.

◆ getInventory()

pocketmine\block\tile\BrewingStand::getInventory ( )

Implements pocketmine\inventory\InventoryHolder.

Definition at line 115 of file tile/BrewingStand.php.

◆ getPosition()

pocketmine\block\tile\Tile::getPosition ( )
inherited

Definition at line 102 of file Tile.php.

◆ getRealInventory()

pocketmine\block\tile\BrewingStand::getRealInventory ( )

Implements pocketmine\block\tile\Container.

Definition at line 119 of file tile/BrewingStand.php.

◆ getRenderUpdateBugWorkaroundStateProperties()

pocketmine\block\tile\Spawnable::getRenderUpdateBugWorkaroundStateProperties ( Block  $block)
inherited

The Bedrock client won't re-render a block if the block's state properties didn't change. This is a problem when the tile may affect the block's appearance. For example, a cauldron's liquid changes colour based on the dye inside.

This is worked around in vanilla by modifying one of the block's state properties to a different value, and then changing it back again. Since we don't want to litter core implementation with hacks like this, we brush it under the rug into Tile.

Returns
ByteTag[]|IntTag[]|StringTag[] @phpstan-return array<string, IntTag|StringTag|ByteTag>

Reimplemented in pocketmine\block\tile\Cauldron, and pocketmine\block\tile\FlowerPot.

Definition at line 68 of file Spawnable.php.

◆ getSerializedSpawnCompound()

pocketmine\block\tile\Spawnable::getSerializedSpawnCompound ( )
finalinherited

Returns encoded NBT (varint, little-endian) used to spawn this tile to clients. Uses cache where possible, populates cache if it is null.

@phpstan-return CacheableNbt<\pocketmine\nbt\tag\CompoundTag>

Definition at line 78 of file Spawnable.php.

◆ getSpawnCompound()

pocketmine\block\tile\Spawnable::getSpawnCompound ( )
finalinherited

Definition at line 86 of file Spawnable.php.

◆ isClosed()

pocketmine\block\tile\Tile::isClosed ( )
inherited

Definition at line 106 of file Tile.php.

◆ isDirty()

pocketmine\block\tile\Spawnable::isDirty ( )
inherited
Deprecated:

Definition at line 41 of file Spawnable.php.

◆ onBlockDestroyed()

pocketmine\block\tile\Tile::onBlockDestroyed ( )
finalinherited

Called when the tile's block is destroyed.

Definition at line 117 of file Tile.php.

References pocketmine\block\tile\onBlockDestroyedHook().

+ Here is the call graph for this function:

◆ onBlockDestroyedHook()

pocketmine\block\tile\Tile::onBlockDestroyedHook ( )
protectedinherited

Override this method to do actions you need to do when this tile is destroyed due to block being broken.

Reimplemented in pocketmine\block\tile\Chest, pocketmine\block\tile\Jukebox, and pocketmine\block\tile\ShulkerBox.

Definition at line 125 of file Tile.php.

◆ onUpdate()

pocketmine\block\tile\BrewingStand::onUpdate ( )

Definition at line 166 of file tile/BrewingStand.php.

◆ readSaveData()

pocketmine\block\tile\BrewingStand::readSaveData ( CompoundTag  $nbt)

Reimplemented from pocketmine\block\tile\Tile.

Definition at line 71 of file tile/BrewingStand.php.

◆ saveNBT()

pocketmine\block\tile\Tile::saveNBT ( )
inherited

Definition at line 70 of file Tile.php.

◆ setDirty()

pocketmine\block\tile\Spawnable::setDirty ( bool  $dirty = true)
inherited
Deprecated:

Definition at line 48 of file Spawnable.php.

◆ writeSaveData()

pocketmine\block\tile\BrewingStand::writeSaveData ( CompoundTag  $nbt)
protected

Writes additional save data to a CompoundTag, not including generic things like ID and coordinates.

Reimplemented from pocketmine\block\tile\Tile.

Definition at line 86 of file tile/BrewingStand.php.

Member Data Documentation

◆ $closed

bool pocketmine\block\tile\Tile::$closed = false
inherited

Definition at line 50 of file Tile.php.

◆ $position

Position pocketmine\block\tile\Tile::$position
protectedinherited

Definition at line 49 of file Tile.php.

◆ $timings

TimingsHandler pocketmine\block\tile\Tile::$timings
protectedinherited

Definition at line 51 of file Tile.php.

◆ BREW_TIME_TICKS

const pocketmine\block\tile\BrewingStand::BREW_TIME_TICKS = 400

Definition at line 49 of file tile/BrewingStand.php.

◆ TAG_CUSTOM_NAME

const pocketmine\block\tile\Nameable::TAG_CUSTOM_NAME = "CustomName"
inherited

Definition at line 27 of file Nameable.php.

◆ TAG_ID

const pocketmine\block\tile\Tile::TAG_ID = "id"
inherited

Definition at line 44 of file Tile.php.

◆ TAG_ITEMS

const pocketmine\block\tile\Container::TAG_ITEMS = "Items"
inherited

Definition at line 30 of file Container.php.

◆ TAG_LOCK

const pocketmine\block\tile\Container::TAG_LOCK = "Lock"
inherited

Definition at line 31 of file Container.php.

◆ TAG_X

const pocketmine\block\tile\Tile::TAG_X = "x"
inherited

Definition at line 45 of file Tile.php.

◆ TAG_Y

const pocketmine\block\tile\Tile::TAG_Y = "y"
inherited

Definition at line 46 of file Tile.php.

◆ TAG_Z

const pocketmine\block\tile\Tile::TAG_Z = "z"
inherited

Definition at line 47 of file Tile.php.


The documentation for this class was generated from the following file: