mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-17 11:18:52 +00:00
Something as simple as forgetting the reset() when encoding would cause lots of problems which could go unnoticed. This should be fully backwards-compatible but needs more tests.
101 lines
2.5 KiB
PHP
101 lines
2.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
*
|
|
* ____ _ _ __ __ _ __ __ ____
|
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* @author PocketMine Team
|
|
* @link http://www.pocketmine.net/
|
|
*
|
|
*
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace pocketmine\network\mcpe\protocol;
|
|
|
|
#include <rules/DataPacket.h>
|
|
|
|
|
|
use pocketmine\network\mcpe\NetworkSession;
|
|
|
|
class TextPacket extends DataPacket{
|
|
const NETWORK_ID = ProtocolInfo::TEXT_PACKET;
|
|
|
|
const TYPE_RAW = 0;
|
|
const TYPE_CHAT = 1;
|
|
const TYPE_TRANSLATION = 2;
|
|
const TYPE_POPUP = 3;
|
|
const TYPE_TIP = 4;
|
|
const TYPE_SYSTEM = 5;
|
|
const TYPE_WHISPER = 6;
|
|
const TYPE_ANNOUNCEMENT = 7;
|
|
|
|
public $type;
|
|
public $source;
|
|
public $message;
|
|
public $parameters = [];
|
|
|
|
public function decodePayload(){
|
|
$this->type = $this->getByte();
|
|
switch($this->type){
|
|
case self::TYPE_POPUP:
|
|
case self::TYPE_CHAT:
|
|
case self::TYPE_WHISPER:
|
|
/** @noinspection PhpMissingBreakStatementInspection */
|
|
case self::TYPE_ANNOUNCEMENT:
|
|
$this->source = $this->getString();
|
|
case self::TYPE_RAW:
|
|
case self::TYPE_TIP:
|
|
case self::TYPE_SYSTEM:
|
|
$this->message = $this->getString();
|
|
break;
|
|
|
|
case self::TYPE_TRANSLATION:
|
|
$this->message = $this->getString();
|
|
$count = $this->getUnsignedVarInt();
|
|
for($i = 0; $i < $count; ++$i){
|
|
$this->parameters[] = $this->getString();
|
|
}
|
|
}
|
|
}
|
|
|
|
public function encodePayload(){
|
|
$this->putByte($this->type);
|
|
switch($this->type){
|
|
case self::TYPE_POPUP:
|
|
case self::TYPE_CHAT:
|
|
case self::TYPE_WHISPER:
|
|
/** @noinspection PhpMissingBreakStatementInspection */
|
|
case self::TYPE_ANNOUNCEMENT:
|
|
$this->putString($this->source);
|
|
case self::TYPE_RAW:
|
|
case self::TYPE_TIP:
|
|
case self::TYPE_SYSTEM:
|
|
$this->putString($this->message);
|
|
break;
|
|
|
|
case self::TYPE_TRANSLATION:
|
|
$this->putString($this->message);
|
|
$this->putUnsignedVarInt(count($this->parameters));
|
|
foreach($this->parameters as $p){
|
|
$this->putString($p);
|
|
}
|
|
}
|
|
}
|
|
|
|
public function handle(NetworkSession $session) : bool{
|
|
return $session->handleText($this);
|
|
}
|
|
|
|
}
|