2013-11-09 17:24:03 +01:00
|
|
|
<?php
|
|
|
|
|
2013-11-19 20:29:37 +01:00
|
|
|
namespace ManiaControl\Server;
|
|
|
|
|
2014-01-03 20:57:24 +01:00
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
|
|
|
use ManiaControl\Callbacks\CallbackManager;
|
2013-11-19 20:29:37 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
2013-12-09 13:45:58 +01:00
|
|
|
use ManiaControl\Players\Player;
|
2014-01-16 18:08:32 +01:00
|
|
|
use Maniaplanet\DedicatedServer\Structures\SystemInfos;
|
2013-11-19 20:29:37 +01:00
|
|
|
|
|
|
|
require_once __DIR__ . '/ServerCommands.php';
|
2013-11-09 17:24:03 +01:00
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Class providing Information about theconnected ManiaPlanet Server
|
2013-11-09 17:24:03 +01:00
|
|
|
*
|
2013-11-10 20:09:08 +01:00
|
|
|
* @author steeffeen & kremsy
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2014-01-03 20:57:24 +01:00
|
|
|
class Server implements CallbackListener {
|
2014-01-08 20:11:48 +01:00
|
|
|
|
2014-01-03 20:57:24 +01:00
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
const TABLE_SERVERS = 'mc_servers';
|
2014-01-08 20:11:48 +01:00
|
|
|
|
2014-01-06 15:54:39 +01:00
|
|
|
/**
|
|
|
|
* Public Properties
|
|
|
|
*/
|
|
|
|
public $index = -1;
|
|
|
|
public $ip = null;
|
|
|
|
public $port = -1;
|
|
|
|
public $p2pPort = -1;
|
|
|
|
public $login = null;
|
|
|
|
public $titleId = null;
|
2014-01-11 11:01:42 +01:00
|
|
|
public $dataDirectory = '';
|
2014-01-06 15:54:39 +01:00
|
|
|
public $serverCommands = null;
|
2014-01-17 18:58:15 +01:00
|
|
|
public $usageReporter = null;
|
2014-01-08 20:11:48 +01:00
|
|
|
|
2013-11-09 17:24:03 +01:00
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Private Properties
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 20:09:08 +01:00
|
|
|
private $maniaControl = null;
|
2013-11-09 17:24:03 +01:00
|
|
|
|
|
|
|
/**
|
2014-01-06 15:54:39 +01:00
|
|
|
* Construct a new Server
|
2013-11-10 20:09:08 +01:00
|
|
|
*
|
2014-01-03 20:57:24 +01:00
|
|
|
* @param ManiaControl $maniaControl
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 20:09:08 +01:00
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2014-01-05 14:41:19 +01:00
|
|
|
$this->initTables();
|
2014-01-08 20:11:48 +01:00
|
|
|
|
2014-01-06 15:54:39 +01:00
|
|
|
$this->serverCommands = new ServerCommands($maniaControl);
|
2014-01-17 18:58:15 +01:00
|
|
|
$this->usageReporter = new UsageReporter($maniaControl);
|
2014-01-08 20:11:48 +01:00
|
|
|
|
2014-01-03 20:57:24 +01:00
|
|
|
// Register for callbacks
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_ONINIT, $this, 'onInit');
|
2014-01-06 15:54:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Refetch the Server Properties
|
|
|
|
*/
|
|
|
|
private function updateProperties() {
|
|
|
|
// System info
|
2014-01-08 20:11:48 +01:00
|
|
|
$systemInfo = $this->getSystemInfo();
|
2014-01-16 18:08:32 +01:00
|
|
|
$this->ip = $systemInfo->publishedIp;
|
|
|
|
$this->port = $systemInfo->port;
|
|
|
|
$this->p2pPort = $systemInfo->p2PPort;
|
|
|
|
$this->login = $systemInfo->serverLogin;
|
|
|
|
$this->titleId = $systemInfo->titleId;
|
2014-01-08 20:11:48 +01:00
|
|
|
|
2014-01-06 15:54:39 +01:00
|
|
|
// Database index
|
2014-01-08 20:11:48 +01:00
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
|
|
|
$query = "INSERT INTO `" . self::TABLE_SERVERS . "` (
|
2014-01-06 15:54:39 +01:00
|
|
|
`login`
|
|
|
|
) VALUES (
|
|
|
|
?
|
|
|
|
) ON DUPLICATE KEY UPDATE
|
|
|
|
`index` = LAST_INSERT_ID(`index`);";
|
|
|
|
$statement = $mysqli->prepare($query);
|
2014-01-08 20:11:48 +01:00
|
|
|
if($mysqli->error) {
|
2014-01-06 15:54:39 +01:00
|
|
|
trigger_error($mysqli->error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$statement->bind_param('s', $this->login);
|
|
|
|
$statement->execute();
|
2014-01-08 20:11:48 +01:00
|
|
|
if($statement->error) {
|
2014-01-06 15:54:39 +01:00
|
|
|
trigger_error($statement->error);
|
|
|
|
$statement->close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->index = $statement->insert_id;
|
|
|
|
$statement->close();
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
2014-01-03 20:57:24 +01:00
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Initialize necessary Database Tables
|
2014-01-03 20:57:24 +01:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function initTables() {
|
2014-01-08 20:11:48 +01:00
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
|
|
|
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_SERVERS . "` (
|
2014-01-05 14:41:19 +01:00
|
|
|
`index` int(11) NOT NULL AUTO_INCREMENT,
|
2014-01-03 20:57:24 +01:00
|
|
|
`login` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
|
2014-01-05 14:41:19 +01:00
|
|
|
PRIMARY KEY (`index`),
|
2014-01-03 20:57:24 +01:00
|
|
|
UNIQUE KEY `login` (`login`)
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Servers' AUTO_INCREMENT=1;";
|
|
|
|
$statement = $mysqli->prepare($query);
|
2014-01-08 20:11:48 +01:00
|
|
|
if($mysqli->error) {
|
2014-01-03 20:57:24 +01:00
|
|
|
trigger_error($mysqli->error, E_USER_ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$statement->execute();
|
2014-01-08 20:11:48 +01:00
|
|
|
if($statement->error) {
|
2014-01-03 20:57:24 +01:00
|
|
|
trigger_error($statement->error, E_USER_ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$statement->close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Handle OnInit Callback
|
2014-01-03 20:57:24 +01:00
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
*/
|
|
|
|
public function onInit(array $callback) {
|
2014-01-06 15:54:39 +01:00
|
|
|
$this->updateProperties();
|
2014-01-03 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
2013-11-09 17:24:03 +01:00
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Fetch Game Data Directory
|
2013-11-10 20:09:08 +01:00
|
|
|
*
|
|
|
|
* @return string
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 20:09:08 +01:00
|
|
|
public function getDataDirectory() {
|
2014-01-11 11:01:42 +01:00
|
|
|
if($this->dataDirectory == '') {
|
2014-01-16 17:31:15 +01:00
|
|
|
if(!$this->dataDirectory = $this->maniaControl->client->gameDataDirectory()) {
|
2014-01-11 11:01:42 +01:00
|
|
|
trigger_error("Couldn't get data directory. " . $this->maniaControl->getClientErrorText());
|
|
|
|
return null;
|
|
|
|
}
|
2013-11-10 20:09:08 +01:00
|
|
|
}
|
2014-01-11 11:01:42 +01:00
|
|
|
return $this->dataDirectory;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Fetch Maps Directory
|
2013-11-09 17:24:03 +01:00
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-11-10 20:09:08 +01:00
|
|
|
public function getMapsDirectory() {
|
|
|
|
$dataDirectory = $this->getDataDirectory();
|
2014-01-08 20:11:48 +01:00
|
|
|
if(!$dataDirectory) {
|
|
|
|
return null;
|
|
|
|
}
|
2014-01-06 15:54:39 +01:00
|
|
|
return "{$dataDirectory}Maps/";
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Checks if ManiaControl has Access to the given Directory
|
2013-11-09 17:24:03 +01:00
|
|
|
*
|
2014-01-03 20:57:24 +01:00
|
|
|
* @param string $directory
|
2013-11-09 17:24:03 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2013-11-10 20:09:08 +01:00
|
|
|
public function checkAccess($directory) {
|
2014-01-08 20:11:48 +01:00
|
|
|
if(!$directory) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-10 20:09:08 +01:00
|
|
|
return (is_dir($directory) && is_writable($directory));
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
2014-01-05 14:41:19 +01:00
|
|
|
/**
|
|
|
|
* Get the Server Info
|
2013-11-10 20:09:08 +01:00
|
|
|
*
|
2014-01-03 20:57:24 +01:00
|
|
|
* @param bool $detailed
|
2013-11-10 20:09:08 +01:00
|
|
|
* @return array
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
|
|
|
public function getInfo($detailed = false) {
|
2014-01-08 20:11:48 +01:00
|
|
|
if($detailed) {
|
|
|
|
$login = $this->login;
|
2014-01-16 17:31:15 +01:00
|
|
|
if(!$info = $this->maniaControl->client->getDetailedPlayerInfo($login)) {
|
2013-11-10 20:09:08 +01:00
|
|
|
trigger_error("Couldn't fetch detailed server info. " . $this->maniaControl->getClientErrorText());
|
2013-11-09 17:24:03 +01:00
|
|
|
return null;
|
|
|
|
}
|
2014-01-16 17:31:15 +01:00
|
|
|
return $info;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2014-01-16 17:31:15 +01:00
|
|
|
|
|
|
|
if(!$info = $this->maniaControl->client->getMainServerPlayerInfo()) {
|
2013-11-10 20:09:08 +01:00
|
|
|
trigger_error("Couldn't fetch server info. " . $this->maniaControl->getClientErrorText());
|
|
|
|
return null;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2014-01-16 17:31:15 +01:00
|
|
|
return $info;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Get Server Options
|
2013-11-10 20:09:08 +01:00
|
|
|
*
|
|
|
|
* @return array
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
|
|
|
public function getOptions() {
|
2014-01-16 17:31:15 +01:00
|
|
|
if(!$options = $this->maniaControl->client->getServerOptions()) {
|
2013-11-10 20:09:08 +01:00
|
|
|
trigger_error("Couldn't fetch server options. " . $this->maniaControl->getClientErrorText());
|
2013-11-09 17:24:03 +01:00
|
|
|
return null;
|
|
|
|
}
|
2014-01-16 17:31:15 +01:00
|
|
|
return $options;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Fetch current Server Name
|
2013-11-10 20:09:08 +01:00
|
|
|
*
|
|
|
|
* @return string
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
|
|
|
public function getName() {
|
2014-01-16 17:31:15 +01:00
|
|
|
if(!$name = $this->maniaControl->client->getServerName()) {
|
2013-11-10 20:09:08 +01:00
|
|
|
trigger_error("Couldn't fetch server name. " . $this->maniaControl->getClientErrorText());
|
2013-11-09 17:24:03 +01:00
|
|
|
return null;
|
|
|
|
}
|
2014-01-16 17:31:15 +01:00
|
|
|
return $name;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Fetch Server Version
|
2013-11-10 20:09:08 +01:00
|
|
|
*
|
|
|
|
* @return string
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 20:09:08 +01:00
|
|
|
public function getVersion() {
|
2014-01-16 17:31:15 +01:00
|
|
|
if(!$version = $this->maniaControl->client->getVersion()) {
|
2013-11-10 20:09:08 +01:00
|
|
|
trigger_error("Couldn't fetch server version. " . $this->maniaControl->getClientErrorText());
|
2013-11-09 17:24:03 +01:00
|
|
|
return null;
|
|
|
|
}
|
2014-01-16 17:31:15 +01:00
|
|
|
return $version;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Fetch Server System Info
|
2013-11-10 20:09:08 +01:00
|
|
|
*
|
2014-01-16 18:08:32 +01:00
|
|
|
* @return SystemInfos
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 20:09:08 +01:00
|
|
|
public function getSystemInfo() {
|
2014-01-16 17:31:15 +01:00
|
|
|
if(!$systemInfo = $this->maniaControl->client->getSystemInfo()) {
|
2014-01-06 15:54:39 +01:00
|
|
|
trigger_error("Couldn't fetch server system info. " . $this->maniaControl->getClientErrorText());
|
2013-11-09 17:24:03 +01:00
|
|
|
return null;
|
|
|
|
}
|
2014-01-16 17:31:15 +01:00
|
|
|
return $systemInfo;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Fetch current Game Mode
|
2013-11-09 17:24:03 +01:00
|
|
|
*
|
2014-01-03 20:57:24 +01:00
|
|
|
* @param bool $stringValue
|
2014-01-08 20:11:48 +01:00
|
|
|
* @param int $parseValue
|
2013-11-09 17:24:03 +01:00
|
|
|
* @return int | string
|
|
|
|
*/
|
|
|
|
public function getGameMode($stringValue = false, $parseValue = null) {
|
2014-01-08 20:11:48 +01:00
|
|
|
if(is_int($parseValue)) {
|
2013-11-09 17:24:03 +01:00
|
|
|
$gameMode = $parseValue;
|
2014-01-08 20:11:48 +01:00
|
|
|
} else {
|
2014-01-16 17:31:15 +01:00
|
|
|
$gameMode = $this->maniaControl->client->getGameMode();
|
|
|
|
|
|
|
|
/*if(!$gameMode = $this->maniaControl->client->getGameMode()){
|
2013-11-10 20:09:08 +01:00
|
|
|
trigger_error("Couldn't fetch current game mode. " . $this->maniaControl->getClientErrorText());
|
2013-11-09 17:24:03 +01:00
|
|
|
return null;
|
2014-01-16 17:31:15 +01:00
|
|
|
}*/
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2014-01-08 20:11:48 +01:00
|
|
|
if($stringValue) {
|
|
|
|
switch($gameMode) {
|
2013-11-09 17:24:03 +01:00
|
|
|
case 0:
|
2014-01-06 15:54:39 +01:00
|
|
|
return 'Script';
|
2013-11-09 17:24:03 +01:00
|
|
|
case 1:
|
2014-01-06 15:54:39 +01:00
|
|
|
return 'Rounds';
|
2013-11-09 17:24:03 +01:00
|
|
|
case 2:
|
2014-01-06 15:54:39 +01:00
|
|
|
return 'TimeAttack';
|
2013-11-09 17:24:03 +01:00
|
|
|
case 3:
|
2014-01-06 15:54:39 +01:00
|
|
|
return 'Team';
|
2013-11-09 17:24:03 +01:00
|
|
|
case 4:
|
2014-01-06 15:54:39 +01:00
|
|
|
return 'Laps';
|
2013-11-09 17:24:03 +01:00
|
|
|
case 5:
|
2014-01-06 15:54:39 +01:00
|
|
|
return 'Cup';
|
2013-11-09 17:24:03 +01:00
|
|
|
case 6:
|
2014-01-06 15:54:39 +01:00
|
|
|
return 'Stunts';
|
2013-11-09 17:24:03 +01:00
|
|
|
default:
|
2014-01-06 15:54:39 +01:00
|
|
|
return 'Unknown';
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $gameMode;
|
|
|
|
}
|
2013-11-10 20:09:08 +01:00
|
|
|
|
2013-11-09 17:24:03 +01:00
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Retrieve Validation Replay for the given Player
|
2013-11-09 17:24:03 +01:00
|
|
|
*
|
2014-01-03 20:57:24 +01:00
|
|
|
* @param Player $player
|
2013-11-10 20:09:08 +01:00
|
|
|
* @return string
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 20:09:08 +01:00
|
|
|
public function getValidationReplay(Player $player) {
|
2014-01-16 17:31:15 +01:00
|
|
|
if(!$replay = $this->maniaControl->client->getValidationReplay($player->login)) {
|
2013-11-10 20:09:08 +01:00
|
|
|
trigger_error("Couldn't get validation replay of '{$player->login}'. " . $this->maniaControl->getClientErrorText());
|
2013-11-09 17:24:03 +01:00
|
|
|
return null;
|
|
|
|
}
|
2014-01-16 17:31:15 +01:00
|
|
|
return $replay;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Retrieve Ghost Replay for the given Player
|
2013-11-09 17:24:03 +01:00
|
|
|
*
|
2014-01-03 20:57:24 +01:00
|
|
|
* @param Player $player
|
2013-11-09 17:24:03 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
2013-11-10 20:09:08 +01:00
|
|
|
public function getGhostReplay(Player $player) {
|
2013-11-09 17:24:03 +01:00
|
|
|
$dataDir = $this->getDataDirectory();
|
2014-01-08 20:11:48 +01:00
|
|
|
if(!$this->checkAccess($dataDir)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2013-11-09 17:24:03 +01:00
|
|
|
// Build file name
|
2014-01-16 18:08:32 +01:00
|
|
|
$map = $this->getMap(); //TODO does that workm, where is the method?=
|
2013-11-09 17:24:03 +01:00
|
|
|
$gameMode = $this->getGameMode();
|
2014-01-08 20:11:48 +01:00
|
|
|
$time = time();
|
2013-12-09 13:45:58 +01:00
|
|
|
$fileName = "GhostReplays/Ghost.{$player->login}.{$gameMode}.{$time}.{$map['UId']}.Replay.Gbx";
|
2014-01-08 20:11:48 +01:00
|
|
|
|
2013-11-09 17:24:03 +01:00
|
|
|
// Save ghost replay
|
2014-01-16 17:31:15 +01:00
|
|
|
if(!$this->maniaControl->client->saveBestGhostsReplay($player->login, $fileName)) {
|
2013-11-10 20:09:08 +01:00
|
|
|
trigger_error("Couldn't save ghost replay. " . $this->maniaControl->getClientErrorText());
|
2013-11-09 17:24:03 +01:00
|
|
|
return null;
|
|
|
|
}
|
2014-01-08 20:11:48 +01:00
|
|
|
|
2013-11-09 17:24:03 +01:00
|
|
|
// Load replay file
|
2014-01-06 15:54:39 +01:00
|
|
|
$ghostReplay = file_get_contents("{$dataDir}Replays/{$fileName}");
|
2014-01-08 20:11:48 +01:00
|
|
|
if(!$ghostReplay) {
|
2013-11-09 17:24:03 +01:00
|
|
|
trigger_error("Couldn't retrieve saved ghost replay.");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return $ghostReplay;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-05 14:41:19 +01:00
|
|
|
* Wait for the Server to have the given Status
|
2013-11-10 20:09:08 +01:00
|
|
|
*
|
2014-01-03 20:57:24 +01:00
|
|
|
* @param int $statusCode
|
2013-11-10 20:09:08 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 20:09:08 +01:00
|
|
|
public function waitForStatus($statusCode = 4) {
|
2014-01-16 17:31:15 +01:00
|
|
|
$response = $this->maniaControl->client->getStatus();
|
2013-11-10 20:09:08 +01:00
|
|
|
// Check if server has the given status
|
2014-01-16 17:31:15 +01:00
|
|
|
if($response->code === 4) {
|
2014-01-08 20:11:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
2014-01-06 15:54:39 +01:00
|
|
|
// Server not yet in given status - Wait for it...
|
2014-01-08 20:11:48 +01:00
|
|
|
$waitBegin = time();
|
2013-11-10 14:56:37 +01:00
|
|
|
$maxWaitTime = 20;
|
2014-01-08 20:11:48 +01:00
|
|
|
$lastStatus = $response['Name'];
|
2013-12-31 18:24:40 +01:00
|
|
|
$this->maniaControl->log("Waiting for server to reach status {$statusCode}...");
|
|
|
|
$this->maniaControl->log("Current Status: {$lastStatus}");
|
2014-01-16 17:31:15 +01:00
|
|
|
while($response->code !== 4) {
|
2013-11-09 17:24:03 +01:00
|
|
|
sleep(1);
|
2014-01-16 17:31:15 +01:00
|
|
|
$response = $this->maniaControl->client->getStatus();
|
2014-01-08 20:11:48 +01:00
|
|
|
if($lastStatus !== $response['Name']) {
|
2014-01-06 15:54:39 +01:00
|
|
|
$this->maniaControl->log("New Status: {$response['Name']}");
|
2013-11-09 17:24:03 +01:00
|
|
|
$lastStatus = $response['Name'];
|
|
|
|
}
|
2014-01-08 20:11:48 +01:00
|
|
|
if(time() - $maxWaitTime > $waitBegin) {
|
2013-11-09 17:24:03 +01:00
|
|
|
// It took too long to reach the status
|
2014-01-03 20:57:24 +01:00
|
|
|
trigger_error("Server couldn't reach status {$statusCode} after {$maxWaitTime} seconds! " . $this->maniaControl->getClientErrorText());
|
2013-11-09 17:24:03 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|