2013-12-30 14:52:48 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Manialinks;
|
|
|
|
|
2013-12-31 10:05:38 +01:00
|
|
|
use FML\CustomUI;
|
2013-12-30 14:52:48 +01:00
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
2014-01-31 00:04:40 +01:00
|
|
|
use ManiaControl\Callbacks\TimerListener;
|
2014-01-28 15:56:50 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
2013-12-30 14:52:48 +01:00
|
|
|
use ManiaControl\Players\Player;
|
|
|
|
use ManiaControl\Players\PlayerManager;
|
2013-12-31 10:05:38 +01:00
|
|
|
|
2013-12-30 14:52:48 +01:00
|
|
|
/**
|
|
|
|
* Class managing the Custom UI Settings
|
|
|
|
*
|
|
|
|
* @author steeffeen & kremsy
|
|
|
|
*/
|
2014-01-31 00:04:40 +01:00
|
|
|
class CustomUIManager implements CallbackListener, TimerListener {
|
2014-01-28 15:56:50 +01:00
|
|
|
|
2013-12-30 14:52:48 +01:00
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
const CUSTOMUI_MLID = 'CustomUI.MLID';
|
2014-01-28 15:56:50 +01:00
|
|
|
|
2013-12-30 14:52:48 +01:00
|
|
|
/**
|
|
|
|
* Private Properties
|
|
|
|
*/
|
|
|
|
private $maniaControl = null;
|
|
|
|
private $customUI = null;
|
|
|
|
private $updateManialink = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a Custom UI Manager
|
|
|
|
*
|
2013-12-31 12:06:34 +01:00
|
|
|
* @param ManiaControl $maniaControl
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
|
|
|
$this->prepareManialink();
|
2014-01-28 15:56:50 +01:00
|
|
|
|
2013-12-30 14:52:48 +01:00
|
|
|
// Register for callbacks
|
2014-01-31 00:04:40 +01:00
|
|
|
$this->maniaControl->timerManager->registerTimerListening($this, 'handle1Second', 1000);
|
2014-02-19 10:43:37 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERCONNECT, $this, 'handlePlayerJoined');
|
2013-12-30 14:52:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create the ManiaLink and CustomUI instances
|
|
|
|
*/
|
|
|
|
private function prepareManialink() {
|
|
|
|
$this->customUI = new CustomUI();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the CustomUI Manialink
|
|
|
|
*
|
2013-12-31 12:06:34 +01:00
|
|
|
* @param Player $player
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
|
|
|
private function updateManialink(Player $player = null) {
|
2013-12-31 11:37:03 +01:00
|
|
|
$manialinkText = $this->customUI->render()->saveXML();
|
2013-12-30 14:52:48 +01:00
|
|
|
if ($player) {
|
|
|
|
$this->maniaControl->manialinkManager->sendManialink($manialinkText, $player->login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->maniaControl->manialinkManager->sendManialink($manialinkText);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-31 00:04:40 +01:00
|
|
|
* Handle 1Second
|
2013-12-30 14:52:48 +01:00
|
|
|
*
|
2014-01-31 00:04:40 +01:00
|
|
|
* @param $time
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
2014-01-31 00:04:40 +01:00
|
|
|
public function handle1Second($time) {
|
2014-01-28 15:56:50 +01:00
|
|
|
if (!$this->updateManialink) {
|
|
|
|
return;
|
|
|
|
}
|
2013-12-30 14:52:48 +01:00
|
|
|
$this->updateManialink = false;
|
|
|
|
$this->updateManialink();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle PlayerJoined Callback
|
|
|
|
*
|
2014-02-19 15:44:00 +01:00
|
|
|
* @param Player $player
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
2014-02-19 15:44:00 +01:00
|
|
|
public function handlePlayerJoined(Player $player) {
|
2013-12-30 14:52:48 +01:00
|
|
|
$this->updateManialink($player);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set Showing of Notices
|
|
|
|
*
|
2013-12-31 12:06:34 +01:00
|
|
|
* @param bool $visible
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
|
|
|
public function setNoticeVisible($visible) {
|
|
|
|
$this->customUI->setNoticeVisible($visible);
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set Showing of the Challenge Info
|
|
|
|
*
|
2013-12-31 12:06:34 +01:00
|
|
|
* @param bool $visible
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
|
|
|
public function setChallengeInfoVisible($visible) {
|
|
|
|
$this->customUI->setChallengeInfoVisible($visible);
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set Showing of the Net Infos
|
|
|
|
*
|
2013-12-31 12:06:34 +01:00
|
|
|
* @param bool $visible
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
|
|
|
public function setNetInfosVisible($visible) {
|
|
|
|
$this->customUI->setNetInfosVisible($visible);
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set Showing of the Chat
|
|
|
|
*
|
2013-12-31 12:06:34 +01:00
|
|
|
* @param bool $visible
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
|
|
|
public function setChatVisible($visible) {
|
|
|
|
$this->customUI->setChatVisible($visible);
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set Showing of the Checkpoint List
|
|
|
|
*
|
2013-12-31 12:06:34 +01:00
|
|
|
* @param bool $visible
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
|
|
|
public function setCheckpointListVisible($visible) {
|
|
|
|
$this->customUI->setCheckpointListVisible($visible);
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set Showing of Round Scores
|
|
|
|
*
|
2013-12-31 12:06:34 +01:00
|
|
|
* @param bool $visible
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
|
|
|
public function setRoundScoresVisible($visible) {
|
|
|
|
$this->customUI->setRoundScoresVisible($visible);
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set Showing of the Scoretable
|
|
|
|
*
|
2013-12-31 12:06:34 +01:00
|
|
|
* @param bool $visible
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
|
|
|
public function setScoretableVisible($visible) {
|
|
|
|
$this->customUI->setScoretableVisible($visible);
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set Global Showing
|
|
|
|
*
|
2013-12-31 12:06:34 +01:00
|
|
|
* @param bool $visible
|
2013-12-30 14:52:48 +01:00
|
|
|
*/
|
|
|
|
public function setGlobalVisible($visible) {
|
|
|
|
$this->customUI->setGlobalVisible($visible);
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
}
|