114 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace ManiaControl\Maps;
 | |
| 
 | |
| use ManiaControl\ManiaExchange\MXMapInfo;
 | |
| use ManiaControl\Utils\Formatter;
 | |
| 
 | |
| /**
 | |
|  * ManiaControl Map Model Class
 | |
|  *
 | |
|  * @author    ManiaControl Team <mail@maniacontrol.com>
 | |
|  * @copyright 2014-2016 ManiaControl Team
 | |
|  * @license   http://www.gnu.org/licenses/ GNU General Public License, Version 3
 | |
|  */
 | |
| class Map {
 | |
| 	/*
 | |
| 	 * Public properties
 | |
| 	 */
 | |
| 	public $index = -1;
 | |
| 	public $name = 'undefined';
 | |
| 	public $rawName = null;
 | |
| 	public $uid = null;
 | |
| 	public $fileName = null;
 | |
| 	public $environment = null;
 | |
| 	public $authorTime = -1;
 | |
| 	public $goldTime = -1;
 | |
| 	public $copperPrice = -1;
 | |
| 	public $mapType = null;
 | |
| 	public $mapStyle = null;
 | |
| 	public $nbCheckpoints = -1;
 | |
| 	public $nbLaps = -1;
 | |
| 	/** @var MXMapInfo $mx */
 | |
| 	public $mx = null;
 | |
| 	public $authorLogin = null;
 | |
| 	public $authorNick = null;
 | |
| 	public $authorZone = null;
 | |
| 	public $authorEInfo = null;
 | |
| 	public $comment = null;
 | |
| 	public $titleUid = null;
 | |
| 	public $startTime = -1;
 | |
| 	public $lastUpdate = 0;
 | |
| 	public $karma = null;
 | |
| 
 | |
| 	/**
 | |
| 	 * Construct a new map instance from xmlrpc data
 | |
| 	 *
 | |
| 	 * @param \Maniaplanet\DedicatedServer\Structures\Map $mpMap
 | |
| 	 */
 | |
| 	public function __construct($mpMap = null) {
 | |
| 		$this->startTime = time();
 | |
| 
 | |
| 		if (!$mpMap) {
 | |
| 			return;
 | |
| 		}
 | |
| 		$this->name          = Formatter::stripDirtyCodes($mpMap->name);
 | |
| 		$this->rawName       = $mpMap->name;
 | |
| 		$this->uid           = $mpMap->uId;
 | |
| 		$this->fileName      = $mpMap->fileName;
 | |
| 		$this->authorLogin   = $mpMap->author;
 | |
| 		$this->environment   = $mpMap->environnement;
 | |
| 		$this->authorTime    = $mpMap->authorTime;
 | |
| 		$this->goldTime      = $mpMap->goldTime;
 | |
| 		$this->copperPrice   = $mpMap->copperPrice;
 | |
| 		$this->mapType       = $mpMap->mapType;
 | |
| 		$this->mapStyle      = $mpMap->mapStyle;
 | |
| 		$this->nbCheckpoints = $mpMap->nbCheckpoints;
 | |
| 		$this->nbLaps        = $mpMap->nbLaps;
 | |
| 
 | |
| 		$this->authorNick = $this->authorLogin;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Get the escaped map name
 | |
| 	 *
 | |
| 	 * @return string
 | |
| 	 */
 | |
| 	public function getEscapedName() {
 | |
| 		return Formatter::escapeText($this->name);
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Get the game type of the map
 | |
| 	 *
 | |
| 	 * @return string
 | |
| 	 */
 | |
| 	public function getGame() {
 | |
| 		switch ($this->environment) {
 | |
| 			case 'Storm':
 | |
| 				return 'sm';
 | |
| 			case 'Canyon':
 | |
| 			case 'Stadium':
 | |
| 			case 'Valley':
 | |
| 				return 'tm';
 | |
| 		}
 | |
| 		return null;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Check whether a map update is available
 | |
| 	 *
 | |
| 	 * @return bool
 | |
| 	 */
 | |
| 	public function updateAvailable() {
 | |
| 		return ($this->mx && ($this->lastUpdate < strtotime($this->mx->updated) || $this->uid !== $this->mx->uid));
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Var_Dump the Map
 | |
| 	 */
 | |
| 	public function dump() {
 | |
| 		var_dump(json_decode(json_encode($this)));
 | |
| 	}
 | |
| }
 |