BetterGen/src/Ad5001/BetterGen/populator/IglooPopulator.php

64 lines
2.1 KiB
PHP
Raw Normal View History

2017-04-23 14:42:51 +00:00
<?php
/**
* ____ __ __ ____
* /\ _`\ /\ \__ /\ \__ /\ _`\
* \ \ \L\ \ __ \ \ ,_\\ \ ,_\ __ _ __ \ \ \L\_\ __ ___
* \ \ _ <' /'__`\\ \ \/ \ \ \/ /'__`\/\`'__\\ \ \L_L /'__`\ /' _ `\
* \ \ \L\ \/\ __/ \ \ \_ \ \ \_ /\ __/\ \ \/ \ \ \/, \/\ __/ /\ \/\ \
* \ \____/\ \____\ \ \__\ \ \__\\ \____\\ \_\ \ \____/\ \____\\ \_\ \_\
* \/___/ \/____/ \/__/ \/__/ \/____/ \/_/ \/___/ \/____/ \/_/\/_/
* Tomorrow's pocketmine generator.
2017-05-14 18:13:15 +00:00
* @author Ad5001 <mail@ad5001.eu>, XenialDan <https://github.com/thebigsmileXD>
* @link https://github.com/Ad5001/BetterGen
2017-05-14 18:13:15 +00:00
* @version 1.1
2017-04-23 14:42:51 +00:00
*/
2017-04-23 14:42:51 +00:00
namespace Ad5001\BetterGen\populator;
2017-05-11 12:07:26 +00:00
use Ad5001\BetterGen\structure\Igloo;
2017-04-23 14:42:51 +00:00
use pocketmine\block\Block;
use pocketmine\level\ChunkManager;
2017-05-11 12:07:26 +00:00
use pocketmine\level\Level;
use pocketmine\utils\Random;
2017-04-23 14:42:51 +00:00
class IglooPopulator 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-05-13 21:27:10 +00:00
if ($random->nextBoundedInt(100) > 30)
2017-04-23 14:42:51 +00:00
return;
$igloo = new Igloo ();
2017-04-29 09:59:44 +00:00
$x = $random->nextRange($chunkX << 4, ($chunkX << 4) + 15);
$z = $random->nextRange($chunkZ << 4, ($chunkZ << 4) + 15);
2017-05-13 21:27:10 +00:00
$y = $this->getHighestWorkableBlock($x, $z) - 1;
if ($igloo->canPlaceObject($level, $x, $y, $z, $random))
2017-04-29 09:59:44 +00:00
$igloo->placeObject($level, $x, $y, $z, $random);
2017-04-23 14:42:51 +00:00
}
/*
* Gets the top block (y) on an x and z axes
* @param $x int
* @param $z int
*/
protected function getHighestWorkableBlock($x, $z) {
2017-05-11 14:41:42 +00:00
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-04-23 14:42:51 +00:00
if ($b === Block::DIRT or $b === Block::GRASS or $b === Block::PODZOL) {
break;
} elseif ($b !== 0 and $b !== Block::SNOW_LAYER) {
return - 1;
}
}
2017-05-11 13:12:17 +00:00
return ++$y;
2017-04-23 14:42:51 +00:00
}
}