PocketMine-MP 5.21.2 git-b2aa6396c3cc2cafdd815eacc360e1ad89599899
Loading...
Searching...
No Matches
ItemStackResponseSlotInfo.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
18
20 public function __construct(
21 private int $slot,
22 private int $hotbarSlot,
23 private int $count,
24 private int $itemStackId,
25 private string $customName,
26 private int $durabilityCorrection
27 ){}
28
29 public function getSlot() : int{ return $this->slot; }
30
31 public function getHotbarSlot() : int{ return $this->hotbarSlot; }
32
33 public function getCount() : int{ return $this->count; }
34
35 public function getItemStackId() : int{ return $this->itemStackId; }
36
37 public function getCustomName() : string{ return $this->customName; }
38
39 public function getDurabilityCorrection() : int{ return $this->durabilityCorrection; }
40
41 public static function read(PacketSerializer $in) : self{
42 $slot = $in->getByte();
43 $hotbarSlot = $in->getByte();
44 $count = $in->getByte();
45 $itemStackId = $in->readServerItemStackId();
46 $customName = $in->getString();
47 $durabilityCorrection = $in->getVarInt();
48 return new self($slot, $hotbarSlot, $count, $itemStackId, $customName, $durabilityCorrection);
49 }
50
51 public function write(PacketSerializer $out) : void{
52 $out->putByte($this->slot);
53 $out->putByte($this->hotbarSlot);
54 $out->putByte($this->count);
55 $out->writeServerItemStackId($this->itemStackId);
56 $out->putString($this->customName);
57 $out->putVarInt($this->durabilityCorrection);
58 }
59}