PocketMine-MP 5.21.2 git-09bf203267aca9b83a09640e17bfac0fc7b58ff8
Loading...
Searching...
No Matches
DisconnectPacket.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
18
20 public const NETWORK_ID = ProtocolInfo::DISCONNECT_PACKET;
21
22 public int $reason; //TODO: add constants / enum
23 public ?string $message;
24 public ?string $filteredMessage;
25
29 public static function create(int $reason, ?string $message, ?string $filteredMessage) : self{
30 $result = new self;
31 $result->reason = $reason;
32 $result->message = $message;
33 $result->filteredMessage = $filteredMessage;
34 return $result;
35 }
36
37 public function canBeSentBeforeLogin() : bool{
38 return true;
39 }
40
41 protected function decodePayload(PacketSerializer $in) : void{
42 $this->reason = $in->getVarInt();
43 $skipMessage = $in->getBool();
44 $this->message = $skipMessage ? null : $in->getString();
45 $this->filteredMessage = $skipMessage ? null : $in->getString();
46 }
47
48 protected function encodePayload(PacketSerializer $out) : void{
49 $out->putVarInt($this->reason);
50 $out->putBool($skipMessage = $this->message === null && $this->filteredMessage === null);
51 if(!$skipMessage){
52 $out->putString($this->message ?? "");
53 $out->putString($this->filteredMessage ?? "");
54 }
55 }
56
57 public function handle(PacketHandlerInterface $handler) : bool{
58 return $handler->handleDisconnect($this);
59 }
60}
static create(int $reason, ?string $message, ?string $filteredMessage)