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