PocketMine-MP 5.15.1 git-be6754494fdbbb9dd57c058ba0e33a4a78c4581f
AddPaintingPacket.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
21 public const NETWORK_ID = ProtocolInfo::ADD_PAINTING_PACKET;
22
23 public int $actorUniqueId;
24 public int $actorRuntimeId;
25 public Vector3 $position;
26 public int $direction;
27 public string $title;
28
32 public static function create(int $actorUniqueId, int $actorRuntimeId, Vector3 $position, int $direction, string $title) : self{
33 $result = new self;
34 $result->actorUniqueId = $actorUniqueId;
35 $result->actorRuntimeId = $actorRuntimeId;
36 $result->position = $position;
37 $result->direction = $direction;
38 $result->title = $title;
39 return $result;
40 }
41
42 protected function decodePayload(PacketSerializer $in) : void{
43 $this->actorUniqueId = $in->getActorUniqueId();
44 $this->actorRuntimeId = $in->getActorRuntimeId();
45 $this->position = $in->getVector3();
46 $this->direction = $in->getVarInt();
47 $this->title = $in->getString();
48 }
49
50 protected function encodePayload(PacketSerializer $out) : void{
51 $out->putActorUniqueId($this->actorUniqueId);
52 $out->putActorRuntimeId($this->actorRuntimeId);
53 $out->putVector3($this->position);
54 $out->putVarInt($this->direction);
55 $out->putString($this->title);
56 }
57
58 public function handle(PacketHandlerInterface $handler) : bool{
59 return $handler->handleAddPainting($this);
60 }
61}
static create(int $actorUniqueId, int $actorRuntimeId, Vector3 $position, int $direction, string $title)