Found more unknown things

This commit is contained in:
Dylan K. Taylor 2018-03-25 12:38:43 +01:00
parent d97abfaa7b
commit 3fe4ebc301
3 changed files with 18 additions and 15 deletions

View File

@ -54,9 +54,9 @@ class MovePlayerPacket extends DataPacket{
/** @var int */ /** @var int */
public $ridingEid = 0; public $ridingEid = 0;
/** @var int */ /** @var int */
public $int1 = 0; public $teleportCause = 0;
/** @var int */ /** @var int */
public $int2 = 0; public $teleportItem = 0;
protected function decodePayload(){ protected function decodePayload(){
$this->entityRuntimeId = $this->getEntityRuntimeId(); $this->entityRuntimeId = $this->getEntityRuntimeId();
@ -68,8 +68,8 @@ class MovePlayerPacket extends DataPacket{
$this->onGround = $this->getBool(); $this->onGround = $this->getBool();
$this->ridingEid = $this->getEntityRuntimeId(); $this->ridingEid = $this->getEntityRuntimeId();
if($this->mode === MovePlayerPacket::MODE_TELEPORT){ if($this->mode === MovePlayerPacket::MODE_TELEPORT){
$this->int1 = $this->getLInt(); $this->teleportCause = $this->getLInt();
$this->int2 = $this->getLInt(); $this->teleportItem = $this->getLInt();
} }
} }
@ -83,8 +83,8 @@ class MovePlayerPacket extends DataPacket{
$this->putBool($this->onGround); $this->putBool($this->onGround);
$this->putEntityRuntimeId($this->ridingEid); $this->putEntityRuntimeId($this->ridingEid);
if($this->mode === MovePlayerPacket::MODE_TELEPORT){ if($this->mode === MovePlayerPacket::MODE_TELEPORT){
$this->putLInt($this->int1); $this->putLInt($this->teleportCause);
$this->putLInt($this->int2); $this->putLInt($this->teleportItem);
} }
} }

View File

@ -36,22 +36,22 @@ class PlayerInputPacket extends DataPacket{
/** @var float */ /** @var float */
public $motionY; public $motionY;
/** @var bool */ /** @var bool */
public $unknownBool1; public $jumping;
/** @var bool */ /** @var bool */
public $unknownBool2; public $sneaking;
protected function decodePayload(){ protected function decodePayload(){
$this->motionX = $this->getLFloat(); $this->motionX = $this->getLFloat();
$this->motionY = $this->getLFloat(); $this->motionY = $this->getLFloat();
$this->unknownBool1 = $this->getBool(); $this->jumping = $this->getBool();
$this->unknownBool2 = $this->getBool(); $this->sneaking = $this->getBool();
} }
protected function encodePayload(){ protected function encodePayload(){
$this->putLFloat($this->motionX); $this->putLFloat($this->motionX);
$this->putLFloat($this->motionY); $this->putLFloat($this->motionY);
$this->putBool($this->unknownBool1); $this->putBool($this->jumping);
$this->putBool($this->unknownBool2); $this->putBool($this->sneaking);
} }
public function handle(NetworkSession $session) : bool{ public function handle(NetworkSession $session) : bool{

View File

@ -30,15 +30,18 @@ use pocketmine\network\mcpe\NetworkSession;
class SimpleEventPacket extends DataPacket{ class SimpleEventPacket extends DataPacket{
public const NETWORK_ID = ProtocolInfo::SIMPLE_EVENT_PACKET; public const NETWORK_ID = ProtocolInfo::SIMPLE_EVENT_PACKET;
public const TYPE_ENABLE_COMMANDS = 1;
public const TYPE_DISABLE_COMMANDS = 2;
/** @var int */ /** @var int */
public $unknownShort1; public $eventType;
protected function decodePayload(){ protected function decodePayload(){
$this->unknownShort1 = $this->getLShort(); $this->eventType = $this->getLShort();
} }
protected function encodePayload(){ protected function encodePayload(){
$this->putLShort($this->unknownShort1); $this->putLShort($this->eventType);
} }
public function handle(NetworkSession $session) : bool{ public function handle(NetworkSession $session) : bool{