This commit is contained in:
lolcat 2023-07-22 14:43:50 -04:00
commit 1caf4a6cd6
3 changed files with 81 additions and 0 deletions

7
README.md Normal file
View File

@ -0,0 +1,7 @@
# MCPI ping
A deadass simple library to ping Minecraft: Pi Edition serbers.
For an example on how to use, view the example.php file!!
### License
MIT

21
example.php Normal file
View File

@ -0,0 +1,21 @@
<?php
include "mcpi.php";
$mcpi = new mcpi();
// ping away !!!
try{
print_r($mcpi->ping("androidmc.hopto.org", 19133));
}catch(Exception $e){}
try{
print_r($mcpi->ping("68.194.116.245", 19132));
}catch(Exception $e){}
try{
print_r($mcpi->ping("146.198.132.171", 19132));
}catch(Exception $e){}
try{
print_r($mcpi->ping("pi-land.minecraft.pe", 19132));
}catch(Exception $e){}

53
mcpi.php Normal file
View File

@ -0,0 +1,53 @@
<?php
class mcpi{
private const packet = "\x02\x00\x00\x00\x00\x00\x01\xbe\xdb\x00\xff\xff\x00\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\x12\x34\x56\x78";
public function ping(string $ip, int $port = 19132, int $timeout = 3){
if(!($sock = socket_create(AF_INET, SOCK_DGRAM, 0))){
throw new Exception("Failed to connect");
}
if(!socket_sendto($sock, mcpi::packet, strlen(mcpi::packet), 0, $ip, $port)){
throw new Exception("Failed to send data");
}
socket_set_option($sock, SOL_SOCKET, SO_RCVTIMEO, ["sec" => $timeout, "usec" => 0]);
// get string size
// for some reason, not using msg_peek makes the second
// socket_recv call hang
if(socket_recv($sock, $strlen, 36, MSG_PEEK | MSG_WAITALL) === false){
throw new Exception("Failed to receive datalen");
}
$strlen = unpack("c", substr($strlen, 34, 35))[1];
if(socket_recv($sock, $reply, (35 + $strlen), MSG_WAITALL) === false){
throw new Exception("Failed to receive string");
}
$reply = substr($reply, 35, (35 + $strlen));
$reply = explode(";", $reply);
if(count($reply) !== 3){
throw new Exception("Received malformed string");
}
$reply = [
"game" => $reply[0],
"type" => $reply[1],
"name" => $reply[2]
];
return $reply;
}
}