77 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace ManiaControl\Maps;
 | 
						|
 | 
						|
use ManiaControl\Formatter;
 | 
						|
use ManiaControl\ManiaExchange\MXMapInfo;
 | 
						|
 | 
						|
/**
 | 
						|
 * Map Class
 | 
						|
 *
 | 
						|
 * @author kremsy & steeffeen
 | 
						|
 */
 | 
						|
class Map {
 | 
						|
	/**
 | 
						|
	 * Public Properties
 | 
						|
	 */
 | 
						|
	public $index = -1;
 | 
						|
	public $name = 'undefined';
 | 
						|
	public $uid = '';
 | 
						|
	public $fileName = '';
 | 
						|
	public $environment = '';
 | 
						|
	public $goldTime = -1;
 | 
						|
	public $copperPrice = -1;
 | 
						|
	public $mapType = '';
 | 
						|
	public $mapStyle = '';
 | 
						|
	public $nbCheckpoints = -1;
 | 
						|
	/** @var MXMapInfo $mx */
 | 
						|
	public $mx = null;
 | 
						|
	public $authorLogin = '';
 | 
						|
	public $authorNick = '';
 | 
						|
	public $authorZone = '';
 | 
						|
	public $authorEInfo = '';
 | 
						|
	public $comment = '';
 | 
						|
	public $titleUid = '';
 | 
						|
	public $startTime = -1;
 | 
						|
	public $lastUpdate = 0;
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Create a new Map Object from Rpc Data
 | 
						|
	 *
 | 
						|
	 * @param \Maniaplanet\DedicatedServer\Structures\Map $mpMap
 | 
						|
	 * @internal param \ManiaControl\ManiaControl $maniaControl
 | 
						|
	 */
 | 
						|
	public function __construct($mpMap = null) {
 | 
						|
		$this->startTime = time();
 | 
						|
 | 
						|
		if (!$mpMap) {
 | 
						|
			return;
 | 
						|
		}
 | 
						|
		$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;
 | 
						|
		$this->nbCheckpoints = $mpMap->nbCheckpoints;
 | 
						|
 | 
						|
		$this->authorNick = $this->authorLogin;
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Checks if a map Update is available
 | 
						|
	 *
 | 
						|
	 * @return bool
 | 
						|
	 */
 | 
						|
	public function updateAvailable() {
 | 
						|
 | 
						|
		if ($this->mx != null && ($this->lastUpdate < strtotime($this->mx->updated) || $this->uid != $this->mx->uid)) {
 | 
						|
			return true;
 | 
						|
		} else {
 | 
						|
			return false;
 | 
						|
		}
 | 
						|
	}
 | 
						|
} 
 |