mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-13 09:19:42 +00:00
121 lines
2.9 KiB
PHP
121 lines
2.9 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/
|
|
*
|
|
*
|
|
*/
|
|
|
|
namespace pocketmine\level\generator;
|
|
|
|
|
|
use pocketmine\Thread;
|
|
|
|
class GenerationThread extends Thread{
|
|
|
|
protected $loadPaths;
|
|
/** @var \ClassLoader */
|
|
protected $loader;
|
|
/** @var \ThreadedLogger */
|
|
protected $logger;
|
|
|
|
/** @var \Threaded */
|
|
protected $externalQueue;
|
|
/** @var \Threaded */
|
|
protected $internalQueue;
|
|
|
|
/**
|
|
* @return \Threaded
|
|
*/
|
|
public function getInternalQueue(){
|
|
return $this->internalQueue;
|
|
}
|
|
|
|
/**
|
|
* @return \Threaded
|
|
*/
|
|
public function getExternalQueue(){
|
|
return $this->externalQueue;
|
|
}
|
|
|
|
public function pushMainToThreadPacket($str){
|
|
$this->internalQueue[] = $str;
|
|
$this->synchronized(function (){
|
|
$this->notify();
|
|
});
|
|
}
|
|
|
|
public function readMainToThreadPacket(){
|
|
return $this->internalQueue->shift();
|
|
}
|
|
|
|
public function pushThreadToMainPacket($str){
|
|
$this->externalQueue[] = $str;
|
|
}
|
|
|
|
public function readThreadToMainPacket(){
|
|
return $this->externalQueue->shift();
|
|
}
|
|
|
|
/**
|
|
* @return \ThreadedLogger
|
|
*/
|
|
public function getLogger(){
|
|
return $this->logger;
|
|
}
|
|
|
|
public function __construct(\Threaded $internalThreaded, \Threaded $externalThreaded, \ThreadedLogger $logger, \ClassLoader $loader){
|
|
$this->loader = $loader;
|
|
$this->logger = $logger;
|
|
$loadPaths = [];
|
|
$this->addDependency($loadPaths, new \ReflectionClass($this->loader));
|
|
$this->loadPaths = array_reverse($loadPaths);
|
|
|
|
$this->externalQueue = \ThreadedFactory::create();
|
|
$this->internalQueue = \ThreadedFactory::create();
|
|
|
|
$this->start();
|
|
}
|
|
|
|
protected function addDependency(array &$loadPaths, \ReflectionClass $dep){
|
|
if($dep->getFileName() !== false){
|
|
$loadPaths[$dep->getName()] = $dep->getFileName();
|
|
}
|
|
|
|
if($dep->getParentClass() instanceof \ReflectionClass){
|
|
$this->addDependency($loadPaths, $dep->getParentClass());
|
|
}
|
|
|
|
foreach($dep->getInterfaces() as $interface){
|
|
$this->addDependency($loadPaths, $interface);
|
|
}
|
|
}
|
|
|
|
public function run(){
|
|
error_reporting(-1);
|
|
gc_enable();
|
|
//Load removed dependencies, can't use require_once()
|
|
foreach($this->loadPaths as $name => $path){
|
|
if(!class_exists($name, false) and !interface_exists($name, false)){
|
|
require($path);
|
|
}
|
|
}
|
|
$this->loader->register();
|
|
|
|
$generationManager = new GenerationManager($this, $this->getLogger(), $this->loader);
|
|
}
|
|
}
|