ManiaControl property in player class

This commit is contained in:
Steffen Schröder 2014-05-09 17:30:43 +02:00
parent 49f3953abf
commit e8bcae081a
2 changed files with 42 additions and 34 deletions

View File

@ -3,6 +3,7 @@
namespace ManiaControl\Players;
use ManiaControl\Formatter;
use ManiaControl\ManiaControl;
/**
* Player Model Class
@ -58,13 +59,20 @@ class Player {
public $autoTarget = false;
public $currentTargetId = 0;
/*
* Private Properties
*/
private $maniaControl = null;
/**
* Construct a new Player
*
* @param ManiaControl $maniaControl
* @param bool $connected
*/
public function __construct($connected)
{
$this->isConnected = $connected;
public function __construct(ManiaControl $maniaControl, $connected) {
$this->maniaControl = $maniaControl;
$this->isConnected = (bool)$connected;
if ($connected) {
$this->joinTime = time();
}
@ -72,16 +80,16 @@ class Player {
/**
* Update from ManiaPlanet PlayerInfo structure
*
* @param \Maniaplanet\DedicatedServer\Structures\PlayerInfo $mpPlayer
*/
public function setInfo($mpPlayer)
{
$this->pid = $mpPlayer->playerId;
$this->login = $mpPlayer->login;
$this->nickname = Formatter::stripDirtyCodes($mpPlayer->nickName);
$this->rawNickname = $mpPlayer->nickName;
$this->teamId = $mpPlayer->teamId;
$this->isOfficial = $mpPlayer->isInOfficialMode;
public function setInfo($mpPlayer) {
$this->pid = $mpPlayer->playerId;
$this->login = $mpPlayer->login;
$this->nickname = Formatter::stripDirtyCodes($mpPlayer->nickName);
$this->rawNickname = $mpPlayer->nickName;
$this->teamId = $mpPlayer->teamId;
$this->isOfficial = $mpPlayer->isInOfficialMode;
//Flag Details
$this->forcedSpectatorState = $mpPlayer->forceSpectator;
@ -108,10 +116,10 @@ class Player {
/**
* Update from ManiaPlanet PlayerDetailedInfo structure
*
* @param \Maniaplanet\DedicatedServer\Structures\PlayerDetailedInfo $mpPlayer
*/
public function setDetailedInfo($mpPlayer)
{
public function setDetailedInfo($mpPlayer) {
$this->pid = $mpPlayer->playerId;
$this->login = $mpPlayer->login;
$this->nickname = Formatter::stripDirtyCodes($mpPlayer->nickName);
@ -156,6 +164,22 @@ class Player {
return $this->getPathPart(3);
}
/**
* Get the specified Part of the Path
*
* @param int $partNumber
* @return string
*/
public function getPathPart($partNumber) {
$pathParts = explode('|', $this->path);
for ($partIndex = $partNumber; $partIndex >= 0; $partIndex--) {
if (isset($pathParts[$partIndex])) {
return $pathParts[$partIndex];
}
}
return $this->path;
}
/**
* Get Country
*
@ -174,22 +198,6 @@ class Player {
return $this->getPathPart(1);
}
/**
* Get the specified Part of the Path
*
* @param int $partNumber
* @return string
*/
public function getPathPart($partNumber) {
$pathParts = explode('|', $this->path);
for ($partIndex = $partNumber; $partIndex >= 0; $partIndex--) {
if (isset($pathParts[$partIndex])) {
return $pathParts[$partIndex];
}
}
return $this->path;
}
/**
* Update the Flags of the Player
*

View File

@ -125,7 +125,7 @@ class PlayerManager implements CallbackListener, TimerListener {
$this->maniaControl->server->setTeamMode(true);
}
$player = new Player(true);
$player = new Player($this->maniaControl, true);
$player->setInfo($playerItem);
$player->setDetailedInfo($detailedPlayerInfo);
$player->hasJoinedGame = true;
@ -212,7 +212,7 @@ class PlayerManager implements CallbackListener, TimerListener {
$login = $callback[1][0];
try {
$playerInfo = $this->maniaControl->client->getDetailedPlayerInfo($login);
$player = new Player(true);
$player = new Player($this->maniaControl, true);
$player->setDetailedInfo($playerInfo);
$this->addPlayer($player);
@ -394,7 +394,7 @@ class PlayerManager implements CallbackListener, TimerListener {
return null;
}
$player = new Player(false);
$player = new Player($this->maniaControl, false);
$player->index = $row->index;
$player->login = $row->login;
$player->rawNickname = $row->nickname;
@ -479,7 +479,7 @@ class PlayerManager implements CallbackListener, TimerListener {
return null;
}
$player = new Player(false);
$player = new Player($this->maniaControl, false);
$player->index = $playerIndex;
$player->login = $row->login;
$player->rawNickname = $row->nickname;