mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-20 18:34:07 +00:00
- `AsyncGeneratorExecutor` class added that encapsulates the logic of generating chunks using async tasks as previously - `GeneratorExecutor` interface added that can be implemented to provide chunks in other ways - `SyncGeneratorExecutor` which invokes the generator directly on the main thread, useful for simple generators like `Flat` where async tasks are not needed - Some redundant APIs were removed from `World` (these will probably come back as deprecated stubs for the remainder of 5.x, but I was having too much fun deleting code) - Removed internal `World->registerGeneratorToWorker()` (no longer useful) - `World` now invokes generator executor instead of posting AsyncTasks directly - Some internal classes moved to `pocketmine\world\generator\executor` (PopulationTask excluded because plugins use it in lieu of being able to regenerate chunks - Generators can opt into main-thread execution by setting the `$fast` parameter to `true` in `GeneratorManager::register()`
52 lines
1.5 KiB
PHP
52 lines
1.5 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\generator;
|
|
|
|
final class GeneratorManagerEntry{
|
|
|
|
/**
|
|
* @phpstan-param class-string<Generator> $generatorClass
|
|
* @phpstan-param \Closure(string) : ?InvalidGeneratorOptionsException $presetValidator
|
|
*/
|
|
public function __construct(
|
|
private string $generatorClass,
|
|
private \Closure $presetValidator,
|
|
private readonly bool $fast
|
|
){}
|
|
|
|
/** @phpstan-return class-string<Generator> */
|
|
public function getGeneratorClass() : string{ return $this->generatorClass; }
|
|
|
|
public function isFast() : bool{ return $this->fast; }
|
|
|
|
/**
|
|
* @throws InvalidGeneratorOptionsException
|
|
*/
|
|
public function validateGeneratorOptions(string $generatorOptions) : void{
|
|
if(($exception = ($this->presetValidator)($generatorOptions)) !== null){
|
|
throw $exception;
|
|
}
|
|
}
|
|
}
|