PocketMine-MP 5.35.1 git-e32e836dad793a3a3c8ddd8927c00e112b1e576a
Loading...
Searching...
No Matches
AnimatePacket.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
17use pmmp\encoding\ByteBufferReader;
18use pmmp\encoding\ByteBufferWriter;
19use pmmp\encoding\LE;
20use pmmp\encoding\VarInt;
22
24 public const NETWORK_ID = ProtocolInfo::ANIMATE_PACKET;
25
26 public const ACTION_SWING_ARM = 1;
27
28 public const ACTION_STOP_SLEEP = 3;
29 public const ACTION_CRITICAL_HIT = 4;
30 public const ACTION_MAGICAL_CRITICAL_HIT = 5;
31
32 public int $action;
33 public int $actorRuntimeId;
34 public float $float = 0.0; //TODO (Boat rowing time?)
35
36 public static function create(int $actorRuntimeId, int $actionId) : self{
37 $result = new self;
38 $result->actorRuntimeId = $actorRuntimeId;
39 $result->action = $actionId;
40 return $result;
41 }
42
43 public static function boatHack(int $actorRuntimeId, int $actionId, float $data) : self{
44 $result = self::create($actorRuntimeId, $actionId);
45 $result->float = $data;
46 return $result;
47 }
48
49 protected function decodePayload(ByteBufferReader $in) : void{
50 $this->action = VarInt::readSignedInt($in);
51 $this->actorRuntimeId = CommonTypes::getActorRuntimeId($in);
52 if(($this->action & 0x80) !== 0){
53 $this->float = LE::readFloat($in);
54 }
55 }
56
57 protected function encodePayload(ByteBufferWriter $out) : void{
58 VarInt::writeSignedInt($out, $this->action);
59 CommonTypes::putActorRuntimeId($out, $this->actorRuntimeId);
60 if(($this->action & 0x80) !== 0){
61 LE::writeFloat($out, $this->float);
62 }
63 }
64
65 public function handle(PacketHandlerInterface $handler) : bool{
66 return $handler->handleAnimate($this);
67 }
68}
handle(PacketHandlerInterface $handler)