PocketMine-MP 5.33.2 git-1133d49c924b4358c79d44eeb97dcbf56cb4d1eb
Loading...
Searching...
No Matches
Hopper.php
1<?php
2
3/*
4 *
5 * ____ _ _ __ __ _ __ __ ____
6 * | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
7 * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
8 * | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
9 * |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * @author PocketMine Team
17 * @link http://www.pocketmine.net/
18 *
19 *
20 */
21
22declare(strict_types=1);
23
24namespace pocketmine\block;
25
28use pocketmine\block\utils\ContainerTrait;
30use pocketmine\block\utils\PoweredByRedstoneTrait;
31use pocketmine\block\utils\SupportType;
42
44 use ContainerTrait;
45 use PoweredByRedstoneTrait;
46
47 private Facing $facing = Facing::DOWN;
48
49 protected function describeBlockOnlyState(RuntimeDataDescriber $w) : void{
50 $w->facingExcept($this->facing, Facing::UP);
51 $w->bool($this->powered);
52 }
53
54 public function getFacing() : Facing{ return $this->facing; }
55
57 public function setFacing(Facing $facing) : self{
58 if($facing === Facing::UP){
59 throw new \InvalidArgumentException("Hopper may not face upward");
60 }
61 $this->facing = $facing;
62 return $this;
63 }
64
65 protected function recalculateCollisionBoxes() : array{
66 $result = [
67 AxisAlignedBB::one()->trimmedCopy(Facing::UP, 6 / 16) //the empty area around the bottom is currently considered solid
68 ];
69
70 foreach(Facing::HORIZONTAL as $f){ //add the frame parts around the bowl
71 $result[] = AxisAlignedBB::one()->trimmedCopy($f, 14 / 16);
72 }
73 return $result;
74 }
75
76 public function getSupportType(Facing $facing) : SupportType{
77 return match($facing){
78 Facing::UP => SupportType::FULL,
79 Facing::DOWN => $this->facing === Facing::DOWN ? SupportType::CENTER : SupportType::NONE,
80 default => SupportType::NONE
81 };
82 }
83
84 public function place(BlockTransaction $tx, Item $item, Block $blockReplace, Block $blockClicked, Facing $face, Vector3 $clickVector, ?Player $player = null) : bool{
85 $this->facing = $face === Facing::DOWN ? Facing::DOWN : Facing::opposite($face);
86
87 return parent::place($tx, $item, $blockReplace, $blockClicked, $face, $clickVector, $player);
88 }
89
90 protected function newMenu(Player $player, Inventory $inventory, Position $position) : InventoryWindow{
91 return new HopperInventoryWindow($player, $inventory, $position);
92 }
93
94 public function onScheduledUpdate() : void{
95 //TODO
96 }
97
98 //TODO: redstone logic, sucking logic
99}
setFacing(Facing $facing)
Definition Hopper.php:57
describeBlockOnlyState(RuntimeDataDescriber $w)
Definition Hopper.php:49
getSupportType(Facing $facing)
Definition Hopper.php:76
place(BlockTransaction $tx, Item $item, Block $blockReplace, Block $blockClicked, Facing $face, Vector3 $clickVector, ?Player $player=null)
Definition Hopper.php:84