readded team plugins with proper names
added empty files for replacing old files
This commit is contained in:
95
application/plugins/Dedimania/DedimaniaData.php
Normal file
95
application/plugins/Dedimania/DedimaniaData.php
Normal file
@ -0,0 +1,95 @@
|
||||
<?php
|
||||
namespace Dedimania;
|
||||
|
||||
use ManiaControl\ManiaControl;
|
||||
use Maniaplanet\DedicatedServer\Structures\Version;
|
||||
|
||||
/**
|
||||
* ManiaControl Dedimania Plugin DataStructure
|
||||
*
|
||||
* @author kremsy and steeffeen
|
||||
* @copyright ManiaControl Copyright © 2014 ManiaControl Team
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class DedimaniaData {
|
||||
public $game;
|
||||
public $path;
|
||||
public $packmask;
|
||||
public $serverVersion;
|
||||
public $serverBuild;
|
||||
public $tool;
|
||||
public $version;
|
||||
public $login;
|
||||
public $code;
|
||||
public $sessionId = '';
|
||||
public $records = array();
|
||||
public $players = array();
|
||||
public $directoryAccessChecked = false;
|
||||
public $serverMaxRank = 30;
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
public function getRecordCount() {
|
||||
return count($this->records);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Max Rank for a certain Player
|
||||
*
|
||||
* @param $login
|
||||
* @return int
|
||||
*/
|
||||
public function getPlayerMaxRank($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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a Player to the Players array
|
||||
*
|
||||
* @param DedimaniaPlayer $player
|
||||
*/
|
||||
public function addPlayer(DedimaniaPlayer $player) {
|
||||
/** @var DedimaniaPlayer $player */
|
||||
$this->players[$player->login] = $player;
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes a Dedimania Player by its login
|
||||
*
|
||||
* @param string $player
|
||||
*/
|
||||
public function removePlayer($login) {
|
||||
unset($this->players[$login]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user