PocketMine-MP 5.15.1 git-5ef247620a7c6301a849b54e5ef1009217729fc8
SetTimePacket.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::SET_TIME_PACKET;
21
22 public int $time;
23
24 public static function create(int $time) : self{
25 $result = new self;
26 $result->time = $time & 0xffffffff; //avoid overflowing the field, since the packet uses an int32
27 return $result;
28 }
29
30 protected function decodePayload(PacketSerializer $in) : void{
31 $this->time = $in->getVarInt();
32 }
33
34 protected function encodePayload(PacketSerializer $out) : void{
35 $out->putVarInt($this->time);
36 }
37
38 public function handle(PacketHandlerInterface $handler) : bool{
39 return $handler->handleSetTime($this);
40 }
41}
handle(PacketHandlerInterface $handler)