2013-12-18 15:48:33 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Players;
|
|
|
|
|
2013-12-19 21:59:10 +01:00
|
|
|
use FML\Controls\Control;
|
2013-12-18 15:48:33 +01:00
|
|
|
use FML\Controls\Frame;
|
2013-12-19 21:59:10 +01:00
|
|
|
use FML\Controls\Label;
|
2013-12-23 19:13:59 +01:00
|
|
|
use FML\Controls\Labels\Label_Button;
|
2013-12-18 23:35:33 +01:00
|
|
|
use FML\Controls\Labels\Label_Text;
|
2013-12-18 15:48:33 +01:00
|
|
|
use FML\Controls\Quad;
|
|
|
|
use FML\Controls\Quads\Quad_BgRaceScore2;
|
2013-12-23 19:13:59 +01:00
|
|
|
use FML\Controls\Quads\Quad_BgsPlayerCard;
|
2013-12-19 21:59:10 +01:00
|
|
|
use FML\Controls\Quads\Quad_Emblems;
|
2013-12-18 15:48:33 +01:00
|
|
|
use FML\Controls\Quads\Quad_Icons64x64_1;
|
|
|
|
use FML\ManiaLink;
|
2013-12-19 21:59:10 +01:00
|
|
|
use FML\Script\Script;
|
|
|
|
use FML\Script\Tooltips;
|
2013-12-18 23:35:33 +01:00
|
|
|
use ManiaControl\Admin\AuthenticationManager;
|
2013-12-18 15:48:33 +01:00
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
2013-12-19 21:59:10 +01:00
|
|
|
use ManiaControl\Callbacks\CallbackManager;
|
2013-12-24 13:27:59 +01:00
|
|
|
use ManiaControl\Formatter;
|
2013-12-18 15:48:33 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
use ManiaControl\Manialinks\ManialinkManager;
|
|
|
|
use ManiaControl\Manialinks\ManialinkPageAnswerListener;
|
|
|
|
|
2013-12-24 13:09:39 +01:00
|
|
|
/**
|
|
|
|
* PlayerList Widget Class
|
|
|
|
*
|
|
|
|
* @author steeffeen & kremsy
|
|
|
|
*/
|
2013-12-18 15:48:33 +01:00
|
|
|
class PlayerList implements ManialinkPageAnswerListener, CallbackListener {
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-18 15:48:33 +01:00
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
2013-12-19 21:59:10 +01:00
|
|
|
const ACTION_FORCE_RED = 'PlayerList.ForceRed';
|
|
|
|
const ACTION_FORCE_BLUE = 'PlayerList.ForceBlue';
|
|
|
|
const ACTION_FORCE_SPEC = 'PlayerList.ForceSpec';
|
2013-12-23 19:13:59 +01:00
|
|
|
const ACTION_PLAYER_ADV = 'PlayerList.PlayerAdvancedActions';
|
|
|
|
const ACTION_CLOSE_PLAYER_ADV = 'PlayerList.ClosePlayerAdvWidget';
|
2013-12-23 21:47:39 +01:00
|
|
|
const ACTION_WARN_PLAYER = 'PlayerList.WarnPlayer';
|
|
|
|
const ACTION_KICK_PLAYER = 'PlayerList.KickPlayer';
|
|
|
|
const ACTION_BAN_PLAYER = 'PlayerList.BanPlayer';
|
|
|
|
const ACTION_ADD_AS_MASTER = 'PlayerList.PlayerAddAsMaster';
|
|
|
|
const ACTION_ADD_AS_ADMIN = 'PlayerList.PlayerAddAsAdmin';
|
2013-12-31 12:17:25 +01:00
|
|
|
const ACTION_ADD_AS_MOD = 'PlayerList.PlayerAddAsModerator';
|
2013-12-26 11:25:10 +01:00
|
|
|
const ACTION_REVOKE_RIGHTS = 'PlayerList.RevokeRights';
|
2013-12-26 17:27:21 +01:00
|
|
|
const SHOWN_MAIN_WINDOW = -1;
|
2013-12-18 15:48:33 +01:00
|
|
|
/**
|
|
|
|
* Private properties
|
|
|
|
*/
|
|
|
|
private $maniaControl = null;
|
|
|
|
private $width;
|
|
|
|
private $height;
|
|
|
|
private $quadStyle;
|
|
|
|
private $quadSubstyle;
|
2013-12-19 21:59:10 +01:00
|
|
|
private $playersListShown = array();
|
2013-12-18 15:48:33 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new server commands instance
|
|
|
|
*
|
|
|
|
* @param ManiaControl $maniaControl
|
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
$this->maniaControl->manialinkManager->registerManialinkPageAnswerListener(self::ACTION_CLOSE_PLAYER_ADV, $this,
|
|
|
|
'closePlayerAdvancedWidget');
|
2013-12-29 22:52:07 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(ManialinkManager::CB_MAIN_WINDOW_CLOSED, $this, 'closeWidget');
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERMANIALINKPAGEANSWER, $this,
|
|
|
|
'handleManialinkPageAnswer');
|
|
|
|
|
|
|
|
// Update Widget Events
|
2013-12-23 21:52:30 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERINFOCHANGED, $this, 'updateWidget');
|
2013-12-29 13:18:27 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERDISCONNECTED, $this, 'updateWidget');
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERJOINED, $this, 'updateWidget');
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(AuthenticationManager::CB_AUTH_LEVEL_CHANGED, $this,
|
|
|
|
'updateWidget');
|
|
|
|
|
|
|
|
// settings
|
2013-12-29 10:03:58 +01:00
|
|
|
$this->width = $this->maniaControl->manialinkManager->styleManager->getListWidgetsWidth();
|
|
|
|
$this->height = $this->maniaControl->manialinkManager->styleManager->getListWidgetsHeight();
|
|
|
|
$this->quadStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultMainWindowStyle();
|
|
|
|
$this->quadSubstyle = $this->maniaControl->manialinkManager->styleManager->getDefaultMainWindowSubStyle();
|
2013-12-18 15:48:33 +01:00
|
|
|
}
|
|
|
|
|
2013-12-31 12:17:25 +01:00
|
|
|
public function addPlayerToShownList(Player $player, $showStatus = self::SHOWN_MAIN_WINDOW) {
|
2013-12-26 17:27:21 +01:00
|
|
|
$this->playersListShown[$player->login] = $showStatus;
|
|
|
|
}
|
2013-12-19 21:59:10 +01:00
|
|
|
|
2013-12-31 12:17:25 +01:00
|
|
|
public function showPlayerList(Player $player) {
|
2013-12-18 15:48:33 +01:00
|
|
|
$maniaLink = new ManiaLink(ManialinkManager::MAIN_MLID);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-19 21:59:10 +01:00
|
|
|
// Create script and features
|
|
|
|
$script = new Script();
|
|
|
|
$maniaLink->setScript($script);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// mainframe
|
2013-12-18 15:48:33 +01:00
|
|
|
$frame = new Frame();
|
|
|
|
$maniaLink->add($frame);
|
2013-12-31 12:17:25 +01:00
|
|
|
$frame->setSize($this->width, $this->height);
|
2013-12-18 15:48:33 +01:00
|
|
|
$frame->setPosition(0, 0);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Background Quad
|
2013-12-18 15:48:33 +01:00
|
|
|
$backgroundQuad = new Quad();
|
|
|
|
$frame->add($backgroundQuad);
|
2013-12-31 12:17:25 +01:00
|
|
|
$backgroundQuad->setSize($this->width, $this->height);
|
2013-12-18 15:48:33 +01:00
|
|
|
$backgroundQuad->setStyles($this->quadStyle, $this->quadSubstyle);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-18 15:48:33 +01:00
|
|
|
// Add Close Quad (X)
|
|
|
|
$closeQuad = new Quad_Icons64x64_1();
|
|
|
|
$frame->add($closeQuad);
|
|
|
|
$closeQuad->setPosition($this->width * 0.483, $this->height * 0.467, 3);
|
|
|
|
$closeQuad->setSize(6, 6);
|
|
|
|
$closeQuad->setSubStyle(Quad_Icons64x64_1::SUBSTYLE_QuitRace);
|
2013-12-24 13:05:10 +01:00
|
|
|
$closeQuad->setAction(ManialinkManager::ACTION_CLOSEWIDGET);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Start offsets
|
2013-12-18 15:48:33 +01:00
|
|
|
$x = -$this->width / 2;
|
|
|
|
$y = $this->height / 2;
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Headline
|
2013-12-18 15:48:33 +01:00
|
|
|
$headFrame = new Frame();
|
|
|
|
$frame->add($headFrame);
|
2013-12-19 21:59:10 +01:00
|
|
|
$headFrame->setY($y - 5);
|
2013-12-31 12:17:25 +01:00
|
|
|
// $array = array("Id" => $x + 5, "Nickname" => $x + 10, "Login" => $x + 40, "Ladder" => $x + 60,"Zone" => $x + 85);
|
|
|
|
if ($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$array = array("Id" => $x + 5, "Nickname" => $x + 18, "Login" => $x + 60, "Location" => $x + 91, "Actions" => $x + 135);
|
2013-12-19 21:59:10 +01:00
|
|
|
}
|
2013-12-31 12:17:25 +01:00
|
|
|
else {
|
|
|
|
$array = array("Id" => $x + 5, "Nickname" => $x + 18, "Login" => $x + 60, "Location" => $x + 91);
|
|
|
|
}
|
|
|
|
$this->maniaControl->manialinkManager->labelLine($headFrame, $array);
|
|
|
|
|
|
|
|
// get PlayerList
|
2013-12-18 15:48:33 +01:00
|
|
|
$players = $this->maniaControl->playerManager->getPlayers();
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-18 15:48:33 +01:00
|
|
|
$i = 1;
|
|
|
|
$y -= 10;
|
2013-12-31 12:17:25 +01:00
|
|
|
foreach ($players as $listPlayer) {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @var Player $listPlayer
|
|
|
|
*/
|
|
|
|
|
2013-12-19 21:59:10 +01:00
|
|
|
$path = $listPlayer->getProvince();
|
2013-12-18 15:48:33 +01:00
|
|
|
$playerFrame = new Frame();
|
|
|
|
$frame->add($playerFrame);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
if ($i % 2 != 0) {
|
2013-12-31 02:27:40 +01:00
|
|
|
$lineQuad = new Quad_BgsPlayerCard();
|
|
|
|
$playerFrame->add($lineQuad);
|
|
|
|
$lineQuad->setSize($this->width, 4);
|
|
|
|
$lineQuad->setSubStyle($lineQuad::SUBSTYLE_BgPlayerCardBig);
|
|
|
|
$lineQuad->setZ(0.001);
|
|
|
|
}
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// $array = array($i => $x + 5, $listPlayer->nickname => $x + 10, $listPlayer->login => $x + 50, $listPlayer->ladderRank =>
|
|
|
|
// $x + 60, $listPlayer->ladderScore => $x + 70, $path => $x + 85);
|
|
|
|
$array = array($i => $x + 5, $listPlayer->nickname => $x + 18, $listPlayer->login => $x + 60, $path => $x + 91);
|
|
|
|
$properties = array('profile' => $listPlayer->login, 'script' => $script);
|
|
|
|
$this->maniaControl->manialinkManager->labelLine($playerFrame, $array, $properties);
|
2013-12-18 15:48:33 +01:00
|
|
|
$playerFrame->setY($y);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Team Emblem
|
|
|
|
if ($listPlayer->teamId >= 0) { // Player is in a Team
|
|
|
|
$redQuad = new Quad_Emblems(); // TODO rename quads
|
2013-12-19 21:59:10 +01:00
|
|
|
$playerFrame->add($redQuad);
|
|
|
|
$redQuad->setX($x + 10);
|
|
|
|
$redQuad->setZ(0.1);
|
2013-12-31 12:17:25 +01:00
|
|
|
$redQuad->setSize(3.8, 3.8);
|
|
|
|
|
|
|
|
switch ($listPlayer->teamId) {
|
|
|
|
case 0:
|
|
|
|
$redQuad->setSubStyle($redQuad::SUBSTYLE_1);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
$redQuad->setSubStyle($redQuad::SUBSTYLE_2);
|
|
|
|
break;
|
2013-12-18 23:35:33 +01:00
|
|
|
}
|
2013-12-31 12:17:25 +01:00
|
|
|
}
|
|
|
|
else if ($listPlayer->isSpectator) { // Player is in Spectator Mode
|
2013-12-19 21:59:10 +01:00
|
|
|
$neutralQuad = new Quad_BgRaceScore2();
|
|
|
|
$playerFrame->add($neutralQuad);
|
|
|
|
$neutralQuad->setX($x + 10);
|
|
|
|
$neutralQuad->setZ(0.1);
|
|
|
|
$neutralQuad->setSubStyle($neutralQuad::SUBSTYLE_Spectator);
|
2013-12-31 12:17:25 +01:00
|
|
|
$neutralQuad->setSize(3.8, 3.8);
|
2013-12-19 21:59:10 +01:00
|
|
|
}
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Display country quad only on normal players
|
|
|
|
if (!$listPlayer->isFakePlayer()) {
|
|
|
|
// Nation Quad
|
2013-12-29 13:25:11 +01:00
|
|
|
$countryQuad = new Quad();
|
|
|
|
$playerFrame->add($countryQuad);
|
|
|
|
$countryCode = Formatter::mapCountry($listPlayer->getCountry());
|
|
|
|
$countryQuad->setImage("file://Skins/Avatars/Flags/{$countryCode}.dds");
|
|
|
|
$countryQuad->setX($x + 88);
|
2013-12-31 12:17:25 +01:00
|
|
|
$countryQuad->setSize(4, 4);
|
2013-12-29 13:25:11 +01:00
|
|
|
$countryQuad->setZ(-0.1);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Nation Description Label
|
2013-12-29 13:25:11 +01:00
|
|
|
$descriptionLabel = new Label();
|
|
|
|
$frame->add($descriptionLabel);
|
|
|
|
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
|
|
|
|
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
|
|
|
|
$descriptionLabel->setSize($this->width * 0.7, 4);
|
|
|
|
$descriptionLabel->setTextSize(2);
|
|
|
|
$descriptionLabel->setVisible(false);
|
|
|
|
$descriptionLabel->setText($listPlayer->nickname . " from " . $listPlayer->path);
|
2013-12-31 10:40:03 +01:00
|
|
|
$script->addTooltip($countryQuad, $descriptionLabel);
|
2013-12-29 13:25:11 +01:00
|
|
|
}
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Level Quad
|
2013-12-19 21:59:10 +01:00
|
|
|
$rightQuad = new Quad_BgRaceScore2();
|
|
|
|
$playerFrame->add($rightQuad);
|
|
|
|
$rightQuad->setX($x + 13);
|
2013-12-31 02:27:40 +01:00
|
|
|
$rightQuad->setZ(5);
|
2013-12-19 21:59:10 +01:00
|
|
|
$rightQuad->setSubStyle($rightQuad::SUBSTYLE_CupFinisher);
|
2013-12-31 12:17:25 +01:00
|
|
|
$rightQuad->setSize(7, 3.5);
|
|
|
|
|
2013-12-19 21:59:10 +01:00
|
|
|
$rightLabel = new Label_Text();
|
|
|
|
$playerFrame->add($rightLabel);
|
|
|
|
$rightLabel->setX($x + 13.9);
|
|
|
|
$rightLabel->setTextSize(0.8);
|
2013-12-31 02:27:40 +01:00
|
|
|
$rightLabel->setZ(10);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Description Label
|
2013-12-19 21:59:10 +01:00
|
|
|
$descriptionLabel = new Label();
|
|
|
|
$frame->add($descriptionLabel);
|
|
|
|
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
|
|
|
|
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
|
|
|
|
$descriptionLabel->setSize($this->width * 0.7, 4);
|
|
|
|
$descriptionLabel->setTextSize(2);
|
|
|
|
$descriptionLabel->setVisible(false);
|
2013-12-31 12:17:25 +01:00
|
|
|
$descriptionLabel->setText(
|
|
|
|
$this->maniaControl->authenticationManager->getAuthLevelName($listPlayer->authLevel) . " " . $listPlayer->nickname);
|
2013-12-31 10:40:03 +01:00
|
|
|
$script->addTooltip($rightQuad, $descriptionLabel);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
switch ($listPlayer->authLevel) {
|
|
|
|
case authenticationManager::AUTH_LEVEL_MASTERADMIN:
|
|
|
|
$rightLabel->setText("MA");
|
|
|
|
break;
|
|
|
|
case authenticationManager::AUTH_LEVEL_SUPERADMIN:
|
|
|
|
$rightLabel->setText("SA");
|
|
|
|
break;
|
|
|
|
case authenticationManager::AUTH_LEVEL_ADMIN:
|
|
|
|
$rightLabel->setText("AD");
|
|
|
|
break;
|
|
|
|
case authenticationManager::AUTH_LEVEL_OPERATOR:
|
|
|
|
$rightLabel->setText("MOD");
|
2013-12-19 21:59:10 +01:00
|
|
|
}
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-19 21:59:10 +01:00
|
|
|
$rightLabel->setTextColor("fff");
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
if ($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
|
|
|
|
// Further Player actions Quad
|
2013-12-19 21:59:10 +01:00
|
|
|
$playerQuad = new Quad_Icons64x64_1();
|
|
|
|
$playerFrame->add($playerQuad);
|
|
|
|
$playerQuad->setX($x + 132);
|
|
|
|
$playerQuad->setZ(0.1);
|
|
|
|
$playerQuad->setSubStyle($playerQuad::SUBSTYLE_Buddy);
|
2013-12-31 12:17:25 +01:00
|
|
|
$playerQuad->setSize(3.8, 3.8);
|
|
|
|
$playerQuad->setAction(self::ACTION_PLAYER_ADV . "." . $listPlayer->login);
|
|
|
|
|
|
|
|
// Further Player actions Mousover Description
|
2013-12-26 17:45:15 +01:00
|
|
|
$descriptionLabel = new Label();
|
|
|
|
$frame->add($descriptionLabel);
|
|
|
|
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
|
|
|
|
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
|
|
|
|
$descriptionLabel->setSize($this->width * 0.7, 4);
|
|
|
|
$descriptionLabel->setTextSize(2);
|
|
|
|
$descriptionLabel->setVisible(false);
|
|
|
|
$descriptionLabel->setText("Advanced Player Actions on " . $listPlayer->nickname);
|
2013-12-31 10:40:03 +01:00
|
|
|
$script->addTooltip($playerQuad, $descriptionLabel);
|
2013-12-31 12:17:25 +01:00
|
|
|
// $script->addProfileButton($playerQuad, $listPlayer->login);
|
|
|
|
|
|
|
|
// Force to Red-Team Quad
|
2013-12-19 21:59:10 +01:00
|
|
|
$redQuad = new Quad_Emblems();
|
|
|
|
$playerFrame->add($redQuad);
|
|
|
|
$redQuad->setX($x + 145);
|
|
|
|
$redQuad->setZ(0.1);
|
|
|
|
$redQuad->setSubStyle($redQuad::SUBSTYLE_2);
|
2013-12-31 12:17:25 +01:00
|
|
|
$redQuad->setSize(3.8, 3.8);
|
|
|
|
$redQuad->setAction(self::ACTION_FORCE_RED . "." . $listPlayer->login);
|
|
|
|
|
|
|
|
// Force to Red-Team Description Label
|
2013-12-19 21:59:10 +01:00
|
|
|
$descriptionLabel = new Label();
|
|
|
|
$frame->add($descriptionLabel);
|
|
|
|
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
|
|
|
|
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
|
|
|
|
$descriptionLabel->setSize($this->width * 0.7, 4);
|
|
|
|
$descriptionLabel->setTextSize(2);
|
|
|
|
$descriptionLabel->setVisible(false);
|
|
|
|
$descriptionLabel->setText("Force " . $listPlayer->nickname . '$z to Red Team!');
|
2013-12-31 10:40:03 +01:00
|
|
|
$script->addTooltip($redQuad, $descriptionLabel);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Force to Blue-Team Quad
|
2013-12-19 21:59:10 +01:00
|
|
|
$blueQuad = new Quad_Emblems();
|
|
|
|
$playerFrame->add($blueQuad);
|
|
|
|
$blueQuad->setX($x + 141);
|
|
|
|
$blueQuad->setZ(0.1);
|
|
|
|
$blueQuad->setSubStyle($blueQuad::SUBSTYLE_1);
|
2013-12-31 12:17:25 +01:00
|
|
|
$blueQuad->setSize(3.8, 3.8);
|
|
|
|
$blueQuad->setAction(self::ACTION_FORCE_BLUE . "." . $listPlayer->login);
|
|
|
|
|
|
|
|
// Force to Blue-Team Description Label
|
2013-12-19 21:59:10 +01:00
|
|
|
$descriptionLabel = new Label();
|
|
|
|
$frame->add($descriptionLabel);
|
|
|
|
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
|
|
|
|
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
|
|
|
|
$descriptionLabel->setSize($this->width * 0.7, 4);
|
|
|
|
$descriptionLabel->setTextSize(2);
|
|
|
|
$descriptionLabel->setVisible(false);
|
|
|
|
$descriptionLabel->setText("Force " . $listPlayer->nickname . '$z to Blue Team!');
|
2013-12-31 10:40:03 +01:00
|
|
|
$script->addTooltip($blueQuad, $descriptionLabel);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Force to Spectator Quad
|
2013-12-19 21:59:10 +01:00
|
|
|
$spectatorQuad = new Quad_BgRaceScore2();
|
|
|
|
$playerFrame->add($spectatorQuad);
|
|
|
|
$spectatorQuad->setX($x + 137);
|
|
|
|
$spectatorQuad->setZ(0.1);
|
|
|
|
$spectatorQuad->setSubStyle($spectatorQuad::SUBSTYLE_Spectator);
|
2013-12-31 12:17:25 +01:00
|
|
|
$spectatorQuad->setSize(3.8, 3.8);
|
|
|
|
$spectatorQuad->setAction(self::ACTION_FORCE_SPEC . "." . $listPlayer->login);
|
|
|
|
|
|
|
|
// Force to Spectator Description Label
|
2013-12-19 21:59:10 +01:00
|
|
|
$descriptionLabel = new Label();
|
|
|
|
$frame->add($descriptionLabel);
|
|
|
|
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
|
|
|
|
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
|
|
|
|
$descriptionLabel->setSize($this->width * 0.7, 4);
|
|
|
|
$descriptionLabel->setTextSize(2);
|
|
|
|
$descriptionLabel->setVisible(false);
|
|
|
|
$descriptionLabel->setText("Force " . $listPlayer->nickname . '$z to Spectator!');
|
2013-12-31 10:40:03 +01:00
|
|
|
$script->addTooltip($spectatorQuad, $descriptionLabel);
|
2013-12-18 23:35:33 +01:00
|
|
|
}
|
2013-12-18 15:48:33 +01:00
|
|
|
$i++;
|
|
|
|
$y -= 4;
|
|
|
|
}
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// show advanced window
|
|
|
|
if ($this->playersListShown[$player->login] != false && $this->playersListShown[$player->login] != self::SHOWN_MAIN_WINDOW) {
|
2013-12-26 17:45:15 +01:00
|
|
|
$frame = $this->showAdvancedPlayerWidget($this->playersListShown[$player->login]);
|
2013-12-26 17:27:21 +01:00
|
|
|
$maniaLink->add($frame);
|
|
|
|
}
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// render and display xml
|
2013-12-18 15:48:33 +01:00
|
|
|
$this->maniaControl->manialinkManager->displayWidget($maniaLink, $player);
|
|
|
|
}
|
|
|
|
|
2013-12-26 17:27:21 +01:00
|
|
|
/**
|
|
|
|
* Displays the Advanced Player Window
|
2013-12-31 12:17:25 +01:00
|
|
|
*
|
2013-12-26 17:27:21 +01:00
|
|
|
* @param Player $caller
|
2013-12-31 12:17:25 +01:00
|
|
|
* @param $login
|
2013-12-26 17:27:21 +01:00
|
|
|
*/
|
2013-12-31 12:17:25 +01:00
|
|
|
public function advancedPlayerWidget(Player $caller, $login) {
|
|
|
|
$this->playersListShown[$caller->login] = $login; // Show a certain player
|
|
|
|
$this->showPlayerList($caller); // reopen playerlist
|
2013-12-26 17:27:21 +01:00
|
|
|
}
|
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
/**
|
|
|
|
* Extra window with special actions on players like warn,kick, ban, authorization levels...
|
2013-12-31 12:17:25 +01:00
|
|
|
*
|
|
|
|
* @param $login
|
2013-12-26 17:27:21 +01:00
|
|
|
* @return Frame
|
2013-12-23 19:13:59 +01:00
|
|
|
*/
|
2013-12-31 12:17:25 +01:00
|
|
|
public function showAdvancedPlayerWidget($login) {
|
2013-12-29 13:18:27 +01:00
|
|
|
$player = $this->maniaControl->playerManager->getPlayer($login);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// todo all configurable or as constants
|
2013-12-23 19:13:59 +01:00
|
|
|
$x = $this->width / 2 + 2.5;
|
|
|
|
$width = 35;
|
2013-12-26 11:25:10 +01:00
|
|
|
$height = $this->height * 0.7;
|
2013-12-23 19:13:59 +01:00
|
|
|
$hAlign = Control::LEFT;
|
|
|
|
$style = Label_Text::STYLE_TextCardSmall;
|
|
|
|
$textSize = 1.5;
|
|
|
|
$textColor = 'FFF';
|
2013-12-26 11:25:10 +01:00
|
|
|
$quadWidth = $width - 7;
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// mainframe
|
2013-12-23 19:13:59 +01:00
|
|
|
$frame = new Frame();
|
2013-12-31 12:17:25 +01:00
|
|
|
$frame->setSize($width, $height);
|
2013-12-23 19:13:59 +01:00
|
|
|
$frame->setPosition($x + $width / 2, 0);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
// Add Close Quad (X)
|
|
|
|
$closeQuad = new Quad_Icons64x64_1();
|
|
|
|
$frame->add($closeQuad);
|
|
|
|
$closeQuad->setPosition($width * 0.4, $height * 0.43, 3);
|
|
|
|
$closeQuad->setSize(6, 6);
|
|
|
|
$closeQuad->setSubStyle(Quad_Icons64x64_1::SUBSTYLE_QuitRace);
|
2013-12-31 12:17:25 +01:00
|
|
|
$closeQuad->setAction(self::ACTION_CLOSE_PLAYER_ADV);
|
|
|
|
|
|
|
|
// Background Quad
|
2013-12-23 19:13:59 +01:00
|
|
|
$backgroundQuad = new Quad();
|
|
|
|
$frame->add($backgroundQuad);
|
2013-12-31 12:17:25 +01:00
|
|
|
$backgroundQuad->setSize($width, $height);
|
2013-12-23 19:13:59 +01:00
|
|
|
$backgroundQuad->setStyles($this->quadStyle, $this->quadSubstyle);
|
|
|
|
$backgroundQuad->setZ(0.1);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Show headline
|
2013-12-23 19:13:59 +01:00
|
|
|
$label = new Label_Text();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setHAlign($hAlign);
|
|
|
|
$label->setX(-$width / 2 + 5);
|
|
|
|
$label->setY($height / 2 - 5);
|
|
|
|
$label->setStyle($style);
|
|
|
|
$label->setTextSize($textSize);
|
|
|
|
$label->setText("Advanced Actions");
|
|
|
|
$label->setTextColor($textColor);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// Show Nickname
|
2013-12-23 19:13:59 +01:00
|
|
|
$label = new Label_Text();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setHAlign($hAlign);
|
|
|
|
$label->setX(0);
|
2013-12-31 12:17:25 +01:00
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
2013-12-23 19:13:59 +01:00
|
|
|
$label->setY($height / 2 - 8);
|
|
|
|
$label->setStyle($style);
|
|
|
|
$label->setTextSize($textSize);
|
|
|
|
$label->setText($player->nickname);
|
|
|
|
$label->setTextColor($textColor);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$y = $height / 2 - 14;
|
2013-12-31 12:17:25 +01:00
|
|
|
// Show Warn
|
2013-12-23 19:13:59 +01:00
|
|
|
$quad = new Quad_BgsPlayerCard();
|
|
|
|
$frame->add($quad);
|
|
|
|
$quad->setX(0);
|
|
|
|
$quad->setY($y);
|
2013-12-26 17:27:21 +01:00
|
|
|
$quad->setSubStyle($quad::SUBSTYLE_BgPlayerCardBig);
|
2013-12-26 11:25:10 +01:00
|
|
|
$quad->setSize($quadWidth, 5);
|
2013-12-31 12:17:25 +01:00
|
|
|
$quad->setAction(self::ACTION_WARN_PLAYER . "." . $login);
|
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$label = new Label_Button();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setX(0);
|
2013-12-31 12:17:25 +01:00
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
2013-12-23 19:13:59 +01:00
|
|
|
$label->setY($y);
|
|
|
|
$label->setStyle($style);
|
|
|
|
$label->setTextSize($textSize);
|
|
|
|
$label->setText("Warn");
|
|
|
|
$label->setTextColor($textColor);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$y -= 5;
|
2013-12-31 12:17:25 +01:00
|
|
|
// Show Kick
|
2013-12-23 19:13:59 +01:00
|
|
|
$quad = new Quad_BgsPlayerCard();
|
|
|
|
$frame->add($quad);
|
|
|
|
$quad->setX(0);
|
|
|
|
$quad->setY($y);
|
2013-12-26 17:27:21 +01:00
|
|
|
$quad->setSubStyle($quad::SUBSTYLE_BgPlayerCardBig);
|
2013-12-26 11:25:10 +01:00
|
|
|
$quad->setSize($quadWidth, 5);
|
2013-12-31 12:17:25 +01:00
|
|
|
$quad->setAction(self::ACTION_KICK_PLAYER . "." . $login);
|
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$label = new Label_Button();
|
|
|
|
$frame->add($label);
|
2013-12-31 12:17:25 +01:00
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
2013-12-23 19:13:59 +01:00
|
|
|
$label->setX(0);
|
|
|
|
$label->setY($y);
|
|
|
|
$label->setStyle($style);
|
|
|
|
$label->setTextSize($textSize);
|
|
|
|
$label->setText("Kick");
|
2013-12-31 02:27:40 +01:00
|
|
|
$label->setTextColor("F90");
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$y -= 5;
|
2013-12-31 12:17:25 +01:00
|
|
|
// Show Ban
|
2013-12-23 19:13:59 +01:00
|
|
|
$quad = new Quad_BgsPlayerCard();
|
|
|
|
$frame->add($quad);
|
|
|
|
$quad->setX(0);
|
|
|
|
$quad->setY($y);
|
2013-12-26 17:27:21 +01:00
|
|
|
$quad->setSubStyle($quad::SUBSTYLE_BgPlayerCardBig);
|
2013-12-26 11:25:10 +01:00
|
|
|
$quad->setSize($quadWidth, 5);
|
2013-12-31 12:17:25 +01:00
|
|
|
$quad->setAction(self::ACTION_BAN_PLAYER . "." . $login);
|
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$label = new Label_Button();
|
|
|
|
$frame->add($label);
|
2013-12-31 12:17:25 +01:00
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
2013-12-23 19:13:59 +01:00
|
|
|
$label->setX(0);
|
|
|
|
$label->setY($y);
|
|
|
|
$label->setStyle($style);
|
|
|
|
$label->setTextSize($textSize);
|
|
|
|
$label->setText("Ban");
|
2013-12-31 02:27:40 +01:00
|
|
|
$label->setTextColor("700");
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$y -= 10;
|
2013-12-31 12:17:25 +01:00
|
|
|
// Show Add as Master-Admin
|
2013-12-23 19:13:59 +01:00
|
|
|
$quad = new Quad_BgsPlayerCard();
|
|
|
|
$frame->add($quad);
|
|
|
|
$quad->setX(0);
|
|
|
|
$quad->setY($y);
|
2013-12-26 17:27:21 +01:00
|
|
|
$quad->setSubStyle($quad::SUBSTYLE_BgPlayerCardBig);
|
2013-12-26 11:25:10 +01:00
|
|
|
$quad->setSize($quadWidth, 5);
|
2013-12-31 12:17:25 +01:00
|
|
|
$quad->setAction(self::ACTION_ADD_AS_MASTER . "." . $login);
|
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$label = new Label_Button();
|
|
|
|
$frame->add($label);
|
2013-12-31 12:17:25 +01:00
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
2013-12-23 19:13:59 +01:00
|
|
|
$label->setX(0);
|
|
|
|
$label->setY($y);
|
|
|
|
$label->setStyle($style);
|
|
|
|
$label->setTextSize($textSize);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-31 02:27:40 +01:00
|
|
|
$label->setText("Set SuperAdmin");
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$label->setTextColor($textColor);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$y -= 5;
|
2013-12-31 12:17:25 +01:00
|
|
|
// Show Add as Admin
|
2013-12-23 19:13:59 +01:00
|
|
|
$quad = new Quad_BgsPlayerCard();
|
|
|
|
$frame->add($quad);
|
|
|
|
$quad->setX(0);
|
|
|
|
$quad->setY($y);
|
2013-12-26 17:27:21 +01:00
|
|
|
$quad->setSubStyle($quad::SUBSTYLE_BgPlayerCardBig);
|
2013-12-26 11:25:10 +01:00
|
|
|
$quad->setSize($quadWidth, 5);
|
2013-12-31 12:17:25 +01:00
|
|
|
$quad->setAction(self::ACTION_ADD_AS_ADMIN . "." . $login);
|
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$label = new Label_Button();
|
|
|
|
$frame->add($label);
|
2013-12-31 12:17:25 +01:00
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
2013-12-23 19:13:59 +01:00
|
|
|
$label->setX(0);
|
|
|
|
$label->setY($y);
|
|
|
|
$label->setStyle($style);
|
|
|
|
$label->setTextSize($textSize);
|
2013-12-31 02:27:40 +01:00
|
|
|
$label->setText("Set Admin");
|
2013-12-23 19:13:59 +01:00
|
|
|
$label->setTextColor($textColor);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$y -= 5;
|
2013-12-31 12:17:25 +01:00
|
|
|
// Show Add as Moderator
|
2013-12-23 19:13:59 +01:00
|
|
|
$quad = new Quad_BgsPlayerCard();
|
|
|
|
$frame->add($quad);
|
|
|
|
$quad->setX(0);
|
|
|
|
$quad->setY($y);
|
2013-12-26 17:27:21 +01:00
|
|
|
$quad->setSubStyle($quad::SUBSTYLE_BgPlayerCardBig);
|
2013-12-26 11:25:10 +01:00
|
|
|
$quad->setSize($quadWidth, 5);
|
2013-12-31 12:17:25 +01:00
|
|
|
$quad->setAction(self::ACTION_ADD_AS_MOD . "." . $login);
|
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
$label = new Label_Button();
|
|
|
|
$frame->add($label);
|
2013-12-31 12:17:25 +01:00
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
2013-12-23 19:13:59 +01:00
|
|
|
$label->setX(0);
|
|
|
|
$label->setY($y);
|
|
|
|
$label->setStyle($style);
|
|
|
|
$label->setTextSize($textSize);
|
2013-12-31 02:27:40 +01:00
|
|
|
$label->setText("Set Moderator");
|
2013-12-23 19:13:59 +01:00
|
|
|
$label->setTextColor($textColor);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
if ($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)) {
|
2013-12-26 11:25:10 +01:00
|
|
|
$y -= 5;
|
2013-12-31 12:17:25 +01:00
|
|
|
// Revoke Rights
|
2013-12-26 11:25:10 +01:00
|
|
|
$quad = new Quad_BgsPlayerCard();
|
|
|
|
$frame->add($quad);
|
|
|
|
$quad->setX(0);
|
|
|
|
$quad->setY($y);
|
2013-12-26 17:27:21 +01:00
|
|
|
$quad->setSubStyle($quad::SUBSTYLE_BgPlayerCardBig);
|
2013-12-26 11:25:10 +01:00
|
|
|
$quad->setSize($quadWidth, 5);
|
2013-12-31 12:17:25 +01:00
|
|
|
$quad->setAction(self::ACTION_REVOKE_RIGHTS . "." . $login);
|
|
|
|
|
2013-12-26 11:25:10 +01:00
|
|
|
$label = new Label_Button();
|
|
|
|
$frame->add($label);
|
2013-12-31 12:17:25 +01:00
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
2013-12-26 11:25:10 +01:00
|
|
|
$label->setX(0);
|
|
|
|
$label->setY($y);
|
|
|
|
$label->setStyle($style);
|
|
|
|
$label->setTextSize($textSize);
|
|
|
|
$label->setText("Revoke Rights");
|
2013-12-31 02:27:40 +01:00
|
|
|
$label->setTextColor("700");
|
2013-12-26 11:25:10 +01:00
|
|
|
}
|
2013-12-31 12:17:25 +01:00
|
|
|
|
2013-12-26 17:27:21 +01:00
|
|
|
return $frame;
|
2013-12-23 19:13:59 +01:00
|
|
|
}
|
2013-12-29 22:52:07 +01:00
|
|
|
|
2013-12-18 15:48:33 +01:00
|
|
|
/**
|
|
|
|
* Closes the widget
|
2013-12-31 12:17:25 +01:00
|
|
|
*
|
|
|
|
* @param array $callback
|
2013-12-18 15:48:33 +01:00
|
|
|
*/
|
2013-12-29 22:52:07 +01:00
|
|
|
public function closeWidget(array $callback) {
|
|
|
|
$player = $callback[1];
|
|
|
|
unset($this->playersListShown[$player->login]);
|
2013-12-18 15:48:33 +01:00
|
|
|
}
|
2013-12-19 21:59:10 +01:00
|
|
|
|
2013-12-23 19:13:59 +01:00
|
|
|
/**
|
|
|
|
* Closes the player advanced widget widget
|
2013-12-31 12:17:25 +01:00
|
|
|
*
|
|
|
|
* @param array $callback
|
2013-12-23 19:13:59 +01:00
|
|
|
* @param Player $player
|
|
|
|
*/
|
|
|
|
public function closePlayerAdvancedWidget(array $callback, Player $player) {
|
2013-12-26 17:38:23 +01:00
|
|
|
$this->playersListShown[$player->login] = self::SHOWN_MAIN_WINDOW;
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->showPlayerList($player); // overwrite the manialink
|
2013-12-23 19:13:59 +01:00
|
|
|
}
|
|
|
|
|
2013-12-19 21:59:10 +01:00
|
|
|
/**
|
2013-12-29 15:52:01 +01:00
|
|
|
* Called on ManialinkPageAnswer
|
2013-12-31 12:17:25 +01:00
|
|
|
*
|
2013-12-19 21:59:10 +01:00
|
|
|
* @param array $callback
|
|
|
|
*/
|
2013-12-31 12:17:25 +01:00
|
|
|
public function handleManialinkPageAnswer(array $callback) {
|
2013-12-19 21:59:10 +01:00
|
|
|
$actionId = $callback[1][2];
|
2013-12-23 20:57:50 +01:00
|
|
|
$actionArray = explode(".", $actionId);
|
2013-12-31 12:17:25 +01:00
|
|
|
|
|
|
|
// TODO maybe with ids instead of logins, lower network traffic
|
|
|
|
switch ($actionArray[0] . "." . $actionArray[1]) {
|
2013-12-23 20:57:50 +01:00
|
|
|
case self::ACTION_FORCE_BLUE:
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->playerManager->playerActions->forcePlayerToTeam($callback[1][1], $actionArray[2],
|
|
|
|
playerActions::BLUE_TEAM);
|
2013-12-23 20:57:50 +01:00
|
|
|
break;
|
|
|
|
case self::ACTION_FORCE_RED:
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->playerManager->playerActions->forcePlayerToTeam($callback[1][1], $actionArray[2],
|
|
|
|
playerActions::RED_TEAM);
|
2013-12-23 20:57:50 +01:00
|
|
|
break;
|
|
|
|
case self::ACTION_FORCE_SPEC:
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->playerManager->playerActions->forcePlayerToSpectator($callback[1][1], $actionArray[2],
|
|
|
|
playerActions::SPECTATOR_BUT_KEEP_SELECTABLE);
|
2013-12-23 20:57:50 +01:00
|
|
|
break;
|
|
|
|
case self::ACTION_WARN_PLAYER:
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->playerManager->playerActions->warnPlayer($callback[1][1], $actionArray[2]);
|
2013-12-23 20:57:50 +01:00
|
|
|
break;
|
|
|
|
case self::ACTION_KICK_PLAYER:
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->playerManager->playerActions->kickPlayer($callback[1][1], $actionArray[2]);
|
2013-12-23 20:57:50 +01:00
|
|
|
break;
|
|
|
|
case self::ACTION_BAN_PLAYER:
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->playerManager->playerActions->banPlayer($callback[1][1], $actionArray[2]);
|
2013-12-23 20:57:50 +01:00
|
|
|
break;
|
|
|
|
case self::ACTION_PLAYER_ADV:
|
|
|
|
$player = $this->maniaControl->playerManager->getPlayer($callback[1][1]);
|
2013-12-26 17:27:21 +01:00
|
|
|
$this->advancedPlayerWidget($player, $actionArray[2]);
|
2013-12-23 20:57:50 +01:00
|
|
|
break;
|
2013-12-26 11:25:10 +01:00
|
|
|
case self::ACTION_ADD_AS_MASTER:
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->playerManager->playerActions->grandAuthLevel($callback[1][1], $actionArray[2],
|
|
|
|
AuthenticationManager::AUTH_LEVEL_SUPERADMIN);
|
2013-12-26 11:25:10 +01:00
|
|
|
break;
|
|
|
|
case self::ACTION_ADD_AS_ADMIN:
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->playerManager->playerActions->grandAuthLevel($callback[1][1], $actionArray[2],
|
|
|
|
AuthenticationManager::AUTH_LEVEL_ADMIN);
|
2013-12-26 11:25:10 +01:00
|
|
|
break;
|
|
|
|
case self::ACTION_ADD_AS_MOD:
|
2013-12-31 12:17:25 +01:00
|
|
|
$this->maniaControl->playerManager->playerActions->grandAuthLevel($callback[1][1], $actionArray[2],
|
|
|
|
AuthenticationManager::AUTH_LEVEL_OPERATOR);
|
2013-12-26 11:25:10 +01:00
|
|
|
break;
|
|
|
|
case self::ACTION_REVOKE_RIGHTS:
|
|
|
|
$this->maniaControl->playerManager->playerActions->revokeAuthLevel($callback[1][1], $actionArray[2]);
|
|
|
|
break;
|
2013-12-23 20:57:50 +01:00
|
|
|
}
|
2013-12-19 21:59:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-12-23 21:52:30 +01:00
|
|
|
* Reopen the widget on PlayerInfoChanged / Player Connect and Disconnect
|
2013-12-31 12:17:25 +01:00
|
|
|
*
|
2013-12-19 21:59:10 +01:00
|
|
|
* @param array $callback
|
|
|
|
*/
|
2013-12-31 12:17:25 +01:00
|
|
|
public function updateWidget(array $callback) {
|
|
|
|
foreach ($this->playersListShown as $login => $shown) {
|
|
|
|
if ($shown) {
|
|
|
|
// Check if Shown player still exists
|
|
|
|
if ($shown != self::SHOWN_MAIN_WINDOW && $this->maniaControl->playerManager->getPlayer($shown) == null) {
|
2013-12-29 13:18:27 +01:00
|
|
|
$this->playersListShown[$login] = false;
|
|
|
|
}
|
2013-12-19 21:59:10 +01:00
|
|
|
$player = $this->maniaControl->playerManager->getPlayer($login);
|
2013-12-31 12:17:25 +01:00
|
|
|
if ($player != null) {
|
2013-12-24 16:35:42 +01:00
|
|
|
$this->showPlayerList($player);
|
2013-12-31 12:17:25 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// if player with the open widget disconnected remove him from the shownlist
|
2013-12-26 11:25:10 +01:00
|
|
|
unset($this->playersListShown[$login]);
|
2013-12-29 13:18:27 +01:00
|
|
|
}
|
2013-12-19 21:59:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-18 15:48:33 +01:00
|
|
|
}
|