2013-11-13 01:43:12 +01:00
|
|
|
<?php
|
|
|
|
|
2013-11-28 03:47:08 +01:00
|
|
|
namespace ManiaControl\Admin;
|
2013-11-13 01:43:12 +01:00
|
|
|
|
2013-11-28 03:47:08 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
|
|
|
use FML\ManiaLink;
|
|
|
|
use FML\Controls\Control;
|
|
|
|
use FML\Controls\Frame;
|
|
|
|
use FML\Controls\Quad;
|
|
|
|
use ManiaControl\Players\Player;
|
|
|
|
use ManiaControl\Players\PlayerManager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class offering and managing the admin menu
|
|
|
|
*
|
|
|
|
* @author steeffeen & kremsy
|
|
|
|
*/
|
|
|
|
class AdminMenu implements CallbackListener {
|
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
const MLID_MENU = 'AdminMenu.MLID';
|
|
|
|
const SETTING_MENU_POSX = 'Menu Position: X';
|
|
|
|
const SETTING_MENU_POSY = 'Menu Position: Y';
|
|
|
|
const SETTING_MENU_ITEMSIZE = 'Menu Item Size';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Private properties
|
|
|
|
*/
|
|
|
|
private $maniaControl = null;
|
|
|
|
private $manialink = null;
|
|
|
|
private $menuItems = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new admin menu
|
|
|
|
*
|
|
|
|
* @param ManiaControl $maniaControl
|
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
|
|
|
|
|
|
|
// Init settings
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_MENU_POSX, 130.);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_MENU_POSY, -70.);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_MENU_ITEMSIZE, 6.);
|
|
|
|
|
|
|
|
// Register for callbacks
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_ONINIT, $this, 'handleOnInit');
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERJOINED, $this, 'handlePlayerJoined');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a new menu item
|
|
|
|
*
|
|
|
|
* @param Control $control
|
|
|
|
* @param float $order
|
|
|
|
*/
|
|
|
|
public function addMenuItem(Control $control, $order = 0.) {
|
|
|
|
if (!isset($this->menuItems[$order])) {
|
|
|
|
$this->menuItems[$order] = array();
|
|
|
|
}
|
|
|
|
array_push($this->menuItems[$order], $control);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle ManiaControl OnInit callback
|
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
*/
|
|
|
|
public function handleOnInit(array $callback) {
|
|
|
|
$this->buildManialink();
|
|
|
|
$manialinkText = $this->manialink->render()->saveXML();
|
|
|
|
$players = $this->maniaControl->playerManager->getPlayers();
|
|
|
|
foreach ($players as $player) {
|
|
|
|
if (!$this->checkPlayerRight($player)) continue;
|
|
|
|
$this->maniaControl->manialinkManager->sendManialink($manialinkText, $player->login);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle PlayerConnect callback
|
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
*/
|
|
|
|
public function handlePlayerJoined(array $callback) {
|
|
|
|
$player = $callback[1];
|
|
|
|
if (!$player || !$this->checkPlayerRight($player)) return;
|
|
|
|
$this->buildManialink();
|
|
|
|
$manialinkText = $this->manialink->render()->saveXML();
|
|
|
|
$this->maniaControl->manialinkManager->sendManialink($manialinkText, $player->login);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the player has access to the admin menu
|
|
|
|
*
|
|
|
|
* @param Player $player
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function checkPlayerRight(Player $player) {
|
|
|
|
return AuthenticationManager::checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the menu manialink if necessary
|
|
|
|
*
|
|
|
|
* @param bool $forceBuild
|
|
|
|
*/
|
|
|
|
private function buildManialink($forceBuild = false) {
|
|
|
|
if (is_object($this->manialink) && !$forceBuild) return;
|
|
|
|
|
|
|
|
$posX = $this->maniaControl->settingManager->getSetting($this, self::SETTING_MENU_POSX);
|
|
|
|
$posY = $this->maniaControl->settingManager->getSetting($this, self::SETTING_MENU_POSY);
|
|
|
|
$itemSize = $this->maniaControl->settingManager->getSetting($this, self::SETTING_MENU_ITEMSIZE);
|
|
|
|
$quadStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultQuadStyle();
|
|
|
|
$quadSubstyle = $this->maniaControl->manialinkManager->styleManager->getDefaultQuadSubstyle();
|
|
|
|
|
|
|
|
$itemCount = count($this->menuItems);
|
|
|
|
$itemMarginFactorX = 1.3;
|
|
|
|
$itemMarginFactorY = 1.2;
|
|
|
|
|
|
|
|
$manialink = new ManiaLink(self::MLID_MENU);
|
|
|
|
|
|
|
|
$frame = new Frame();
|
|
|
|
$manialink->add($frame);
|
|
|
|
$frame->setPosition($posX, $posY);
|
|
|
|
|
|
|
|
$backgroundQuad = new Quad();
|
|
|
|
$frame->add($backgroundQuad);
|
|
|
|
$backgroundQuad->setSize($itemCount * $itemSize * $itemMarginFactorX, $itemSize * $itemMarginFactorY);
|
|
|
|
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
|
|
|
|
|
|
|
|
$itemsFrame = new Frame();
|
|
|
|
$frame->add($itemsFrame);
|
|
|
|
|
|
|
|
// Add items
|
|
|
|
$x = 0.5 * $itemSize * $itemMarginFactorX;
|
2013-12-09 13:45:58 +01:00
|
|
|
foreach ($this->menuItems as $menuItems) {
|
2013-11-28 03:47:08 +01:00
|
|
|
foreach ($menuItems as $menuItem) {
|
|
|
|
$menuItem->setSize($itemSize, $itemSize);
|
|
|
|
$itemsFrame->add($menuItem);
|
|
|
|
|
|
|
|
$x += $itemSize * $itemMarginFactorX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->manialink = $manialink;
|
|
|
|
}
|
|
|
|
}
|
2013-11-13 01:43:12 +01:00
|
|
|
|
|
|
|
?>
|