TrackManiaControl/application/core/Maps/Map.php

80 lines
1.8 KiB
PHP
Raw Normal View History

<?php
namespace ManiaControl\Maps;
2013-12-30 23:53:42 +01:00
use ManiaControl\Formatter;
2014-01-28 16:54:23 +01:00
use ManiaControl\ManiaExchange\MXMapInfo;
/**
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;
2014-01-09 23:21:44 +01:00
/** @var MXMapInfo $mx */
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-09 23:21:44 +01:00
public $lastUpdate = 0;
2014-01-08 21:52:42 +01:00
/**
2014-01-06 15:54:22 +01:00
* Create a new Map Object from Rpc Data
*
2014-01-16 18:08:32 +01:00
* @param \Maniaplanet\DedicatedServer\Structures\Map $mpMap
2014-01-12 20:56:25 +01:00
* @internal param \ManiaControl\ManiaControl $maniaControl
*/
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-01-16 18:08:32 +01:00
if(!$mpMap) {
2014-01-08 21:52:42 +01:00
return;
}
2014-01-16 18:08:32 +01:00
$this->name = FORMATTER::stripDirtyCodes($mpMap->name);
$this->uid = $mpMap->uId;
$this->fileName = $mpMap->fileName;
$this->authorLogin = $mpMap->author;
$this->environment = $mpMap->environnement;
$this->goldTime = $mpMap->goldTime;
$this->copperPrice = $mpMap->copperPrice;
$this->mapType = $mpMap->mapType;
$this->mapStyle = $mpMap->mapStyle;
2014-01-09 23:21:44 +01:00
2014-01-16 18:08:32 +01:00
if(isset($mpMap->nbCheckpoints)) {
$this->nbCheckpoints = $mpMap->nbCheckpoints;
2013-12-16 08:38:35 +01:00
}
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-01-09 23:21:44 +01:00
/**
* Checks if a map Update is available
*
* @return bool
*/
public function updateAvailable() {
2014-01-15 20:40:14 +01:00
2014-01-12 21:39:27 +01:00
if($this->mx != null && ($this->lastUpdate < strtotime($this->mx->updated) || $this->uid != $this->mx->uid)) {
2014-01-09 23:21:44 +01:00
return true;
} else {
return false;
}
}
}