0){ critical_error(\pocketmine\NAME . " requires PHP >= " . MIN_PHP_VERSION . ", but you have PHP " . PHP_VERSION . "."); critical_error("Please refer to the installation instructions at http://pmmp.rtfd.io/en/rtfd/installation.html."); exit(1); } if(PHP_INT_SIZE < 8){ critical_error("Running " . \pocketmine\NAME . " with 32-bit systems/PHP is no longer supported."); critical_error("Please upgrade to a 64-bit system, or use a 64-bit PHP binary if this is a 64-bit system."); critical_error("Please refer to the installation instructions at http://pmmp.rtfd.io/en/rtfd/installation.html."); exit(1); } /* Dependencies check */ $errors = 0; if(php_sapi_name() !== "cli"){ critical_error("You must run " . \pocketmine\NAME . " using the CLI."); ++$errors; } $extensions = [ "bcmath" => "BC Math", "curl" => "cURL", "ctype" => "ctype", "date" => "Date", "hash" => "Hash", "json" => "JSON", "mbstring" => "Multibyte String", "openssl" => "OpenSSL", "pcre" => "PCRE", "phar" => "Phar", "pthreads" => "pthreads", "reflection" => "Reflection", "sockets" => "Sockets", "spl" => "SPL", "yaml" => "YAML", "zip" => "Zip", "zlib" => "Zlib" ]; foreach($extensions as $ext => $name){ if(!extension_loaded($ext)){ critical_error("Unable to find the $name ($ext) extension."); ++$errors; } } if(extension_loaded("pthreads")){ $pthreads_version = phpversion("pthreads"); if(substr_count($pthreads_version, ".") < 2){ $pthreads_version = "0.$pthreads_version"; } if(version_compare($pthreads_version, "3.1.7dev") < 0){ critical_error("pthreads >= 3.1.7dev is required, while you have $pthreads_version."); ++$errors; } } if(extension_loaded("leveldb")){ $leveldb_version = phpversion("leveldb"); if(version_compare($leveldb_version, "0.2.1") < 0){ critical_error("php-leveldb >= 0.2.1 is required, while you have $leveldb_version"); ++$errors; } } if(extension_loaded("pocketmine")){ critical_error("The native PocketMine extension is no longer supported."); ++$errors; } if($errors > 0){ critical_error("Please recompile PHP with the needed configuration, or refer to the installation instructions at http://pmmp.rtfd.io/en/rtfd/installation.html."); exit(1); } error_reporting(-1); if(\Phar::running(true) !== ""){ define('pocketmine\PATH', \Phar::running(true) . "/"); }else{ define('pocketmine\PATH', dirname(__FILE__, 3) . DIRECTORY_SEPARATOR); } define('pocketmine\COMPOSER_AUTOLOADER_PATH', \pocketmine\PATH . 'vendor/autoload.php'); if(is_file(\pocketmine\COMPOSER_AUTOLOADER_PATH)){ require_once(\pocketmine\COMPOSER_AUTOLOADER_PATH); }else{ critical_error("Composer autoloader not found."); critical_error("Please install/update Composer dependencies or use provided builds."); exit(1); } set_error_handler([Utils::class, 'errorExceptionHandler']); /* * We now use the Composer autoloader, but this autoloader is still for loading plugins. */ $autoloader = new \BaseClassLoader(); $autoloader->register(false); set_time_limit(0); //Who set it to 30 seconds?!?! ini_set("allow_url_fopen", '1'); ini_set("display_errors", '1'); ini_set("display_startup_errors", '1'); ini_set("default_charset", "utf-8"); ini_set("memory_limit", '-1'); define('pocketmine\START_TIME', microtime(true)); define('pocketmine\RESOURCE_PATH', \pocketmine\PATH . 'src' . DIRECTORY_SEPARATOR . 'pocketmine' . DIRECTORY_SEPARATOR . 'resources' . DIRECTORY_SEPARATOR); $opts = getopt("", ["data:", "plugins:", "no-wizard"]); define('pocketmine\DATA', isset($opts["data"]) ? $opts["data"] . DIRECTORY_SEPARATOR : realpath(getcwd()) . DIRECTORY_SEPARATOR); define('pocketmine\PLUGIN_PATH', isset($opts["plugins"]) ? $opts["plugins"] . DIRECTORY_SEPARATOR : realpath(getcwd()) . DIRECTORY_SEPARATOR . "plugins" . DIRECTORY_SEPARATOR); if(!file_exists(\pocketmine\DATA)){ mkdir(\pocketmine\DATA, 0777, true); } //Logger has a dependency on timezone $tzError = Timezone::init(); $logger = new MainLogger(\pocketmine\DATA . "server.log"); $logger->registerStatic(); foreach($tzError as $e){ $logger->warning($e); } unset($tzError); if(extension_loaded("xdebug")){ $logger->warning(PHP_EOL . PHP_EOL . PHP_EOL . "\tYou are running " . \pocketmine\NAME . " with xdebug enabled. This has a major impact on performance." . PHP_EOL . PHP_EOL); } if(\Phar::running(true) === ""){ $logger->warning("Non-packaged " . \pocketmine\NAME . " installation detected. Consider using a phar in production for better performance."); } $version = new VersionString(\pocketmine\BASE_VERSION, \pocketmine\IS_DEVELOPMENT_BUILD, \pocketmine\BUILD_NUMBER); define('pocketmine\VERSION', $version->getFullVersion(true)); $gitHash = str_repeat("00", 20); if(\Phar::running(true) === ""){ if(Utils::execute("git rev-parse HEAD", $out) === 0 and $out !== false and strlen($out = trim($out)) === 40){ $gitHash = trim($out); if(Utils::execute("git diff --quiet") === 1 or Utils::execute("git diff --cached --quiet") === 1){ //Locally-modified $gitHash .= "-dirty"; } } }else{ $phar = new \Phar(\Phar::running(false)); $meta = $phar->getMetadata(); if(isset($meta["git"])){ $gitHash = $meta["git"]; } } define('pocketmine\GIT_COMMIT', $gitHash); @define("INT32_MASK", is_int(0xffffffff) ? 0xffffffff : -1); @ini_set("opcache.mmap_base", bin2hex(random_bytes(8))); //Fix OPCache address errors $exitCode = 0; do{ if(!file_exists(\pocketmine\DATA . "server.properties") and !isset($opts["no-wizard"])){ $installer = new SetupWizard(); if(!$installer->run()){ $exitCode = -1; break; } } ThreadManager::init(); new Server($autoloader, $logger, \pocketmine\DATA, \pocketmine\PLUGIN_PATH); $logger->info("Stopping other threads"); $killer = new ServerKiller(8); $killer->start(PTHREADS_INHERIT_NONE); usleep(10000); //Fixes ServerKiller not being able to start on single-core machines if(ThreadManager::getInstance()->stopAll() > 0){ if(\pocketmine\DEBUG > 1){ echo "Some threads could not be stopped, performing a force-kill" . PHP_EOL . PHP_EOL; } Utils::kill(getmypid()); } }while(false); $logger->shutdown(); $logger->join(); echo Terminal::$FORMAT_RESET . PHP_EOL; exit($exitCode); }