forked from Ad5001/BetterGen
69 lines
No EOL
2.1 KiB
PHP
69 lines
No EOL
2.1 KiB
PHP
<?php
|
|
/**
|
|
* ____ __ __ ____
|
|
* /\ _`\ /\ \__ /\ \__ /\ _`\
|
|
* \ \ \L\ \ __ \ \ ,_\\ \ ,_\ __ _ __ \ \ \L\_\ __ ___
|
|
* \ \ _ <' /'__`\\ \ \/ \ \ \/ /'__`\/\`'__\\ \ \L_L /'__`\ /' _ `\
|
|
* \ \ \L\ \/\ __/ \ \ \_ \ \ \_ /\ __/\ \ \/ \ \ \/, \/\ __/ /\ \/\ \
|
|
* \ \____/\ \____\ \ \__\ \ \__\\ \____\\ \_\ \ \____/\ \____\\ \_\ \_\
|
|
* \/___/ \/____/ \/__/ \/__/ \/____/ \/_/ \/___/ \/____/ \/_/\/_/
|
|
* Tomorrow's pocketmine generator.
|
|
* @author Ad5001
|
|
* @link https://github.com/Ad5001/BetterGen
|
|
*/
|
|
|
|
namespace Ad5001\BetterGen\populator;
|
|
|
|
use Ad5001\BetterGen\structure\SugarCane;
|
|
use pocketmine\block\Block;
|
|
use pocketmine\level\ChunkManager;
|
|
use pocketmine\level\Level;
|
|
use pocketmine\utils\Random;
|
|
|
|
class SugarCanePopulator extends AmountPopulator {
|
|
/** @var ChunkManager */
|
|
protected $level;
|
|
/*
|
|
* Constructs the class
|
|
*/
|
|
public function __construct() {
|
|
$this->setBaseAmount(1);
|
|
$this->setRandomAmount(2);
|
|
}
|
|
|
|
/*
|
|
* Populate the chunk
|
|
* @param $level pocketmine\level\ChunkManager
|
|
* @param $chunkX int
|
|
* @param $chunkZ int
|
|
* @param $random pocketmine\utils\Random
|
|
*/
|
|
public function populate(ChunkManager $level, $chunkX, $chunkZ, Random $random) {
|
|
$this->level = $level;
|
|
$amount = $this->getAmount($random);
|
|
$sugarcane = new SugarCane ();
|
|
for($i = 0; $i < $amount; $i++) {
|
|
$x = $random->nextRange($chunkX * 16, $chunkX * 16 + 15);
|
|
$z = $random->nextRange($chunkZ * 16, $chunkZ * 16 + 15);
|
|
$y = $this->getHighestWorkableBlock($x, $z);
|
|
if ($y !== -1 and $sugarcane->canPlaceObject($level, $x, $y, $z, $random)) {
|
|
$sugarcane->placeObject($level, $x, $y, $z);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Gets the top block (y) on an x and z axes
|
|
* @param $x int
|
|
* @param $z int
|
|
*/
|
|
protected function getHighestWorkableBlock($x, $z) {
|
|
for($y = Level::Y_MAX - 1; $y >= 0; -- $y) {
|
|
$b = $this->level->getBlockIdAt($x, $y, $z);
|
|
if ($b !== Block::AIR and $b !== Block::LEAVES and $b !== Block::LEAVES2) {
|
|
break;
|
|
}
|
|
}
|
|
return $y === 0 ? - 1 : ++$y;
|
|
}
|
|
} |