mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-01 15:49:54 +00:00
102 lines
2.9 KiB
PHP
102 lines
2.9 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/
|
|
*
|
|
*
|
|
*/
|
|
|
|
class MinecraftInterface{
|
|
public $bandwidth;
|
|
private $socket;
|
|
private $packets;
|
|
function __construct($server, $port = 25565, $serverip = "0.0.0.0"){
|
|
$this->socket = new UDPSocket($server, $port, true, $serverip);
|
|
if($this->socket->connected === false){
|
|
console("[SEVERE] Couldn't bind to $serverip:".$port, true, true, 0);
|
|
exit(1);
|
|
}
|
|
$this->bandwidth = array(0, 0, microtime(true));
|
|
$this->start = microtime(true);
|
|
$this->packets = array();
|
|
}
|
|
|
|
public function close(){
|
|
return $this->socket->close(false);
|
|
}
|
|
|
|
public function readPacket(){
|
|
if($this->socket->connected === false){
|
|
return false;
|
|
}
|
|
$buf = "";
|
|
$source = false;
|
|
$port = 1;
|
|
$len = $this->socket->read($buf, $source, $port);
|
|
if($len === false or $len === 0){
|
|
return false;
|
|
}
|
|
$this->bandwidth[0] += $len;
|
|
return $this->parsePacket($buf, $source, $port);
|
|
}
|
|
|
|
private function parsePacket($buffer, $source, $port){
|
|
$pid = ord($buffer{0});
|
|
|
|
if(RakNetInfo::isValid($pid)){
|
|
$parser = new RakNetParser($buffer);
|
|
if($parser->packet !== false){
|
|
$parser->packet->ip = $source;
|
|
$parser->packet->port = $port;
|
|
if(EventHandler::callEvent(new PacketReceiveEvent($parser->packet)) === BaseEvent::DENY){
|
|
return false;
|
|
}
|
|
return $parser->packet;
|
|
}
|
|
return false;
|
|
}elseif($pid === 0xfe and $buffer{1} === "\xfd" and ServerAPI::request()->api->query instanceof QueryHandler){
|
|
$packet = new QueryPacket;
|
|
$packet->ip = $source;
|
|
$packet->port = $port;
|
|
$packet->buffer =& $buffer;
|
|
if(EventHandler::callEvent(new PacketReceiveEvent($packet)) === BaseEvent::DENY){
|
|
return false;
|
|
}
|
|
ServerAPI::request()->api->query->handle($packet);
|
|
}else{
|
|
$packet = new Packet();
|
|
$packet->ip = $source;
|
|
$packet->port = $port;
|
|
$packet->buffer =& $buffer;
|
|
EventHandler::callEvent(new PacketReceiveEvent($packet));
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function writePacket(Packet $packet){
|
|
if(EventHandler::callEvent(new PacketSendEvent($packet)) === BaseEvent::DENY){
|
|
return 0;
|
|
}elseif($packet instanceof RakNetPacket){
|
|
$codec = new RakNetCodec($packet);
|
|
}
|
|
$write = $this->socket->write($packet->buffer, $packet->ip, $packet->port);
|
|
$this->bandwidth[1] += $write;
|
|
return $write;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|