PocketMine-MP
5.21.2 git-09bf203267aca9b83a09640e17bfac0fc7b58ff8
Loading...
Searching...
No Matches
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
13
declare(strict_types=1);
14
15
namespace
pocketmine\network\mcpe\protocol;
16
17
use
pocketmine\network\mcpe\protocol\serializer\PacketSerializer
;
18
19
class
SetTimePacket
extends
DataPacket
implements
ClientboundPacket
{
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
}
pocketmine\network\mcpe\protocol\DataPacket
Definition
DataPacket.php:21
pocketmine\network\mcpe\protocol\SetTimePacket
Definition
SetTimePacket.php:19
pocketmine\network\mcpe\protocol\SetTimePacket\handle
handle(PacketHandlerInterface $handler)
Definition
SetTimePacket.php:38
pocketmine\network\mcpe\protocol\SetTimePacket\decodePayload
decodePayload(PacketSerializer $in)
Definition
SetTimePacket.php:30
pocketmine\network\mcpe\protocol\SetTimePacket\encodePayload
encodePayload(PacketSerializer $out)
Definition
SetTimePacket.php:34
pocketmine\network\mcpe\protocol\serializer\PacketSerializer
Definition
bedrock-protocol/src/serializer/PacketSerializer.php:66
pocketmine\network\mcpe\protocol\ClientboundPacket
Definition
ClientboundPacket.php:17
pocketmine\network\mcpe\protocol\PacketHandlerInterface
Definition
PacketHandlerInterface.php:20
vendor
pocketmine
bedrock-protocol
src
SetTimePacket.php
Generated by
1.12.0