This commit is contained in:
kremsy 2013-11-10 16:17:41 +01:00
parent 5bcf0ac4e7
commit 4da55c383e
2 changed files with 215 additions and 192 deletions

View File

@ -16,12 +16,13 @@ require_once __DIR__ . '/playerHandler.php';
require_once __DIR__ . '/pluginHandler.php'; require_once __DIR__ . '/pluginHandler.php';
require_once __DIR__ . '/server.php'; require_once __DIR__ . '/server.php';
require_once __DIR__ . '/settingManager.php'; require_once __DIR__ . '/settingManager.php';
require_once __DIR__ . '/settingConfigurator.php';
list($endiantest) = array_values(unpack('L1L', pack('V', 1))); list($endiantest) = array_values(unpack('L1L', pack('V', 1)));
if ($endiantest == 1) { if ($endiantest == 1) {
require_once __DIR__ . '/PhpRemote/GbxRemote.inc.php'; require_once __DIR__ . '/PhpRemote/GbxRemote.inc.php';
} }
else { else {
require_once __DIR__ . '/PhpRemote/GbxRemote.bem.php'; require_once __DIR__ . '/PhpRemote/GbxRemote.bem.php';
} }
/** /**
@ -30,201 +31,202 @@ else {
* @author steeffeen and Lukas * @author steeffeen and Lukas
*/ */
class ManiaControl { class ManiaControl {
/** /**
* Constants * Constants
*/ */
const VERSION = '0.1'; const VERSION = '0.1';
const API_VERSION = '2013-04-16'; const API_VERSION = '2013-04-16';
const DATE = 'd-m-y h:i:sa T'; const DATE = 'd-m-y h:i:sa T';
/** /**
* Public properties * Public properties
*/ */
public $authentication = null; public $authentication = null;
public $callbacks = null; public $callbacks = null;
public $chat = null; public $chat = null;
public $client = null; public $client = null;
public $commands = null; public $commands = null;
public $database = null; public $database = null;
public $manialinkIdHandler = null; public $manialinkIdHandler = null;
public $pluginHandler = null; public $pluginHandler = null;
public $server = null; public $server = null;
public $settingManager = null; public $settingManager = null;
public $settingConfigurator = null;
/**
* Private properties
*/
private $shutdownRequested = false;
/** /**
* Private properties * Construct ManiaControl
*/ */
private $shutdownRequested = false; public function __construct() {
$this->database = new Database($this);
$this->settingManager = new SettingManager($this);
$this->chat = new Chat($this);
$this->callbacks = new Callbacks($this);
$this->server = new Server($this);
$this->authentication = new Authentication($this);
$this->playerHandler = new PlayerHandler($this);
$this->manialinkIdHandler = new ManialinkIdHandler();
$this->commands = new Commands($this);
$this->pluginHandler = new PluginHandler($this);
$this->settingConfigurator = new SettingConfigurator($this);
}
/** /**
* Construct ManiaControl * Return message composed of client error message and error code
*/ *
public function __construct() { * @param object $client
$this->database = new Database($this); * @return string
$this->settingManager = new SettingManager($this); */
$this->chat = new Chat($this); public function getClientErrorText($client = null) {
$this->callbacks = new Callbacks($this); if (is_object($client)) {
$this->server = new Server($this); return $client->getErrorMessage() . ' (' . $client->getErrorCode() . ')';
$this->authentication = new Authentication($this); }
$this->playerHandler = new PlayerHandler($this); return $this->client->getErrorMessage() . ' (' . $this->client->getErrorCode() . ')';
$this->manialinkIdHandler = new ManialinkIdHandler(); }
$this->commands = new Commands($this);
$this->pluginHandler = new PluginHandler($this);
}
/** /**
* Return message composed of client error message and error code * Quit ManiaControl and log the given message
* */
* @param object $client public function quit($message = false) {
* @return string if ($this->client) {
*/ // Announce quit
public function getClientErrorText($client = null) { $this->chat->sendInformation('ManiaControl shutting down.');
if (is_object($client)) {
return $client->getErrorMessage() . ' (' . $client->getErrorCode() . ')';
}
return $this->client->getErrorMessage() . ' (' . $this->client->getErrorCode() . ')';
}
/** // Hide manialinks
* Quit ManiaControl and log the given message $this->client->query('SendHideManialinkPage');
*/ }
public function quit($message = false) {
if ($this->client) {
// Announce quit
$this->chat->sendInformation('ManiaControl shutting down.');
// Hide manialinks // Log quit reason
$this->client->query('SendHideManialinkPage'); if ($message) {
} error_log($message);
}
// Log quit reason // Shutdown
if ($message) { if ($this->client) {
error_log($message); $this->client->Terminate();
} }
// Shutdown error_log("Quitting ManiaControl!");
if ($this->client) { exit();
$this->client->Terminate(); }
}
error_log("Quitting ManiaControl!"); /**
exit(); * Run ManiaControl
} */
public function run() {
error_log('Starting ManiaControl v' . self::VERSION . '!');
/** // Load plugins
* Run ManiaControl $this->pluginHandler->loadPlugins();
*/
public function run() {
error_log('Starting ManiaControl v' . self::VERSION . '!');
// Load plugins // Connect to server
$this->pluginHandler->loadPlugins(); $this->connect();
// Connect to server // Loading finished
$this->connect(); error_log("Loading completed!");
// Loading finished // Announce ManiaControl
error_log("Loading completed!"); $this->chat->sendInformation('ManiaControl v' . self::VERSION . ' successfully started!');
// Announce ManiaControl // OnInit
$this->chat->sendInformation('ManiaControl v' . self::VERSION . ' successfully started!'); $this->callbacks->onInit();
// OnInit // Main loop
$this->callbacks->onInit(); while (!$this->shutdownRequested) {
$loopStart = microtime(true);
// Main loop // Disable script timeout
while (!$this->shutdownRequested) { set_time_limit(30);
$loopStart = microtime(true);
// Disable script timeout // Handle server callbacks
set_time_limit(30); $this->callbacks->handleCallbacks();
// Handle server callbacks // Yield for next tick
$this->callbacks->handleCallbacks(); $loopEnd = microtime(true);
$sleepTime = 300000 - $loopEnd + $loopStart;
if ($sleepTime > 0) {
usleep($sleepTime);
}
}
// Yield for next tick // Shutdown
$loopEnd = microtime(true); $this->client->Terminate();
$sleepTime = 300000 - $loopEnd + $loopStart; }
if ($sleepTime > 0) {
usleep($sleepTime);
}
}
// Shutdown /**
$this->client->Terminate(); * Connect to ManiaPlanet server
} */
private function connect() {
// Load remote client
$this->client = new \IXR_ClientMulticall_Gbx();
/** $host = $this->server->config->xpath('host');
* Connect to ManiaPlanet server if (!$host) trigger_error("Invalid server configuration (host).", E_USER_ERROR);
*/ $host = (string) $host[0];
private function connect() { $port = $this->server->config->xpath('port');
// Load remote client if (!$host) trigger_error("Invalid server configuration (port).", E_USER_ERROR);
$this->client = new \IXR_ClientMulticall_Gbx(); $port = (string) $port[0];
$host = $this->server->config->xpath('host'); error_log("Connecting to server at {$host}:{$port}...");
if (!$host) trigger_error("Invalid server configuration (host).", E_USER_ERROR);
$host = (string) $host[0];
$port = $this->server->config->xpath('port');
if (!$host) trigger_error("Invalid server configuration (port).", E_USER_ERROR);
$port = (string) $port[0];
error_log("Connecting to server at {$host}:{$port}..."); // Connect
if (!$this->client->InitWithIp($host, $port, 20)) {
trigger_error("Couldn't connect to server! " . $this->getClientErrorText(), E_USER_ERROR);
}
// Connect $login = $this->server->config->xpath('login');
if (!$this->client->InitWithIp($host, $port, 20)) { if (!$login) trigger_error("Invalid server configuration (login).", E_USER_ERROR);
trigger_error("Couldn't connect to server! " . $this->getClientErrorText(), E_USER_ERROR); $login = (string) $login[0];
} $pass = $this->server->config->xpath('pass');
if (!$pass) trigger_error("Invalid server configuration (password).", E_USER_ERROR);
$pass = (string) $pass[0];
$login = $this->server->config->xpath('login'); // Authenticate
if (!$login) trigger_error("Invalid server configuration (login).", E_USER_ERROR); if (!$this->client->query('Authenticate', $login, $pass)) {
$login = (string) $login[0]; trigger_error("Couldn't authenticate on server with user '{$login}'! " . $this->getClientErrorText(), E_USER_ERROR);
$pass = $this->server->config->xpath('pass'); }
if (!$pass) trigger_error("Invalid server configuration (password).", E_USER_ERROR);
$pass = (string) $pass[0];
// Authenticate // Enable callback system
if (!$this->client->query('Authenticate', $login, $pass)) { if (!$this->client->query('EnableCallbacks', true)) {
trigger_error("Couldn't authenticate on server with user '{$login}'! " . $this->getClientErrorText(), E_USER_ERROR); trigger_error("Couldn't enable callbacks! " . $this->getClientErrorText(), E_USER_ERROR);
} }
// Enable callback system // Wait for server to be ready
if (!$this->client->query('EnableCallbacks', true)) { if (!$this->server->waitForStatus($this->client, 4)) {
trigger_error("Couldn't enable callbacks! " . $this->getClientErrorText(), E_USER_ERROR); trigger_error("Server couldn't get ready!", E_USER_ERROR);
} }
// Wait for server to be ready // Set api version
if (!$this->server->waitForStatus($this->client, 4)) { if (!$this->client->query('SetApiVersion', self::API_VERSION)) {
trigger_error("Server couldn't get ready!", E_USER_ERROR); trigger_error(
} "Couldn't set API version '" . self::API_VERSION . "'! This might cause problems. " . $this->getClientErrorText());
}
// Set api version // Connect finished
if (!$this->client->query('SetApiVersion', self::API_VERSION)) { error_log("Server connection succesfully established!");
trigger_error(
"Couldn't set API version '" . self::API_VERSION . "'! This might cause problems. " . $this->getClientErrorText());
}
// Connect finished // Enable script callbacks if needed
error_log("Server connection succesfully established!"); if ($this->server->getGameMode() === 0) {
if (!$this->client->query('GetModeScriptSettings')) {
// Enable script callbacks if needed trigger_error("Couldn't get mode script settings. " . $this->getClientErrorText());
if ($this->server->getGameMode() === 0) { }
if (!$this->client->query('GetModeScriptSettings')) { else {
trigger_error("Couldn't get mode script settings. " . $this->getClientErrorText()); $scriptSettings = $this->client->getResponse();
} if (array_key_exists('S_UseScriptCallbacks', $scriptSettings)) {
else { $scriptSettings['S_UseScriptCallbacks'] = true;
$scriptSettings = $this->client->getResponse(); if (!$this->client->query('SetModeScriptSettings', $scriptSettings)) {
if (array_key_exists('S_UseScriptCallbacks', $scriptSettings)) { trigger_error("Couldn't set mode script settings to enable script callbacks. " . $this->getClientErrorText());
$scriptSettings['S_UseScriptCallbacks'] = true; }
if (!$this->client->query('SetModeScriptSettings', $scriptSettings)) { else {
trigger_error("Couldn't set mode script settings to enable script callbacks. " . $this->getClientErrorText()); error_log("Script callbacks successfully enabled.");
} }
else { }
error_log("Script callbacks successfully enabled."); }
} }
} }
}
}
}
} }
?> ?>

View File

@ -0,0 +1,21 @@
<?php
/**
* @author Lukas Kremsmayr and steeffeen
*/
namespace ManiaControl;
class settingConfigurator {
private $maniaControl = null;
public function __construct(ManiaControl $maniaControl){
$this->maniaControl = $maniaControl;
$this->maniaControl->callbacks->registerCallbackHandler(Callbacks::CB_MC_ONINIT, $this, 'onInit');
}
private function onInit(){
$this->maniaControl->chat->sendChat("test");
}
}