BetterGen/src/Ad5001/BetterGen/populator/DeadbushPopulator.php

68 lines
2.3 KiB
PHP
Raw Normal View History

2017-04-23 14:42:51 +00:00
<?php
/**
* ____ __ __ ____
* /\ _`\ /\ \__ /\ \__ /\ _`\
* \ \ \L\ \ __ \ \ ,_\\ \ ,_\ __ _ __ \ \ \L\_\ __ ___
* \ \ _ <' /'__`\\ \ \/ \ \ \/ /'__`\/\`'__\\ \ \L_L /'__`\ /' _ `\
* \ \ \L\ \/\ __/ \ \ \_ \ \ \_ /\ __/\ \ \/ \ \ \/, \/\ __/ /\ \/\ \
* \ \____/\ \____\ \ \__\ \ \__\\ \____\\ \_\ \ \____/\ \____\\ \_\ \_\
* \/___/ \/____/ \/__/ \/__/ \/____/ \/_/ \/___/ \/____/ \/_/\/_/
* Tomorrow's pocketmine generator.
* @author Ad5001
* @link https://github.com/Ad5001/BetterGen
2017-04-23 14:42:51 +00:00
*/
namespace Ad5001\BetterGen\populator;
2017-05-11 14:41:42 +00:00
use Ad5001\BetterGen\generator\BetterBiomeSelector;
2017-04-23 14:42:51 +00:00
use pocketmine\block\Block;
use pocketmine\level\ChunkManager;
2017-05-11 14:41:42 +00:00
use pocketmine\level\generator\biome\Biome;
use pocketmine\level\Level;
2017-04-23 14:42:51 +00:00
use pocketmine\utils\Random;
class DeadbushPopulator extends AmountPopulator {
/** @var ChunkManager */
2017-04-23 14:42:51 +00:00
protected $level;
/*
* 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;
2017-04-29 09:59:44 +00:00
$amount = $this->getAmount($random);
for($i = 0; $i < $amount; $i++) {
$x = $random->nextRange($chunkX * 16, $chunkX * 16 + 15);
$z = $random->nextRange($chunkZ * 16, $chunkZ * 16 + 15);
2017-05-11 14:41:42 +00:00
if(!in_array($level->getChunk($chunkX, $chunkZ)->getBiomeId(abs($x % 16), ($z % 16)), [40, 39, Biome::DESERT])) continue;
2017-04-29 09:59:44 +00:00
$y = $this->getHighestWorkableBlock($x, $z);
2017-05-13 21:27:10 +00:00
if ($y !== -1 && $level->getBlockIdAt($x, $y - 1, $z) == Block::SAND) {
2017-05-11 14:41:42 +00:00
$level->setBlockIdAt($x, $y, $z, Block::DEAD_BUSH);
$level->setBlockDataAt($x, $y, $z, 1);
2017-04-23 14:42:51 +00:00
}
}
}
2017-05-11 14:41:42 +00:00
/**
2017-04-23 14:42:51 +00:00
* Gets the top block (y) on an x and z axes
2017-05-11 14:41:42 +00:00
* @param $x
* @param $z
* @return int
2017-04-23 14:42:51 +00:00
*/
2017-05-11 14:41:42 +00:00
private function getHighestWorkableBlock($x, $z){
for($y = Level::Y_MAX - 1; $y > 0; --$y){
2017-04-29 09:59:44 +00:00
$b = $this->level->getBlockIdAt($x, $y, $z);
2017-05-11 14:41:42 +00:00
if($b === Block::DIRT or $b === Block::GRASS or $b === Block::SAND or $b === Block::SANDSTONE or $b === Block::HARDENED_CLAY or $b === Block::STAINED_HARDENED_CLAY){
2017-04-23 14:42:51 +00:00
break;
2017-05-11 14:41:42 +00:00
}elseif($b !== Block::AIR){
return -1;
2017-04-23 14:42:51 +00:00
}
}
2017-05-11 14:41:42 +00:00
return ++$y;
2017-04-23 14:42:51 +00:00
}
}