2013-11-28 02:04:06 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Manialinks;
|
|
|
|
|
2013-12-30 14:52:48 +01:00
|
|
|
use FML\Controls\Control;
|
|
|
|
use FML\Controls\Frame;
|
|
|
|
use FML\Controls\Labels\Label_Text;
|
2013-12-31 17:11:53 +01:00
|
|
|
use FML\ManiaLink;
|
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
|
|
|
use ManiaControl\Callbacks\CallbackManager;
|
2017-03-26 19:44:55 +02:00
|
|
|
use ManiaControl\General\UsageInformationAble;
|
|
|
|
use ManiaControl\General\UsageInformationTrait;
|
2017-02-11 23:26:28 +01:00
|
|
|
use ManiaControl\Logger;
|
2013-12-31 17:11:53 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
use ManiaControl\Players\Player;
|
2015-01-17 10:05:54 +01:00
|
|
|
use Maniaplanet\DedicatedServer\Xmlrpc\FaultException;
|
2014-05-13 17:59:37 +02:00
|
|
|
use Maniaplanet\DedicatedServer\Xmlrpc\GameModeException;
|
2017-02-11 23:26:28 +01:00
|
|
|
use Maniaplanet\DedicatedServer\Xmlrpc\MessageException;
|
2014-05-13 17:59:37 +02:00
|
|
|
use Maniaplanet\DedicatedServer\Xmlrpc\UnknownPlayerException;
|
2013-11-28 02:04:06 +01:00
|
|
|
|
|
|
|
/**
|
2014-04-12 12:14:37 +02:00
|
|
|
* Manialink Manager Class
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
2017-02-04 11:49:23 +01:00
|
|
|
* @copyright 2014-2017 ManiaControl Team
|
2014-05-02 17:50:30 +02:00
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2013-11-28 02:04:06 +01:00
|
|
|
*/
|
2017-03-26 19:44:55 +02:00
|
|
|
class ManialinkManager implements ManialinkPageAnswerListener, CallbackListener, UsageInformationAble {
|
|
|
|
use UsageInformationTrait;
|
2017-03-28 16:00:40 +02:00
|
|
|
|
2014-04-12 12:14:37 +02:00
|
|
|
/*
|
2013-12-24 12:49:53 +01:00
|
|
|
* Constants
|
|
|
|
*/
|
2017-03-25 18:40:15 +01:00
|
|
|
const MAIN_MLID = 'Main.ManiaLinkId';
|
|
|
|
const ACTION_CLOSEWIDGET = 'ManiaLinkManager.CloseWidget';
|
|
|
|
const CB_MAIN_WINDOW_CLOSED = 'ManialinkManagerCallback.MainWindowClosed';
|
|
|
|
const CB_MAIN_WINDOW_OPENED = 'ManialinkManagerCallback.MainWindowOpened';
|
|
|
|
const MAIN_MANIALINK_Z_VALUE = 10;
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-04-12 12:14:37 +02:00
|
|
|
/*
|
2014-07-25 16:28:47 +02:00
|
|
|
* Public properties
|
2013-11-28 03:47:08 +01:00
|
|
|
*/
|
2014-07-25 16:28:47 +02:00
|
|
|
/** @var StyleManager $styleManager */
|
2014-10-24 20:08:21 +02:00
|
|
|
/** @deprecated
|
|
|
|
* @see getStyleManager()
|
|
|
|
*/
|
2013-11-28 03:47:08 +01:00
|
|
|
public $styleManager = null;
|
2014-07-25 16:28:47 +02:00
|
|
|
/** @var CustomUIManager $customUIManager */
|
2014-10-24 20:08:21 +02:00
|
|
|
/** @deprecated
|
|
|
|
* @see getCustomUIManager()
|
|
|
|
*/
|
2013-12-30 14:52:48 +01:00
|
|
|
public $customUIManager = null;
|
2014-07-25 16:28:47 +02:00
|
|
|
/** @var IconManager $iconManager */
|
2014-10-24 20:08:21 +02:00
|
|
|
/** @deprecated
|
|
|
|
* @see getIconManager()
|
|
|
|
*/
|
2013-12-31 17:09:29 +01:00
|
|
|
public $iconManager = null;
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-04-12 12:14:37 +02:00
|
|
|
/*
|
2014-07-25 16:28:47 +02:00
|
|
|
* Private properties
|
2013-11-28 02:04:06 +01:00
|
|
|
*/
|
2014-08-02 22:31:46 +02:00
|
|
|
/** @var ManiaControl $maniaControl */
|
2013-11-28 02:04:06 +01:00
|
|
|
private $maniaControl = null;
|
2014-05-13 01:18:47 +02:00
|
|
|
// TODO: use listening class
|
2014-10-24 20:08:21 +02:00
|
|
|
private $pageAnswerListeners = array();
|
2014-04-28 17:00:53 +02:00
|
|
|
private $pageAnswerRegexListener = array();
|
2013-11-28 02:04:06 +01:00
|
|
|
|
|
|
|
/**
|
2014-07-25 16:28:47 +02:00
|
|
|
* Construct a new manialink manager instance
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
2013-12-31 12:17:25 +01:00
|
|
|
* @param ManiaControl $maniaControl
|
2013-11-28 02:04:06 +01:00
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
2014-08-02 22:31:46 +02:00
|
|
|
$this->maniaControl = $maniaControl;
|
2014-07-25 16:28:47 +02:00
|
|
|
|
|
|
|
// Children
|
2014-05-02 17:50:30 +02:00
|
|
|
$this->styleManager = new StyleManager($maniaControl);
|
2013-12-30 14:52:48 +01:00
|
|
|
$this->customUIManager = new CustomUIManager($maniaControl);
|
2014-05-02 17:50:30 +02:00
|
|
|
$this->iconManager = new IconManager($maniaControl);
|
|
|
|
|
2014-07-25 16:28:47 +02:00
|
|
|
// Callbacks
|
2013-12-30 14:52:48 +01:00
|
|
|
$this->registerManialinkPageAnswerListener(self::ACTION_CLOSEWIDGET, $this, 'closeWidgetCallback');
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getCallbackManager()->registerCallbackListener(CallbackManager::CB_MP_PLAYERMANIALINKPAGEANSWER, $this, 'handleManialinkPageAnswer');
|
2013-11-28 02:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a new manialink page answer listener
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
|
|
|
* @param string $actionId
|
2013-12-31 12:17:25 +01:00
|
|
|
* @param ManialinkPageAnswerListener $listener
|
2014-05-02 17:50:30 +02:00
|
|
|
* @param string $method
|
2013-11-28 02:04:06 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2013-11-28 03:47:08 +01:00
|
|
|
public function registerManialinkPageAnswerListener($actionId, ManialinkPageAnswerListener $listener, $method) {
|
2014-01-28 15:56:50 +01:00
|
|
|
if (!method_exists($listener, $method)) {
|
2013-11-28 03:47:08 +01:00
|
|
|
trigger_error("Given listener for actionId '{$actionId}' doesn't have callback method '{$method}'!");
|
2013-11-28 02:04:06 +01:00
|
|
|
return false;
|
|
|
|
}
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-01-28 15:56:50 +01:00
|
|
|
if (!array_key_exists($actionId, $this->pageAnswerListeners) || !is_array($this->pageAnswerListeners[$actionId])) {
|
2013-11-28 02:04:06 +01:00
|
|
|
// Init listeners array
|
2013-11-28 03:47:08 +01:00
|
|
|
$this->pageAnswerListeners[$actionId] = array();
|
2013-11-28 02:04:06 +01:00
|
|
|
}
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2013-11-28 02:04:06 +01:00
|
|
|
// Register page answer listener
|
2013-11-28 03:47:08 +01:00
|
|
|
array_push($this->pageAnswerListeners[$actionId], array($listener, $method));
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-04-28 17:00:53 +02:00
|
|
|
return true;
|
|
|
|
}
|
2013-12-31 17:11:53 +01:00
|
|
|
|
2014-07-25 16:28:47 +02:00
|
|
|
/**
|
|
|
|
* Return the style manager
|
|
|
|
*
|
|
|
|
* @return StyleManager
|
|
|
|
*/
|
|
|
|
public function getStyleManager() {
|
|
|
|
return $this->styleManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the custom UI manager
|
|
|
|
*
|
|
|
|
* @return CustomUIManager
|
|
|
|
*/
|
|
|
|
public function getCustomUIManager() {
|
|
|
|
return $this->customUIManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the icon manager
|
|
|
|
*
|
|
|
|
* @return IconManager
|
|
|
|
*/
|
|
|
|
public function getIconManager() {
|
|
|
|
return $this->iconManager;
|
|
|
|
}
|
|
|
|
|
2014-04-28 17:00:53 +02:00
|
|
|
/**
|
|
|
|
* Register a new manialink page answer reg ex listener
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
|
|
|
* @param string $actionIdRegex
|
2014-04-28 17:00:53 +02:00
|
|
|
* @param ManialinkPageAnswerListener $listener
|
2014-05-02 17:50:30 +02:00
|
|
|
* @param string $method
|
2014-04-28 17:00:53 +02:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function registerManialinkPageAnswerRegexListener($actionIdRegex, ManialinkPageAnswerListener $listener, $method) {
|
|
|
|
if (!method_exists($listener, $method)) {
|
|
|
|
trigger_error("Given listener for actionIdRegex '{$actionIdRegex}' doesn't have callback method '{$method}'!");
|
|
|
|
return false;
|
|
|
|
}
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-04-28 17:00:53 +02:00
|
|
|
if (!array_key_exists($actionIdRegex, $this->pageAnswerRegexListener) || !is_array($this->pageAnswerRegexListener[$actionIdRegex])) {
|
|
|
|
// Init regex listeners array
|
|
|
|
$this->pageAnswerRegexListener[$actionIdRegex] = array();
|
|
|
|
}
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-05-20 14:59:17 +02:00
|
|
|
// Register page answer regex listener
|
2014-04-28 17:00:53 +02:00
|
|
|
array_push($this->pageAnswerRegexListener[$actionIdRegex], array($listener, $method));
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2013-11-28 02:04:06 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-14 23:27:15 +01:00
|
|
|
/**
|
|
|
|
* Remove a Manialink Page Answer Listener
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
2013-12-31 12:17:25 +01:00
|
|
|
* @param ManialinkPageAnswerListener $listener
|
2013-12-14 23:27:15 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function unregisterManialinkPageAnswerListener(ManialinkPageAnswerListener $listener) {
|
2014-05-02 17:50:30 +02:00
|
|
|
$removed = false;
|
2014-04-28 17:00:53 +02:00
|
|
|
$allListeners = array_merge($this->pageAnswerListeners, $this->pageAnswerRegexListener);
|
|
|
|
foreach ($allListeners as &$listeners) {
|
|
|
|
foreach ($listeners as $key => &$listenerCallback) {
|
|
|
|
if ($listenerCallback[0] !== $listener) {
|
2014-01-19 00:09:15 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
unset($listeners[$key]);
|
|
|
|
$removed = true;
|
|
|
|
}
|
2013-12-14 23:27:15 +01:00
|
|
|
}
|
2014-01-19 00:09:15 +01:00
|
|
|
return $removed;
|
2013-11-28 03:47:08 +01:00
|
|
|
}
|
|
|
|
|
2013-11-28 02:04:06 +01:00
|
|
|
/**
|
|
|
|
* Handle ManialinkPageAnswer callback
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
2013-12-31 12:17:25 +01:00
|
|
|
* @param array $callback
|
2013-11-28 02:04:06 +01:00
|
|
|
*/
|
|
|
|
public function handleManialinkPageAnswer(array $callback) {
|
2013-11-28 03:47:08 +01:00
|
|
|
$actionId = $callback[1][2];
|
2014-05-02 17:50:30 +02:00
|
|
|
$login = $callback[1][1];
|
2014-08-13 11:05:52 +02:00
|
|
|
$player = $this->maniaControl->getPlayerManager()->getPlayer($login);
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-04-28 17:00:53 +02:00
|
|
|
if (array_key_exists($actionId, $this->pageAnswerListeners) && is_array($this->pageAnswerListeners[$actionId])) {
|
|
|
|
// Inform page answer listeners
|
|
|
|
foreach ($this->pageAnswerListeners[$actionId] as $listener) {
|
|
|
|
call_user_func($listener, $callback, $player);
|
|
|
|
}
|
2013-11-28 03:47:08 +01:00
|
|
|
}
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-04-28 17:00:53 +02:00
|
|
|
// Check regex listeners
|
|
|
|
foreach ($this->pageAnswerRegexListener as $actionIdRegex => $pageAnswerRegexListeners) {
|
|
|
|
if (preg_match($actionIdRegex, $actionId)) {
|
|
|
|
// Inform page answer regex listeners
|
|
|
|
foreach ($pageAnswerRegexListeners as $listener) {
|
|
|
|
call_user_func($listener, $callback, $player);
|
|
|
|
}
|
|
|
|
}
|
2013-11-28 03:47:08 +01:00
|
|
|
}
|
2013-11-28 02:04:06 +01:00
|
|
|
}
|
|
|
|
|
2014-04-28 18:42:50 +02:00
|
|
|
/**
|
2014-05-15 15:07:03 +02:00
|
|
|
* Displays a ManiaLink Widget to a certain Player (Should only be used on Main Widgets)
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
2014-05-15 15:07:03 +02:00
|
|
|
* @param mixed $maniaLink
|
|
|
|
* @param mixed $player
|
|
|
|
* @param string $widgetName
|
2014-04-28 18:42:50 +02:00
|
|
|
*/
|
2014-05-15 15:07:03 +02:00
|
|
|
public function displayWidget($maniaLink, $player, $widgetName = null) {
|
|
|
|
// render and display xml
|
|
|
|
$this->sendManialink($maniaLink, $player);
|
|
|
|
|
|
|
|
if ($widgetName) {
|
|
|
|
// TODO make check by manialinkId, getter is needed to avoid uses on non main widgets
|
|
|
|
$this->disableAltMenu($player);
|
|
|
|
// Trigger callback
|
2014-08-13 11:05:52 +02:00
|
|
|
$player = $this->maniaControl->getPlayerManager()->getPlayer($player);
|
|
|
|
$this->maniaControl->getCallbackManager()->triggerCallback(self::CB_MAIN_WINDOW_OPENED, $player, $widgetName);
|
2014-04-28 18:42:50 +02:00
|
|
|
}
|
|
|
|
}
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2013-11-28 02:04:06 +01:00
|
|
|
/**
|
|
|
|
* Send the given manialink to players
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
2013-12-31 12:17:25 +01:00
|
|
|
* @param string $manialinkText
|
2014-05-02 17:50:30 +02:00
|
|
|
* @param mixed $logins
|
|
|
|
* @param int $timeout
|
|
|
|
* @param bool $hideOnClick
|
2013-11-28 02:04:06 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2014-01-28 16:05:18 +01:00
|
|
|
public function sendManialink($manialinkText, $logins = null, $timeout = 0, $hideOnClick = false) {
|
2014-10-24 20:08:21 +02:00
|
|
|
$manialinkText = (string) $manialinkText;
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-04-19 23:14:37 +02:00
|
|
|
if (!$manialinkText) {
|
2014-03-02 14:18:10 +01:00
|
|
|
return true;
|
2014-04-14 13:19:05 +02:00
|
|
|
}
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-01-17 22:35:14 +01:00
|
|
|
try {
|
2014-01-28 15:56:50 +01:00
|
|
|
if (!$logins) {
|
2014-08-13 11:05:52 +02:00
|
|
|
return $this->maniaControl->getClient()->sendDisplayManialinkPage(null, $manialinkText, $timeout, $hideOnClick);
|
2014-01-17 22:35:14 +01:00
|
|
|
}
|
2014-01-28 15:56:50 +01:00
|
|
|
if (is_string($logins)) {
|
2014-08-13 11:05:52 +02:00
|
|
|
$success = $this->maniaControl->getClient()->sendDisplayManialinkPage($logins, $manialinkText, $timeout, $hideOnClick);
|
2014-03-01 12:18:42 +01:00
|
|
|
return $success;
|
2013-11-28 02:04:06 +01:00
|
|
|
}
|
2014-02-19 15:44:00 +01:00
|
|
|
if ($logins instanceof Player) {
|
2014-08-13 11:05:52 +02:00
|
|
|
$success = $this->maniaControl->getClient()->sendDisplayManialinkPage($logins->login, $manialinkText, $timeout, $hideOnClick);
|
2014-03-01 12:18:42 +01:00
|
|
|
return $success;
|
2014-02-19 15:44:00 +01:00
|
|
|
}
|
2014-01-28 15:56:50 +01:00
|
|
|
if (is_array($logins)) {
|
2014-01-17 22:35:14 +01:00
|
|
|
$success = true;
|
2014-04-28 17:00:53 +02:00
|
|
|
foreach ($logins as $login) {
|
2014-05-15 15:07:03 +02:00
|
|
|
$subSuccess = $this->sendManialink($manialinkText, $login, $timeout, $hideOnClick);
|
2014-01-28 15:56:50 +01:00
|
|
|
if (!$subSuccess) {
|
2014-01-17 22:35:14 +01:00
|
|
|
$success = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $success;
|
|
|
|
}
|
2014-05-13 17:59:37 +02:00
|
|
|
} catch (UnknownPlayerException $e) {
|
2014-04-19 23:14:37 +02:00
|
|
|
return false;
|
2015-06-03 23:27:50 +02:00
|
|
|
} catch (FaultException $e) {
|
2015-01-17 10:05:54 +01:00
|
|
|
//TODO added 17.01.2015, remove later:
|
|
|
|
$this->maniaControl->getErrorHandler()->triggerDebugNotice("Fault Exception: ManiaLink Manager, Message: " . $e->getMessage());
|
|
|
|
return false;
|
2017-02-11 23:26:28 +01:00
|
|
|
} catch (MessageException $e) {
|
|
|
|
//TODO verify why this can happen
|
|
|
|
Logger::logError("Request too large during opening Directory Browser");
|
2013-11-28 02:04:06 +01:00
|
|
|
}
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-01-17 22:35:14 +01:00
|
|
|
return true;
|
2013-11-28 02:04:06 +01:00
|
|
|
}
|
2013-11-28 04:48:04 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable the alt menu for the player
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
2014-05-15 15:07:03 +02:00
|
|
|
* @param mixed $player
|
2013-11-28 04:48:04 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-15 15:07:03 +02:00
|
|
|
public function disableAltMenu($player) {
|
|
|
|
$login = Player::parseLogin($player);
|
2014-02-13 18:18:14 +01:00
|
|
|
try {
|
2014-08-13 11:05:52 +02:00
|
|
|
$success = $this->maniaControl->getClient()->triggerModeScriptEvent('LibXmlRpc_DisableAltMenu', $login);
|
2014-05-13 17:59:37 +02:00
|
|
|
} catch (GameModeException $e) {
|
2014-04-19 23:14:37 +02:00
|
|
|
return false;
|
2014-02-13 18:18:14 +01:00
|
|
|
}
|
|
|
|
return $success;
|
2013-11-28 04:48:04 +01:00
|
|
|
}
|
2013-12-15 11:29:49 +01:00
|
|
|
|
2013-12-24 12:49:53 +01:00
|
|
|
/**
|
|
|
|
* Closes a widget via the callback
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
|
|
|
* @param array $callback
|
2013-12-31 12:17:25 +01:00
|
|
|
* @param Player $player
|
2013-12-24 12:49:53 +01:00
|
|
|
*/
|
|
|
|
public function closeWidgetCallback(array $callback, Player $player) {
|
|
|
|
$this->closeWidget($player);
|
|
|
|
}
|
|
|
|
|
2013-12-15 11:29:49 +01:00
|
|
|
/**
|
2014-01-16 20:58:39 +01:00
|
|
|
* Closes a Manialink Widget
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
2014-05-15 15:07:03 +02:00
|
|
|
* @param mixed $player
|
|
|
|
* @param bool $widgetId
|
2013-12-15 11:29:49 +01:00
|
|
|
*/
|
2014-05-15 15:07:03 +02:00
|
|
|
public function closeWidget($player, $widgetId = false) {
|
2014-01-28 15:56:50 +01:00
|
|
|
if (!$widgetId) {
|
2014-05-18 18:37:18 +02:00
|
|
|
$this->hideManialink(self::MAIN_MLID, $player);
|
2014-01-16 20:58:39 +01:00
|
|
|
$this->enableAltMenu($player);
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2014-01-16 20:58:39 +01:00
|
|
|
// Trigger callback
|
2014-08-13 11:05:52 +02:00
|
|
|
$player = $this->maniaControl->getPlayerManager()->getPlayer($player);
|
|
|
|
$this->maniaControl->getCallbackManager()->triggerCallback(self::CB_MAIN_WINDOW_CLOSED, $player);
|
2014-05-02 17:50:30 +02:00
|
|
|
} else {
|
2014-05-15 15:07:03 +02:00
|
|
|
$this->hideManialink($widgetId, $player);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hide the Manialink with the given Id
|
|
|
|
*
|
|
|
|
* @param mixed $manialinkId
|
|
|
|
* @param mixed $logins
|
|
|
|
*/
|
|
|
|
public function hideManialink($manialinkId, $logins = null) {
|
|
|
|
if (is_array($manialinkId)) {
|
|
|
|
foreach ($manialinkId as $mlId) {
|
|
|
|
$this->hideManialink($mlId, $logins);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$emptyManialink = new ManiaLink($manialinkId);
|
|
|
|
$this->sendManialink($emptyManialink, $logins);
|
2014-01-16 20:58:39 +01:00
|
|
|
}
|
2013-12-15 11:29:49 +01:00
|
|
|
}
|
|
|
|
|
2014-05-02 17:50:30 +02:00
|
|
|
/**
|
|
|
|
* Enable the alt menu for the player
|
|
|
|
*
|
2014-05-15 15:07:03 +02:00
|
|
|
* @param mixed $player
|
2014-05-02 17:50:30 +02:00
|
|
|
* @return bool
|
|
|
|
*/
|
2014-05-15 15:07:03 +02:00
|
|
|
public function enableAltMenu($player) {
|
|
|
|
$login = Player::parseLogin($player);
|
2014-05-02 17:50:30 +02:00
|
|
|
try {
|
2014-08-13 11:05:52 +02:00
|
|
|
$success = $this->maniaControl->getClient()->triggerModeScriptEvent('LibXmlRpc_EnableAltMenu', $login);
|
2014-05-13 17:59:37 +02:00
|
|
|
} catch (GameModeException $e) {
|
2014-05-02 17:50:30 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return $success;
|
|
|
|
}
|
|
|
|
|
2015-06-03 23:27:50 +02:00
|
|
|
|
2013-12-15 11:55:44 +01:00
|
|
|
/**
|
|
|
|
* Adds a line of labels
|
2015-06-04 00:23:29 +02:00
|
|
|
* LabelLine should be an array with the following structure: array(array(positions), array(texts))
|
|
|
|
* or array($text1 => $pos1, $text2 => $pos2 ...)
|
2014-05-02 17:50:30 +02:00
|
|
|
*
|
2015-06-04 00:23:29 +02:00
|
|
|
* @param Frame $frame
|
|
|
|
* @param array $labelStrings
|
|
|
|
* @param array $properties
|
2014-05-27 22:21:17 +02:00
|
|
|
* @return Label_Text[]
|
2013-12-15 11:55:44 +01:00
|
|
|
*/
|
2015-06-04 00:23:29 +02:00
|
|
|
public function labelLine(Frame $frame, array $labelStrings, array $properties = array()) {
|
2013-12-30 14:52:48 +01:00
|
|
|
// define standard properties
|
2014-05-02 17:50:30 +02:00
|
|
|
$hAlign = (isset($properties['hAlign']) ? $properties['hAlign'] : Control::LEFT);
|
|
|
|
$style = (isset($properties['style']) ? $properties['style'] : Label_Text::STYLE_TextCardSmall);
|
|
|
|
$textSize = (isset($properties['textSize']) ? $properties['textSize'] : 1.5);
|
2014-01-28 16:05:18 +01:00
|
|
|
$textColor = (isset($properties['textColor']) ? $properties['textColor'] : 'FFF');
|
2017-03-28 16:00:40 +02:00
|
|
|
$posZ = (isset($properties['posZ']) ? $properties['posZ'] : 0);
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2017-03-29 22:25:50 +02:00
|
|
|
$labelLine = new LabelLine($frame);
|
|
|
|
$labelLine->setHorizontalAlign($hAlign);
|
|
|
|
$labelLine->setStyle($style);
|
|
|
|
$labelLine->setTextSize($textSize);
|
|
|
|
$labelLine->setTextColor($textColor);
|
|
|
|
$labelLine->setPosZ($posZ);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Label_Text $prevLabel
|
|
|
|
*/
|
|
|
|
$prevLabel = null;
|
2015-06-04 00:23:29 +02:00
|
|
|
|
|
|
|
//If you call LabelLine with array(array(positions), array(texts))
|
|
|
|
if (count($labelStrings) == 2 && array_key_exists(0, $labelStrings) && array_key_exists(1, $labelStrings) && array_key_exists(0, $labelStrings[0]) && array_key_exists(0, $labelStrings[1])) {
|
|
|
|
$positions = $labelStrings[0];
|
|
|
|
$texts = $labelStrings[1];
|
|
|
|
|
|
|
|
if (count($positions) != count($texts)) {
|
|
|
|
trigger_error("LabelLine Position length is not equal to Text Length", E_USER_ERROR);
|
2015-06-03 23:27:50 +02:00
|
|
|
}
|
|
|
|
|
2015-06-04 00:23:29 +02:00
|
|
|
foreach ($positions as $key => $x) {
|
2017-03-29 22:25:50 +02:00
|
|
|
$labelLine->addLabelEntryText($texts[$key], $x);
|
2013-12-31 12:17:25 +01:00
|
|
|
}
|
2015-06-04 00:23:29 +02:00
|
|
|
} else {
|
|
|
|
foreach ($labelStrings as $text => $x) {
|
2017-03-29 22:25:50 +02:00
|
|
|
$labelLine->addLabelEntryText($text,$x);
|
2015-06-04 00:23:29 +02:00
|
|
|
}
|
2013-12-15 11:55:44 +01:00
|
|
|
}
|
2017-03-29 22:25:50 +02:00
|
|
|
$labelLine->render();
|
2014-05-02 17:50:30 +02:00
|
|
|
|
2017-03-29 22:25:50 +02:00
|
|
|
return $labelLine->getEntries();
|
2013-12-15 11:55:44 +01:00
|
|
|
}
|
2013-11-28 02:04:06 +01:00
|
|
|
}
|