PocketMine-MP 5.21.2 git-a6534ecbbbcf369264567d27e5ed70f7f5be9816
Loading...
Searching...
No Matches
ItemStackResponseContainerInfo.php
1<?php
2
3/*
4 * This file is part of BedrockProtocol.
5 * Copyright (C) 2014-2022 PocketMine Team <https://github.com/pmmp/BedrockProtocol>
6 *
7 * BedrockProtocol is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 */
12
13declare(strict_types=1);
14
15namespace pocketmine\network\mcpe\protocol\types\inventory\stackresponse;
16
19use function count;
20
25 public function __construct(
26 private FullContainerName $containerName,
27 private array $slots
28 ){}
29
30 public function getContainerName() : FullContainerName{ return $this->containerName; }
31
33 public function getSlots() : array{ return $this->slots; }
34
35 public static function read(PacketSerializer $in) : self{
36 $containerName = FullContainerName::read($in);
37 $slots = [];
38 for($i = 0, $len = $in->getUnsignedVarInt(); $i < $len; ++$i){
39 $slots[] = ItemStackResponseSlotInfo::read($in);
40 }
41 return new self($containerName, $slots);
42 }
43
44 public function write(PacketSerializer $out) : void{
45 $this->containerName->write($out);
46 $out->putUnsignedVarInt(count($this->slots));
47 foreach($this->slots as $slot){
48 $slot->write($out);
49 }
50 }
51}