mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-06 10:01:53 +00:00
70 lines
1.8 KiB
PHP
70 lines
1.8 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 EventPacket extends DataPacket{
|
|
const NETWORK_ID = ProtocolInfo::EVENT_PACKET;
|
|
|
|
const TYPE_ACHIEVEMENT_AWARDED = 0;
|
|
const TYPE_ENTITY_INTERACT = 1;
|
|
const TYPE_PORTAL_BUILT = 2;
|
|
const TYPE_PORTAL_USED = 3;
|
|
const TYPE_MOB_KILLED = 4;
|
|
const TYPE_CAULDRON_USED = 5;
|
|
const TYPE_PLAYER_DEATH = 6;
|
|
const TYPE_BOSS_KILLED = 7;
|
|
const TYPE_AGENT_COMMAND = 8;
|
|
const TYPE_AGENT_CREATED = 9;
|
|
|
|
/** @var int */
|
|
public $playerRuntimeId;
|
|
/** @var int */
|
|
public $eventData;
|
|
/** @var int */
|
|
public $type;
|
|
|
|
protected function decodePayload(){
|
|
$this->playerRuntimeId = $this->getEntityRuntimeId();
|
|
$this->eventData = $this->getVarInt();
|
|
$this->type = $this->getByte();
|
|
|
|
//TODO: nice confusing mess
|
|
}
|
|
|
|
protected function encodePayload(){
|
|
$this->putEntityRuntimeId($this->playerRuntimeId);
|
|
$this->putVarInt($this->eventData);
|
|
$this->putByte($this->type);
|
|
|
|
//TODO: also nice confusing mess
|
|
}
|
|
|
|
public function handle(NetworkSession $session) : bool{
|
|
return $session->handleEvent($this);
|
|
}
|
|
} |