TrackManiaControl/core/Maps/Map.php

114 lines
2.5 KiB
PHP
Raw Normal View History

<?php
namespace ManiaControl\Maps;
2014-01-28 16:54:23 +01:00
use ManiaControl\ManiaExchange\MXMapInfo;
use ManiaControl\Utils\Formatter;
/**
* ManiaControl Map Model Class
*
2014-05-02 17:50:30 +02:00
* @author ManiaControl Team <mail@maniacontrol.com>
* @copyright 2014 ManiaControl Team
2014-04-18 01:29:36 +02:00
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class Map {
/*
* Public properties
*/
public $index = -1;
public $name = 'undefined';
2014-05-15 15:13:18 +02:00
public $rawName = null;
public $uid = null;
public $fileName = null;
public $environment = null;
2014-04-18 01:29:36 +02:00
public $authorTime = -1;
2014-01-05 13:56:05 +01:00
public $goldTime = -1;
public $copperPrice = -1;
2014-05-15 15:13:18 +02:00
public $mapType = null;
public $mapStyle = null;
public $nbCheckpoints = -1;
2014-02-16 22:38:14 +01:00
public $nbLaps = -1;
2014-01-09 23:21:44 +01:00
/** @var MXMapInfo $mx */
public $mx = null;
2014-05-15 15:13:18 +02:00
public $authorLogin = null;
public $authorNick = null;
public $authorZone = null;
public $authorEInfo = null;
public $comment = null;
public $titleUid = null;
2014-01-05 13:56:05 +01:00
public $startTime = -1;
2014-01-09 23:21:44 +01:00
public $lastUpdate = 0;
public $karma = null;
2014-04-18 01:29:36 +02:00
/**
* Construct a new map instance from xmlrpc data
*
2014-01-16 18:08:32 +01:00
* @param \Maniaplanet\DedicatedServer\Structures\Map $mpMap
*/
2014-01-16 18:08:32 +01:00
public function __construct($mpMap = null) {
2014-01-12 20:56:25 +01:00
$this->startTime = time();
2014-01-08 21:52:42 +01:00
2014-02-16 00:51:30 +01:00
if (!$mpMap) {
2014-01-08 21:52:42 +01:00
return;
}
$this->name = Formatter::stripDirtyCodes($mpMap->name);
2014-03-12 13:07:02 +01:00
$this->rawName = $mpMap->name;
2014-02-16 00:51:30 +01:00
$this->uid = $mpMap->uId;
$this->fileName = $mpMap->fileName;
$this->authorLogin = $mpMap->author;
$this->environment = $mpMap->environnement;
2014-04-18 01:29:36 +02:00
$this->authorTime = $mpMap->authorTime;
2014-02-16 00:51:30 +01:00
$this->goldTime = $mpMap->goldTime;
$this->copperPrice = $mpMap->copperPrice;
$this->mapType = $mpMap->mapType;
$this->mapStyle = $mpMap->mapStyle;
$this->nbCheckpoints = $mpMap->nbCheckpoints;
2014-02-16 22:38:14 +01:00
$this->nbLaps = $mpMap->nbLaps;
2014-01-08 21:52:42 +01:00
2013-12-16 08:38:35 +01:00
$this->authorNick = $this->authorLogin;
2014-01-09 23:21:44 +01:00
}
2014-01-08 21:52:42 +01:00
2014-05-09 18:42:17 +02:00
/**
* Get the escaped map name
2014-05-09 18:42:17 +02:00
*
* @return string
*/
public function getEscapedName() {
return Formatter::escapeText($this->name);
}
2014-03-12 13:07:02 +01:00
/**
* Get the game type of the map
2014-03-12 13:07:02 +01:00
*
* @return string
*/
public function getGame() {
2014-05-02 17:50:30 +02:00
switch ($this->environment) {
2014-03-12 13:07:02 +01:00
case 'Storm':
return 'sm';
2014-03-12 13:07:02 +01:00
case 'Canyon':
case 'Stadium':
case 'Valley':
return 'tm';
2014-03-12 13:07:02 +01:00
}
return null;
2014-03-12 13:07:02 +01:00
}
2014-01-09 23:21:44 +01:00
/**
* Check whether a map update is available
2014-01-09 23:21:44 +01:00
*
* @return bool
*/
public function updateAvailable() {
return ($this->mx && ($this->lastUpdate < strtotime($this->mx->updated) || $this->uid !== $this->mx->uid));
}
2014-05-11 20:33:57 +02:00
/**
* Var_Dump the Map
*/
public function dump() {
var_dump(json_decode(json_encode($this)));
}
}