mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-30 07:09:56 +00:00
206 lines
3.7 KiB
PHP
206 lines
3.7 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\level\format;
|
|
|
|
interface SubChunkInterface{
|
|
|
|
/**
|
|
* @param bool $checkLight
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isEmpty(bool $checkLight = true) : bool;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $y
|
|
* @param int $z
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getBlockId(int $x, int $y, int $z) : int;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $y
|
|
* @param int $z
|
|
* @param int $id
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function setBlockId(int $x, int $y, int $z, int $id) : bool;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $y
|
|
* @param int $z
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getBlockData(int $x, int $y, int $z) : int;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $y
|
|
* @param int $z
|
|
* @param int $data
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function setBlockData(int $x, int $y, int $z, int $data) : bool;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $y
|
|
* @param int $z
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getFullBlock(int $x, int $y, int $z) : int;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $y
|
|
* @param int $z
|
|
* @param int|null $id
|
|
* @param int|null $data
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function setBlock(int $x, int $y, int $z, ?int $id = null, ?int $data = null) : bool;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $y
|
|
* @param int $z
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getBlockLight(int $x, int $y, int $z) : int;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $y
|
|
* @param int $z
|
|
* @param int $level
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function setBlockLight(int $x, int $y, int $z, int $level) : bool;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $y
|
|
* @param int $z
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getBlockSkyLight(int $x, int $y, int $z) : int;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $y
|
|
* @param int $z
|
|
* @param int $level
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function setBlockSkyLight(int $x, int $y, int $z, int $level) : bool;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $z
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getHighestBlockAt(int $x, int $z) : int;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $z
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getBlockIdColumn(int $x, int $z) : string;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $z
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getBlockDataColumn(int $x, int $z) : string;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $z
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getBlockLightColumn(int $x, int $z) : string;
|
|
|
|
/**
|
|
* @param int $x
|
|
* @param int $z
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getBlockSkyLightColumn(int $x, int $z) : string;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getBlockIdArray() : string;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getBlockDataArray() : string;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getBlockSkyLightArray() : string;
|
|
|
|
/**
|
|
* @param string $data
|
|
*/
|
|
public function setBlockSkyLightArray(string $data);
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getBlockLightArray() : string;
|
|
|
|
/**
|
|
* @param string $data
|
|
*/
|
|
public function setBlockLightArray(string $data);
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function networkSerialize() : string;
|
|
}
|