mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-09 11:16:57 +00:00
88 lines
2.2 KiB
PHP
88 lines
2.2 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\generator\biome;
|
|
|
|
use pocketmine\level\generator\noise\Simplex;
|
|
use pocketmine\utils\Random;
|
|
|
|
class BiomeSelector{
|
|
|
|
/** @var Biome */
|
|
private $fallback;
|
|
|
|
/** @var Simplex */
|
|
private $temperature;
|
|
/** @var Simplex */
|
|
private $rainfall;
|
|
|
|
/** @var Biome[] */
|
|
private $biomes = [];
|
|
|
|
private $map = [];
|
|
|
|
private $lookup;
|
|
|
|
public function __construct(Random $random, callable $lookup, Biome $fallback){
|
|
$this->fallback = $fallback;
|
|
$this->lookup = $lookup;
|
|
$this->temperature = new Simplex($random, 2, 1 / 16, 1 / 512);
|
|
$this->rainfall = new Simplex($random, 2, 1 / 16, 1 / 512);
|
|
}
|
|
|
|
public function recalculate(){
|
|
$this->map = new \SplFixedArray(64 * 64);
|
|
|
|
for($i = 0; $i < 64; ++$i){
|
|
for($j = 0; $j < 64; ++$j){
|
|
$this->map[$i + ($j << 6)] = call_user_func($this->lookup, $i / 63, $j / 63);
|
|
}
|
|
}
|
|
}
|
|
|
|
public function addBiome(Biome $biome){
|
|
$this->biomes[$biome->getId()] = $biome;
|
|
}
|
|
|
|
public function getTemperature($x, $z){
|
|
return ($this->temperature->noise2D($x, $z, true) + 1) / 2;
|
|
}
|
|
|
|
public function getRainfall($x, $z){
|
|
return ($this->rainfall->noise2D($x, $z, true) + 1) / 2;
|
|
}
|
|
|
|
/**
|
|
* @param $x
|
|
* @param $z
|
|
*
|
|
* @return Biome
|
|
*/
|
|
public function pickBiome($x, $z) : Biome{
|
|
$temperature = (int) ($this->getTemperature($x, $z) * 63);
|
|
$rainfall = (int) ($this->getRainfall($x, $z) * 63);
|
|
|
|
$biomeId = $this->map[$temperature + ($rainfall << 6)];
|
|
return $this->biomes[$biomeId] ?? $this->fallback;
|
|
}
|
|
} |