mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-06 11:57:10 +00:00
114 lines
3.1 KiB
PHP
114 lines
3.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
|
|
-
|
|
/ \
|
|
/ \
|
|
/ PocketMine \
|
|
/ MP \
|
|
|\ @shoghicp /|
|
|
|. \ / .|
|
|
| .. \ / .. |
|
|
| .. | .. |
|
|
| .. | .. |
|
|
\ | /
|
|
\ | /
|
|
\ | /
|
|
\ | /
|
|
|
|
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.
|
|
|
|
|
|
*/
|
|
|
|
class LevelAPI{
|
|
private $server, $map;
|
|
function __construct($server){
|
|
$this->server = $server;
|
|
$this->map = $this->server->map;
|
|
$this->heightMap = array_fill(0, 256, array());
|
|
}
|
|
|
|
public function init(){
|
|
$this->server->event("player.block.break", array($this, "handle"));
|
|
$this->server->event("player.block.place", array($this, "handle"));
|
|
$this->server->event("player.block.update", array($this, "handle"));
|
|
}
|
|
|
|
public function handle($data, $event){
|
|
switch($event){
|
|
case "player.block.place":
|
|
case "player.block.update":
|
|
console("[DEBUG] EID ".$data["eid"]." placed ".$data["block"].":".$data["meta"]." at X ".$data["x"]." Y ".$data["y"]." Z ".$data["z"], true, true, 2);
|
|
$this->setBlock($data["x"], $data["y"], $data["z"], $data["block"], $data["meta"]);
|
|
break;
|
|
case "player.block.break":
|
|
$block = $this->getBlock($data["x"], $data["y"], $data["z"]);
|
|
console("[DEBUG] EID ".$data["eid"]." broke block ".$block[0].":".$block[1]." at X ".$data["x"]." Y ".$data["y"]." Z ".$data["z"], true, true, 2);
|
|
|
|
if($block[0] === 0){
|
|
break;
|
|
}
|
|
$this->setBlock($data["x"], $data["y"], $data["z"], 0, 0);
|
|
break;
|
|
}
|
|
}
|
|
|
|
public function getChunk($X, $Z){
|
|
return $this->map->map[$X][$Z];
|
|
}
|
|
|
|
public function getBlock($x, $y, $z){
|
|
return $this->map->getBlock($x, $y, $z);
|
|
}
|
|
|
|
public function getFloor($x, $z){
|
|
if(!isset($this->heightMap[$z][$x])){
|
|
$this->heightMap[$z][$x] = $this->map->getFloor($x, $z);
|
|
}
|
|
return $this->heightMap[$z][$x];
|
|
}
|
|
|
|
public function setBlock($x, $y, $z, $block, $meta = 0){
|
|
$this->map->setBlock($x, $y, $z, $block, $meta);
|
|
$this->heightMap[$z][$x] = $this->map->getFloor($x, $z);
|
|
$this->server->trigger("world.block.change", array(
|
|
"x" => $x,
|
|
"y" => $y,
|
|
"z" => $z,
|
|
"block" => $block,
|
|
"meta" => $meta,
|
|
));
|
|
}
|
|
|
|
public function getOrderedChunk($X, $Z, $columnsPerPacket = 2){
|
|
$columnsPerPacket = max(1, (int) $columnsPerPacket);
|
|
$c = $this->getChunk($X, $Z);
|
|
$ordered = array();
|
|
$i = 0;
|
|
$cnt = 0;
|
|
$ordered[$i] = "";
|
|
for($z = 0; $z < 16; ++$z){
|
|
for($x = 0; $x < 16; ++$x){
|
|
if($cnt >= $columnsPerPacket){
|
|
++$i;
|
|
$ordered[$i] = str_repeat("\x00", $i * $columnsPerPacket);
|
|
$cnt = 0;
|
|
}
|
|
$ordered[$i] .= "\xff";
|
|
$block = $this->map->getChunkColumn($X, $Z, $x, $z, 0);
|
|
$meta = $this->map->getChunkColumn($X, $Z, $x, $z, 1);
|
|
for($k = 0; $k < 8; ++$k){
|
|
$ordered[$i] .= substr($block, $k << 4, 16);
|
|
$ordered[$i] .= substr($meta, $k << 3, 8);
|
|
}
|
|
++$cnt;
|
|
}
|
|
}
|
|
return $ordered;
|
|
}
|
|
} |