TrackManiaControl/application/core/Maps/Map.php

101 lines
2.3 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
* @copyright ManiaControl Copyright © 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class Map {
/*
2014-01-06 15:54:22 +01:00
* Public Properties
*/
public $index = -1;
public $name = 'undefined';
2014-02-24 20:20:17 +01:00
public $rawName = '';
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-02-16 22:38:14 +01:00
public $nbLaps = -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-02-16 00:51:30 +01:00
if (!$mpMap) {
2014-01-08 21:52:42 +01:00
return;
}
2014-02-16 00:51:30 +01:00
$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;
$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-03-12 13:07:02 +01:00
/**
* Get's the gameType of the Current Map
*
* @return string
*/
public function getGame() {
switch($this->environment) {
case 'Storm':
return "sm";
case 'Canyon':
case 'Stadium':
case 'Valley':
return "tm";
default:
return "";
}
}
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
if ($this->mx && ($this->lastUpdate < strtotime($this->mx->updated) || $this->uid != $this->mx->uid)) {
2014-01-09 23:21:44 +01:00
return true;
} else {
return false;
}
}
}