use pocketmine\item\Item; use pocketmine\network\mcpe\handler\SessionHandler; use function count; class InventoryContentPacket extends DataPacket implements ClientboundPacket{ public const NETWORK_ID = ProtocolInfo::INVENTORY_CONTENT_PACKET; /** @var int */ public $windowId; /** @var Item[] */ public $items = []; /** * @param int $windowId * @param Item[] $items * * @return InventoryContentPacket */ public static function create(int $windowId, array $items) : self{ (function(Item ...$items){})(...$items); //type check $result = new self; $result->windowId = $windowId; $result->items = $items; return $result; } protected function decodePayload() : void{ $this->windowId = $this->getUnsignedVarInt(); $count = $this->getUnsignedVarInt(); for($i = 0; $i < $count; ++$i){ $this->items[] = $this->getSlot(); } } protected function encodePayload() : void{ $this->putUnsignedVarInt($this->windowId); $this->putUnsignedVarInt(count($this->items)); foreach($this->items as $item){ $this->putSlot($item); } } public function handle(SessionHandler $handler) : bool{ return $handler->handleInventoryContent($this); } }