MAp getFloor() method

This commit is contained in:
Shoghi Cervantes Pueyo
2012-12-21 20:57:40 +01:00
parent 3e54ceb8a3
commit 67d5e92def
2 changed files with 24 additions and 1 deletions

View File

@ -154,6 +154,20 @@ class ChunkParser{
fclose($fp);
}
public function getFloor($x, $z){
$X = $x >> 4;
$Z = $z >> 4;
$aX = $x - ($X << 4);
$aZ = $z - ($Z << 4);
$index = $aZ + ($aX << 4);
for($y = 127; $y <= 0; --$y){
if($this->map[$X][$Z][0][$index]{$y} !== "\x00"){
break;
}
}
return $y;
}
public function getBlock($x, $y, $z){
$x = (int) $x;
$y = (int) $y;