improved map object

This commit is contained in:
kremsy 2013-11-11 18:37:53 +01:00
parent b04356670e
commit ac1479c2df
5 changed files with 54 additions and 51 deletions

View File

@ -21,6 +21,7 @@ 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'; require_once __DIR__ . '/settingConfigurator.php';
require_once __DIR__ . '/map.php';
require_once __DIR__ . '/mapHandler.php'; require_once __DIR__ . '/mapHandler.php';
require_once __DIR__ . '/GbxDataFetcher/gbxdatafetcher.inc.php'; require_once __DIR__ . '/GbxDataFetcher/gbxdatafetcher.inc.php';
require_once __DIR__ . '/ManiaExchange/mxinfofetcher.inc.php'; require_once __DIR__ . '/ManiaExchange/mxinfofetcher.inc.php';
@ -76,8 +77,9 @@ class ManiaControl {
$this->chat = new Chat($this); $this->chat = new Chat($this);
$this->callbacks = new Callbacks($this); $this->callbacks = new Callbacks($this);
$this->server = new Server($this); $this->server = new Server($this);
$this->playerHandler = new PlayerHandler($this);
$this->authentication = new Authentication($this); $this->authentication = new Authentication($this);
$this->playerHandler = new PlayerHandler($this);
$this->mapHandler = new MapHandler($this);
$this->manialinkIdHandler = new ManialinkIdHandler(); $this->manialinkIdHandler = new ManialinkIdHandler();
$this->commands = new Commands($this); $this->commands = new Commands($this);
$this->pluginHandler = new PluginHandler($this); $this->pluginHandler = new PluginHandler($this);

View File

@ -8,72 +8,72 @@ namespace ManiaControl;
* @author kremsy & steeffeen * @author kremsy & steeffeen
*/ */
class map { class Map {
/**
* Private properties
*/
private $maniaControl = 0;
/**
* Public properties
*/
public $mapFetcher = null;
public $id = 0; public $id = 0;
public $name = ''; public $name = '';
public $uid = 0; public $uid = 0;
public $filename = ''; public $fileName = '';
public $environment = ''; public $environment = '';
public $mood = ''; public $goldTime; //format?
public $bronzetime; //format? public $copperPrice = 0;
public $silvertime; //format? public $mapType = '';
public $goldtime; //format? public $mapStyle = '';
public $authortime; //format?
public $copperprice = 0;
public $laprace = 0;
public $forcedlaps = 0;
public $nblaps = 0;
public $nbchecks = 0;
public $score = 0;
public $starttime = 0;
public $maptype = '';
public $mapstyle = '';
public $titleuid = 0;
// public $gbx; //needed? would be the whole gbx object
public $mx = null; public $mx = null;
public $authorLogin = ''; public $authorLogin = '';
public $authorNick = ''; public $authorNick = '';
public $authorZone = ''; public $authorZone = '';
public $authorEInfo; //format? public $authorEInfo = '';
public $comment = '';
public $titleUid = '';
public $starttime = 0;
//Todo: check RPC infos
// instantiates the map with an RPC response // instantiates the map with an RPC response
public function __construct($rpc_infos = null) { public function __construct(ManiaControl $maniaControl, $rpc_infos = null) {
$this->id = 0; $this->maniaControl = $maniaControl;
if ($rpc_infos) { if ($rpc_infos) {
$this->name = stripNewlines($rpc_infos['Name']); $this->name = $rpc_infos['Name']; //in aseco stripped new lines on name
$this->uid = $rpc_infos['UId']; $this->uid = $rpc_infos['UId'];
$this->filename = $rpc_infos['FileName']; $this->fileName = $rpc_infos['FileName'];
$this->authorLogin = $rpc_infos['Author']; $this->authorLogin = $rpc_infos['Author'];
$this->environment = $rpc_infos['Environnement']; $this->environment = $rpc_infos['Environnement'];
$this->mood = $rpc_infos['Mood']; $this->goldTime = $rpc_infos['GoldTime'];
$this->bronzetime = $rpc_infos['BronzeTime']; $this->copperPrice = $rpc_infos['CopperPrice'];
$this->silvertime = $rpc_infos['SilverTime']; $this->mapType = $rpc_infos['MapType'];
$this->goldtime = $rpc_infos['GoldTime']; $this->mapStyle = $rpc_infos['MapStyle'];
$this->authortime = $rpc_infos['AuthorTime'];
$this->copperprice = $rpc_infos['CopperPrice'];
$this->laprace = $rpc_infos['LapRace'];
$this->forcedlaps = 0;
$this->nblaps = $rpc_infos['NbLaps'];
$this->nbchecks = $rpc_infos['NbCheckpoints'];
$this->maptype = $rpc_infos['MapType'];
$this->mapstyle = $rpc_infos['MapStyle'];
$this->starttime = time(); $this->mapFetcher = new \GBXChallMapFetcher(true);
try{
$this->mapFetcher->processFile($this->maniaControl->server->getMapsDirectory() . $this->fileName);
} catch (Exception $e){
trigger_error($e->getMessage(), E_USER_WARNING);
}
$this->authorNick = $this->mapFetcher->authorNick;
$this->authorEInfo = $this->mapFetcher->authorEInfo;
$this->authorZone = $this->mapFetcher->authorZone;
$this->comment = $this->mapFetcher->comment;
//additional properties anyway in the mapfetcher object
//TODO: change to SM to gameerkennung
//TODO: define timeout if mx is down
$this->mx = new \MXInfoFetcher('SM', $this->uid, false); //SM -> change to gameerkennung
} else { } else {
$this->name = 'undefined'; $this->name = 'undefined';
} }
/* $mapFetcher = new \GBXChallMapFetcher(true); $this->starttime = time();
try{
$mapFetcher->processFile($this->mc->server->mapdir . $this->filename);
} catch (Exception $e){
trigger_error($e->getMessage(), E_USER_WARNING);
}
$this->authorNick = $mapFetcher->authorNick;
$this->authorEInfo = $mapFetcher->authorEInfo;
$this->authorZone = $mapFetcher->authorZone;
*/
$this->mx = new \MXInfoFetcher('SM', $this->uid, false); //SM -> change to gameerkennung
} }
} }

View File

@ -57,6 +57,7 @@ class mapHandler {
$this->maniaControl->client->query('GetMapList', 300, 0); $this->maniaControl->client->query('GetMapList', 300, 0);
$mapList = $this->maniaControl->client->getResponse(); $mapList = $this->maniaControl->client->getResponse();
foreach ($mapList as $map) { foreach ($mapList as $map) {
$map = new Map($this->maniaControl, $map);
$this->addMap($map); $this->addMap($map);
} }
} }

View File

@ -118,7 +118,7 @@ class PlayerHandler {
$player = $this->removePlayer($login); $player = $this->removePlayer($login);
if($this->maniaControl->settingManager->getSetting($this,"Leave Join Messages")){ if($this->maniaControl->settingManager->getSetting($this,"Leave Join Messages")){
$played = timeFormatter::formatTime(time() - $player->joinTime); $played = TimeFormatter::formatTime(time() - $player->joinTime);
$this->maniaControl->chat->sendChat($player->nickname . '$z $ff0has left the game. Played:$fff ' . $played); $this->maniaControl->chat->sendChat($player->nickname . '$z $ff0has left the game. Played:$fff ' . $played);
} }
} }

View File

@ -59,7 +59,7 @@ class Server {
if (!$dataDirectory) { if (!$dataDirectory) {
return null; return null;
} }
return $dataDirectory . 'UserData/Maps/'; return $dataDirectory . 'Maps/';
} }
/** /**