PocketMine-MP 5.18.2 git-00e39821f06a4b6d728d35053c2621dbb19369ff
DeprecatedCraftingResultsStackRequestAction.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\stackrequest;
16
18use pocketmine\network\mcpe\protocol\types\GetTypeIdFromConstTrait;
20use function count;
21
27 use GetTypeIdFromConstTrait;
28
29 public const ID = ItemStackRequestActionType::CRAFTING_RESULTS_DEPRECATED_ASK_TY_LAING;
30
34 public function __construct(
35 private array $results,
36 private int $iterations
37 ){}
38
40 public function getResults() : array{ return $this->results; }
41
42 public function getIterations() : int{ return $this->iterations; }
43
44 public static function read(PacketSerializer $in) : self{
45 $results = [];
46 for($i = 0, $len = $in->getUnsignedVarInt(); $i < $len; ++$i){
47 $results[] = $in->getItemStackWithoutStackId();
48 }
49 $iterations = $in->getByte();
50 return new self($results, $iterations);
51 }
52
53 public function write(PacketSerializer $out) : void{
54 $out->putUnsignedVarInt(count($this->results));
55 foreach($this->results as $result){
56 $out->putItemStackWithoutStackId($result);
57 }
58 $out->putByte($this->iterations);
59 }
60}