PocketMine-MP 5.18.1 git-9381fc4172e5dce4cada1cb356050c8a2ab57b94
EditorNetworkPacket.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;
16
19
24 public const NETWORK_ID = ProtocolInfo::EDITOR_NETWORK_PACKET;
25
26 private bool $isRouteToManager;
28 private CacheableNbt $payload;
29
34 public static function create(bool $isRouteToManager, CacheableNbt $payload) : self{
35 $result = new self;
36 $result->isRouteToManager = $isRouteToManager;
37 $result->payload = $payload;
38 return $result;
39 }
40
42 public function getPayload() : CacheableNbt{ return $this->payload; }
43
44 public function isRouteToManager() : bool{ return $this->isRouteToManager; }
45
46 protected function decodePayload(PacketSerializer $in) : void{
47 $this->isRouteToManager = $in->getBool();
48 $this->payload = new CacheableNbt($in->getNbtCompoundRoot());
49 }
50
51 protected function encodePayload(PacketSerializer $out) : void{
52 $out->putBool($this->isRouteToManager);
53 $out->put($this->payload->getEncodedNbt());
54 }
55
56 public function handle(PacketHandlerInterface $handler) : bool{
57 return $handler->handleEditorNetwork($this);
58 }
59}
static create(bool $isRouteToManager, CacheableNbt $payload)