TrackManiaControl/application/core/Server/Server.php

407 lines
9.4 KiB
PHP
Raw Normal View History

2013-11-09 17:24:03 +01:00
<?php
namespace ManiaControl\Server;
2014-01-03 20:57:24 +01:00
use ManiaControl\Callbacks\CallbackListener;
use ManiaControl\Callbacks\CallbackManager;
use ManiaControl\FileUtil;
use ManiaControl\ManiaControl;
use ManiaControl\Players\Player;
require_once __DIR__ . '/ServerCommands.php';
2013-11-09 17:24:03 +01:00
/**
* Class providing information and commands for the connected maniaplanet server
*
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 {
/**
* Constants
*/
const TABLE_SERVERS = 'mc_servers';
2013-11-09 17:24:03 +01:00
/**
* Public properties
*/
public $config = null;
2014-01-03 20:57:24 +01:00
2013-11-09 17:24:03 +01:00
/**
* Private properties
*/
2013-11-10 20:09:08 +01:00
private $maniaControl = null;
private $serverCommands = null;
2014-01-03 20:57:24 +01:00
private $serverId = 0;
2013-11-09 17:24:03 +01:00
/**
* Construct 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-03 20:57:24 +01:00
2013-11-09 17:24:03 +01:00
// Load config
$this->config = FileUtil::loadConfig('server.xml');
2014-01-03 20:57:24 +01:00
// Register for callbacks
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_ONINIT, $this, 'onInit');
$this->serverCommands = new ServerCommands($maniaControl);
2014-01-03 20:57:24 +01:00
$this->initTables();
2013-11-09 17:24:03 +01:00
}
2014-01-03 20:57:24 +01:00
/**
* Initialize necessary database tables
*
* @return bool
*/
private function initTables() {
$mysqli = $this->maniaControl->database->mysqli;
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_SERVERS . "` (
`serverId` int(11) NOT NULL AUTO_INCREMENT,
`login` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`serverId`),
UNIQUE KEY `login` (`login`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Servers' AUTO_INCREMENT=1;";
$statement = $mysqli->prepare($query);
if($mysqli->error) {
trigger_error($mysqli->error, E_USER_ERROR);
return false;
}
$statement->execute();
if($statement->error) {
trigger_error($statement->error, E_USER_ERROR);
return false;
}
$statement->close();
return true;
}
/**
* Handle OnInit callback
*
* @param array $callback
*/
public function onInit(array $callback) {
$mysqli = $this->maniaControl->database->mysqli;
$login = $this->getLogin();
$query = "INSERT IGNORE INTO `" . self::TABLE_SERVERS . "` (
`login`
) VALUES (
?
);";
$statement = $mysqli->prepare($query);
if($mysqli->error) {
trigger_error($mysqli->error);
return false;
}
$statement->bind_param('s', $login);
$statement->execute();
if($statement->error) {
trigger_error($statement->error);
$statement->close();
return false;
}
$statement->close();
$query = "SELECT serverId FROM `" . self::TABLE_SERVERS . "` WHERE `login` = '" . $login . "';";
$result = $mysqli->query($query);
if(!$result) {
trigger_error($mysqli->error);
}
$row = $result->fetch_object();
$result->close();
$this->serverId = $row->serverId;
return true;
}
2013-11-09 17:24:03 +01:00
/**
2013-11-10 20:09:08 +01:00
* Fetch game data directory
*
* @return string
2013-11-09 17:24:03 +01:00
*/
2013-11-10 20:09:08 +01:00
public function getDataDirectory() {
2014-01-03 20:57:24 +01:00
if(!$this->maniaControl->client->query('GameDataDirectory')) {
2013-11-10 20:09:08 +01:00
trigger_error("Couldn't get data directory. " . $this->maniaControl->getClientErrorText());
return null;
}
return $this->maniaControl->client->getResponse();
2013-11-09 17:24:03 +01:00
}
/**
2013-11-10 20:09:08 +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-03 20:57:24 +01:00
if(!$dataDirectory) {
2013-11-09 17:24:03 +01:00
return null;
}
2013-11-11 18:37:53 +01:00
return $dataDirectory . 'Maps/';
2013-11-09 17:24:03 +01:00
}
/**
2013-11-10 20:09:08 +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-03 20:57:24 +01:00
if(!$directory) {
2013-11-10 20:09:08 +01:00
return false;
2013-11-09 17:24:03 +01:00
}
2013-11-10 20:09:08 +01:00
return (is_dir($directory) && is_writable($directory));
2013-11-09 17:24:03 +01:00
}
/**
* Fetch server login
2013-11-10 20:09:08 +01:00
*
* @return array
2013-11-09 17:24:03 +01:00
*/
public function getLogin() { //TODO save the info locally
2013-11-10 20:09:08 +01:00
$systemInfo = $this->getSystemInfo();
2014-01-03 20:57:24 +01:00
if(!$systemInfo) {
2013-11-10 20:09:08 +01:00
return null;
}
2013-11-09 17:24:03 +01:00
return $systemInfo['ServerLogin'];
}
/**
2013-11-10 20:09:08 +01:00
* Get server info
*
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-03 20:57:24 +01:00
if($detailed) {
2013-11-09 17:24:03 +01:00
$login = $this->getLogin();
2014-01-03 20:57:24 +01:00
if(!$this->maniaControl->client->query('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;
}
2013-11-10 20:09:08 +01:00
return $this->maniaControl->client->getResponse();
2013-11-09 17:24:03 +01:00
}
2014-01-03 20:57:24 +01:00
if(!$this->maniaControl->client->query('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
}
2013-11-10 20:09:08 +01:00
return $this->maniaControl->client->getResponse();
2013-11-09 17:24:03 +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-03 20:57:24 +01:00
if(!$this->maniaControl->client->query('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;
}
2013-11-10 20:09:08 +01:00
return $this->maniaControl->client->getResponse();
2013-11-09 17:24:03 +01:00
}
/**
* Fetch 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-03 20:57:24 +01:00
if(!$this->maniaControl->client->query('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;
}
2013-11-10 20:09:08 +01:00
return $this->maniaControl->client->getResponse();
2013-11-09 17:24:03 +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-03 20:57:24 +01:00
if(!$this->maniaControl->client->query('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;
}
2013-11-10 20:09:08 +01:00
return $this->maniaControl->client->getResponse();
2013-11-09 17:24:03 +01:00
}
/**
* Fetch server system info
2013-11-10 20:09:08 +01:00
*
* @return array
2013-11-09 17:24:03 +01:00
*/
2013-11-10 20:09:08 +01:00
public function getSystemInfo() {
2014-01-03 20:57:24 +01:00
if(!$this->maniaControl->client->query('GetSystemInfo')) {
trigger_error("Couldn't fetch server system info. " . $this->maniaControl->getClientErrorText($this->maniaControl->client));
2013-11-09 17:24:03 +01:00
return null;
}
2013-11-10 20:09:08 +01:00
return $this->maniaControl->client->getResponse();
2013-11-09 17:24:03 +01:00
}
/**
* Fetch current game mode
*
2014-01-03 20:57:24 +01:00
* @param bool $stringValue
* @param int $parseValue
2013-11-09 17:24:03 +01:00
* @return int | string
*/
public function getGameMode($stringValue = false, $parseValue = null) {
2014-01-03 20:57:24 +01:00
if(is_int($parseValue)) {
2013-11-09 17:24:03 +01:00
$gameMode = $parseValue;
2014-01-03 20:57:24 +01:00
} else {
if(!$this->maniaControl->client->query('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;
}
2013-11-10 20:09:08 +01:00
$gameMode = $this->maniaControl->client->getResponse();
2013-11-09 17:24:03 +01:00
}
2014-01-03 20:57:24 +01:00
if($stringValue) {
switch($gameMode) {
2013-11-09 17:24:03 +01:00
case 0:
2014-01-03 20:57:24 +01:00
{
return 'Script';
}
2013-11-09 17:24:03 +01:00
case 1:
2014-01-03 20:57:24 +01:00
{
return 'Rounds';
}
2013-11-09 17:24:03 +01:00
case 2:
2014-01-03 20:57:24 +01:00
{
return 'TimeAttack';
}
2013-11-09 17:24:03 +01:00
case 3:
2014-01-03 20:57:24 +01:00
{
return 'Team';
}
2013-11-09 17:24:03 +01:00
case 4:
2014-01-03 20:57:24 +01:00
{
return 'Laps';
}
2013-11-09 17:24:03 +01:00
case 5:
2014-01-03 20:57:24 +01:00
{
return 'Cup';
}
2013-11-09 17:24:03 +01:00
case 6:
2014-01-03 20:57:24 +01:00
{
return 'Stunts';
}
2013-11-09 17:24:03 +01:00
default:
{
2014-01-03 20:57:24 +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
/**
2013-11-10 20:09:08 +01:00
* Retrieve validation replay for 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-03 20:57:24 +01:00
if(!$this->maniaControl->client->query('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;
}
2013-11-10 20:09:08 +01:00
return $this->maniaControl->client->getResponse();
2013-11-09 17:24:03 +01:00
}
/**
2013-11-10 20:09:08 +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-03 20:57:24 +01:00
if(!$this->checkAccess($dataDir)) {
2013-11-09 17:24:03 +01:00
return null;
}
2014-01-03 20:57:24 +01:00
2013-11-09 17:24:03 +01:00
// Build file name
2014-01-03 20:57:24 +01:00
$map = $this->getMap();
2013-11-09 17:24:03 +01:00
$gameMode = $this->getGameMode();
2014-01-03 20:57:24 +01:00
$time = time();
$fileName = "GhostReplays/Ghost.{$player->login}.{$gameMode}.{$time}.{$map['UId']}.Replay.Gbx";
2014-01-03 20:57:24 +01:00
2013-11-09 17:24:03 +01:00
// Save ghost replay
2014-01-03 20:57:24 +01:00
if(!$this->maniaControl->client->query('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-03 20:57:24 +01:00
2013-11-09 17:24:03 +01:00
// Load replay file
$ghostReplay = file_get_contents($dataDir . 'Replays/' . $fileName);
2014-01-03 20:57:24 +01:00
if(!$ghostReplay) {
2013-11-09 17:24:03 +01:00
trigger_error("Couldn't retrieve saved ghost replay.");
return null;
}
return $ghostReplay;
}
/**
* Waits 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) {
$this->maniaControl->client->query('GetStatus');
$response = $this->maniaControl->client->getResponse();
// Check if server has the given status
2014-01-03 20:57:24 +01:00
if($response['Code'] === 4) {
2013-11-10 20:09:08 +01:00
return true;
}
2013-11-09 17:24:03 +01:00
// Server not yet in given status -> Wait for it...
2014-01-03 20:57:24 +01:00
$waitBegin = time();
$maxWaitTime = 20;
2014-01-03 20:57:24 +01:00
$lastStatus = $response['Name'];
$this->maniaControl->log("Waiting for server to reach status {$statusCode}...");
$this->maniaControl->log("Current Status: {$lastStatus}");
2014-01-03 20:57:24 +01:00
while($response['Code'] !== 4) {
2013-11-09 17:24:03 +01:00
sleep(1);
2013-11-10 20:09:08 +01:00
$this->maniaControl->client->query('GetStatus');
$response = $this->maniaControl->client->getResponse();
2014-01-03 20:57:24 +01:00
if($lastStatus !== $response['Name']) {
$this->maniaControl->log("New Status: " . $response['Name']);
2013-11-09 17:24:03 +01:00
$lastStatus = $response['Name'];
}
2014-01-03 20:57:24 +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;
}
2014-01-03 21:06:24 +01:00
/**
* @return int
*/
public function getServerId() {
return $this->serverId;
}
2013-11-09 17:24:03 +01:00
}