TrackManiaControl/application/core/Maps/Map.php

87 lines
2.3 KiB
PHP
Raw Normal View History

<?php
namespace ManiaControl\Maps;
2013-12-30 23:53:42 +01:00
use ManiaControl\Formatter;
use ManiaControl\ManiaControl;
/**
2014-01-06 15:54:22 +01:00
* Map Class
*
* @author kremsy & steeffeen
*/
class Map {
/**
2014-01-06 15:54:22 +01:00
* Public Properties
*/
public $index = -1;
public $name = 'undefined';
public $uid = '';
public $fileName = '';
public $environment = '';
2014-01-05 13:56:05 +01:00
public $goldTime = -1;
public $copperPrice = -1;
public $mapType = '';
public $mapStyle = '';
public $nbCheckpoints = -1;
public $mx = null;
public $authorLogin = '';
public $authorNick = '';
public $authorZone = '';
public $authorEInfo = '';
public $comment = '';
public $titleUid = '';
2014-01-05 13:56:05 +01:00
public $startTime = -1;
/**
2014-01-06 15:54:22 +01:00
* Private Properties
*/
private $maniaControl = null;
/**
2014-01-06 15:54:22 +01:00
* Create a new Map Object from Rpc Data
*
2014-01-05 13:56:05 +01:00
* @param \ManiaControl\ManiaControl $maniaControl
* @param array $rpc_infos
*/
public function __construct(ManiaControl $maniaControl, $rpc_infos = null) {
2013-12-28 23:24:54 +01:00
$this->maniaControl = $maniaControl;
$this->startTime = time();
2014-01-05 13:56:05 +01:00
if (!$rpc_infos) return;
$this->name = $rpc_infos['Name'];
$this->uid = $rpc_infos['UId'];
$this->fileName = $rpc_infos['FileName'];
$this->authorLogin = $rpc_infos['Author'];
$this->environment = $rpc_infos['Environnement'];
$this->goldTime = $rpc_infos['GoldTime'];
$this->copperPrice = $rpc_infos['CopperPrice'];
$this->mapType = $rpc_infos['MapType'];
$this->mapStyle = $rpc_infos['MapStyle'];
2013-12-16 08:38:35 +01:00
if (isset($rpc_infos['NbCheckpoints'])) {
$this->nbCheckpoints = $rpc_infos['NbCheckpoints'];
}
$this->authorNick = $this->authorLogin;
2013-12-28 23:24:54 +01:00
$mapsDirectory = $this->maniaControl->server->getMapsDirectory();
if ($this->maniaControl->server->checkAccess($mapsDirectory)) {
2014-01-06 15:54:22 +01:00
$mapFetcher = new \GBXChallMapFetcher(true);
try {
2014-01-06 15:54:22 +01:00
$mapFetcher->processFile($mapsDirectory . $this->fileName);
$this->authorNick = FORMATTER::stripDirtyCodes($mapFetcher->authorNick);
$this->authorEInfo = $mapFetcher->authorEInfo;
$this->authorZone = $mapFetcher->authorZone;
$this->comment = $mapFetcher->comment;
}
catch (\Exception $e) {
2014-01-06 15:54:22 +01:00
trigger_error($e->getMessage());
}
}
2013-12-16 08:38:35 +01:00
2013-12-27 21:10:53 +01:00
// TODO: define timeout if mx is down,todo fetch all map infos at once (maybe way faster)
$serverInfo = $this->maniaControl->server->getSystemInfo();
$title = strtoupper(substr($serverInfo['TitleId'], 0, 2));
2014-01-02 20:50:09 +01:00
$this->mx = new \MXInfoFetcher($title, $this->uid, false);
}
}