PocketMine-MP/src/world/format/SubChunk.php
Dylan K. Taylor 0a7d81a2b0 FastChunkSerializer: retain emptyBlock on subchunks
I think we should probably get rid of this considering the potential for inconsistencies within a chunk, but not retaining this is a bug nonetheless, even though it doesn't have any effect in PM itself since we always use BlockLegacyIds << 4 as the empty block ID.

so, this is only really aiding (ab)use cases which weren't intended anyway ...
2020-11-27 13:41:35 +00:00

161 lines
4.1 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\world\format;
use function array_map;
use function array_values;
use function count;
class SubChunk{
/** @var int */
private $emptyBlockId;
/** @var PalettedBlockArray[] */
private $blockLayers;
/** @var LightArray */
private $blockLight;
/** @var LightArray */
private $skyLight;
/**
* SubChunk constructor.
*
* @param PalettedBlockArray[] $blocks
*/
public function __construct(int $emptyBlockId, array $blocks, ?LightArray $skyLight = null, ?LightArray $blockLight = null){
$this->emptyBlockId = $emptyBlockId;
$this->blockLayers = $blocks;
$this->skyLight = $skyLight ?? LightArray::fill(15);
$this->blockLight = $blockLight ?? LightArray::fill(0);
}
/**
* Returns whether this subchunk contains any non-air blocks.
* This function will do a slow check, usually by garbage collecting first.
* This is typically useful for disk saving.
*/
public function isEmptyAuthoritative() : bool{
$this->collectGarbage();
return $this->isEmptyFast();
}
/**
* Returns a non-authoritative bool to indicate whether the chunk contains any blocks.
* This may report non-empty erroneously if the chunk has been modified and not garbage-collected.
*/
public function isEmptyFast() : bool{
return count($this->blockLayers) === 0;
}
/**
* Returns the block used as the default. This is assumed to refer to air.
* If all the blocks in a subchunk layer are equal to this block, the layer is assumed to be empty.
*/
public function getEmptyBlockId() : int{ return $this->emptyBlockId; }
public function getFullBlock(int $x, int $y, int $z) : int{
if(count($this->blockLayers) === 0){
return $this->emptyBlockId;
}
return $this->blockLayers[0]->get($x, $y, $z);
}
public function setFullBlock(int $x, int $y, int $z, int $block) : void{
if(count($this->blockLayers) === 0){
$this->blockLayers[] = new PalettedBlockArray($this->emptyBlockId);
}
$this->blockLayers[0]->set($x, $y, $z, $block);
}
/**
* @return PalettedBlockArray[]
*/
public function getBlockLayers() : array{
return $this->blockLayers;
}
public function getHighestBlockAt(int $x, int $z) : int{
if(count($this->blockLayers) === 0){
return -1;
}
for($y = 15; $y >= 0; --$y){
if($this->blockLayers[0]->get($x, $y, $z) !== $this->emptyBlockId){
return $y;
}
}
return -1; //highest block not in this subchunk
}
public function getBlockSkyLightArray() : LightArray{
return $this->skyLight;
}
public function setBlockSkyLightArray(LightArray $data) : void{
$this->skyLight = $data;
}
public function getBlockLightArray() : LightArray{
return $this->blockLight;
}
public function setBlockLightArray(LightArray $data) : void{
$this->blockLight = $data;
}
/**
* @return mixed[]
*/
public function __debugInfo() : array{
return [];
}
public function collectGarbage() : void{
foreach($this->blockLayers as $k => $layer){
$layer->collectGarbage();
foreach($layer->getPalette() as $p){
if($p !== $this->emptyBlockId){
continue 2;
}
}
unset($this->blockLayers[$k]);
}
$this->blockLayers = array_values($this->blockLayers);
$this->skyLight->collectGarbage();
$this->blockLight->collectGarbage();
}
public function __clone(){
$this->blockLayers = array_map(function(PalettedBlockArray $array) : PalettedBlockArray{
return clone $array;
}, $this->blockLayers);
$this->skyLight = clone $this->skyLight;
$this->blockLight = clone $this->blockLight;
}
}