133 lines
3.0 KiB
PHP
133 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace MCTeam\Dedimania;
|
|
|
|
use ManiaControl\ManiaControl;
|
|
use ManiaControl\Players\Player;
|
|
use Maniaplanet\DedicatedServer\Structures\Version;
|
|
|
|
/**
|
|
* ManiaControl Dedimania Plugin Data Structure
|
|
*
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
|
* @copyright 2014 ManiaControl Team
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
*/
|
|
class DedimaniaData {
|
|
/*
|
|
* Constants
|
|
*/
|
|
public $game;
|
|
public $path;
|
|
public $packmask;
|
|
public $serverVersion;
|
|
public $serverBuild;
|
|
public $tool;
|
|
public $version;
|
|
public $login;
|
|
public $code;
|
|
public $sessionId = '';
|
|
/** @var RecordData[] $records */
|
|
public $records = array();
|
|
/** @var DedimaniaPlayer[] $players */
|
|
public $players = array();
|
|
public $directoryAccessChecked = false;
|
|
public $serverMaxRank = 30;
|
|
|
|
/**
|
|
* Construct a new Dedimania Data Model
|
|
*
|
|
* @param string $serverLogin
|
|
* @param string $dedimaniaCode
|
|
* @param string $path
|
|
* @param string $packmask
|
|
* @param Version $serverVersion
|
|
*/
|
|
public function __construct($serverLogin, $dedimaniaCode, $path, $packmask, Version $serverVersion) {
|
|
$this->game = "TM2";
|
|
$this->login = $serverLogin;
|
|
$this->code = $dedimaniaCode;
|
|
$this->version = ManiaControl::VERSION;
|
|
$this->tool = "ManiaControl";
|
|
$this->path = $path;
|
|
$this->packmask = $packmask;
|
|
$this->serverVersion = $serverVersion->version;
|
|
$this->serverBuild = $serverVersion->build;
|
|
}
|
|
|
|
/**
|
|
* Sort the Records
|
|
*/
|
|
public function sortRecords() {
|
|
usort($this->records, function (RecordData $first, RecordData $second) {
|
|
if ($first->best == $second->best) {
|
|
return ($first->rank - $second->rank);
|
|
}
|
|
return ($first->best - $second->best);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Build the Data Array
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toArray() {
|
|
$array = array();
|
|
foreach (get_object_vars($this) as $key => $value) {
|
|
if ($key === 'records' || $key === 'sessionId' || $key === 'directoryAccessChecked' || $key === 'serverMaxRank' || $key === 'players') {
|
|
continue;
|
|
}
|
|
$array[ucfirst($key)] = $value;
|
|
}
|
|
return $array;
|
|
}
|
|
|
|
/**
|
|
* Get the Number of Records
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getRecordCount() {
|
|
return count($this->records);
|
|
}
|
|
|
|
/**
|
|
* Get Max Rank for a certain Player
|
|
*
|
|
* @param mixed $login
|
|
* @return int
|
|
*/
|
|
public function getPlayerMaxRank($login) {
|
|
$login = Player::parseLogin($login);
|
|
$maxRank = $this->serverMaxRank;
|
|
foreach ($this->players as $player) {
|
|
/** @var DedimaniaPlayer $player */
|
|
if ($player->login === $login) {
|
|
if ($player->maxRank > $maxRank) {
|
|
$maxRank = $player->maxRank;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
return $maxRank;
|
|
}
|
|
|
|
/**
|
|
* Add a Player to the Players array
|
|
*
|
|
* @param DedimaniaPlayer $player
|
|
*/
|
|
public function addPlayer(DedimaniaPlayer $player) {
|
|
$this->players[$player->login] = $player;
|
|
}
|
|
|
|
/**
|
|
* Remove a Dedimania Player by its login
|
|
*
|
|
* @param string $login
|
|
*/
|
|
public function removePlayer($login) {
|
|
unset($this->players[$login]);
|
|
}
|
|
}
|