2014-01-02 23:49:21 +01:00
|
|
|
<?php
|
|
|
|
|
2014-07-25 15:32:46 +02:00
|
|
|
namespace ManiaControl\Server;
|
2014-01-02 23:49:21 +01:00
|
|
|
|
2014-05-15 23:05:57 +02:00
|
|
|
use FML\Components\CheckBox;
|
2014-01-02 23:49:21 +01:00
|
|
|
use FML\Controls\Entry;
|
|
|
|
use FML\Controls\Frame;
|
|
|
|
use FML\Controls\Labels\Label_Text;
|
2014-05-15 23:05:57 +02:00
|
|
|
use FML\Controls\Quad;
|
2014-01-02 23:49:21 +01:00
|
|
|
use FML\Controls\Quads\Quad_Icons64x64_1;
|
2014-04-27 16:22:12 +02:00
|
|
|
use FML\Script\Features\Paging;
|
2014-01-02 23:49:21 +01:00
|
|
|
use FML\Script\Script;
|
2014-04-13 19:05:54 +02:00
|
|
|
use ManiaControl\Admin\AuthenticationManager;
|
2014-01-02 23:49:21 +01:00
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
2014-05-24 16:39:12 +02:00
|
|
|
use ManiaControl\Callbacks\Callbacks;
|
2014-07-25 16:51:47 +02:00
|
|
|
use ManiaControl\Callbacks\TimerListener;
|
2015-07-11 15:18:44 +02:00
|
|
|
use ManiaControl\Communication\CommunicationAnswer;
|
|
|
|
use ManiaControl\Communication\CommunicationListener;
|
|
|
|
use ManiaControl\Communication\CommunicationMethods;
|
2014-07-25 15:45:10 +02:00
|
|
|
use ManiaControl\Configurator\ConfiguratorMenu;
|
2014-07-25 18:09:51 +02:00
|
|
|
use ManiaControl\Logger;
|
2014-01-02 23:49:21 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
use ManiaControl\Players\Player;
|
2014-05-20 15:42:10 +02:00
|
|
|
use Maniaplanet\DedicatedServer\Structures\ServerOptions;
|
2014-05-08 21:10:56 +02:00
|
|
|
use Maniaplanet\DedicatedServer\Xmlrpc\ServerOptionsException;
|
2014-01-31 16:11:14 +01:00
|
|
|
|
2014-01-02 23:49:21 +01:00
|
|
|
/**
|
2014-07-25 15:32:46 +02:00
|
|
|
* Class offering a Configurator Menu for Server Options
|
2014-01-02 23:49:21 +01:00
|
|
|
*
|
2014-05-02 17:50:30 +02:00
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
2016-05-04 09:57:31 +02:00
|
|
|
* @copyright 2014-2016 ManiaControl Team
|
2014-04-13 19:05:54 +02:00
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2014-01-02 23:49:21 +01:00
|
|
|
*/
|
2015-07-11 15:18:44 +02:00
|
|
|
class ServerOptionsMenu implements CallbackListener, ConfiguratorMenu, TimerListener, CommunicationListener {
|
2014-04-12 12:14:37 +02:00
|
|
|
/*
|
2014-01-02 23:49:21 +01:00
|
|
|
* Constants
|
|
|
|
*/
|
2014-07-25 16:39:14 +02:00
|
|
|
const CB_SERVER_OPTION_CHANGED = 'ServerOptionsMenu.OptionChanged';
|
|
|
|
const CB_SERVER_OPTIONS_CHANGED = 'ServerOptionsMenu.OptionsChanged';
|
2014-07-25 15:32:46 +02:00
|
|
|
const SETTING_PERMISSION_CHANGE_SERVER_OPTIONS = 'Change Server Options';
|
|
|
|
const TABLE_SERVER_OPTIONS = 'mc_server_options';
|
|
|
|
const ACTION_PREFIX_OPTION = 'ServerOptionsMenu.';
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-07-25 16:39:14 +02:00
|
|
|
/** @deprecated */
|
|
|
|
const CB_SERVERSETTING_CHANGED = self::CB_SERVER_OPTION_CHANGED;
|
|
|
|
/** @deprecated */
|
|
|
|
const CB_SERVERSETTINGS_CHANGED = self::CB_SERVER_OPTIONS_CHANGED;
|
|
|
|
|
2014-04-12 12:14:37 +02:00
|
|
|
/*
|
2014-07-25 16:51:47 +02:00
|
|
|
* Private properties
|
2014-01-02 23:49:21 +01:00
|
|
|
*/
|
2014-08-02 22:31:46 +02:00
|
|
|
/** @var ManiaControl $maniaControl */
|
2014-01-02 23:49:21 +01:00
|
|
|
private $maniaControl = null;
|
|
|
|
|
|
|
|
/**
|
2014-07-25 16:51:47 +02:00
|
|
|
* Construct a new server options menu instance
|
2014-01-02 23:49:21 +01:00
|
|
|
*
|
|
|
|
* @param ManiaControl $maniaControl
|
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2014-01-05 12:21:40 +01:00
|
|
|
$this->initTables();
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-07-25 15:32:46 +02:00
|
|
|
// Callbacks
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getCallbackManager()->registerCallbackListener(Callbacks::ONINIT, $this, 'onInit');
|
|
|
|
$this->maniaControl->getTimerManager()->registerTimerListening($this, 'saveCurrentServerOptions', 6 * 3600 * 1000);
|
2014-04-13 19:05:54 +02:00
|
|
|
|
2014-07-25 15:32:46 +02:00
|
|
|
// Permissions
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getAuthenticationManager()->definePermissionLevel(self::SETTING_PERMISSION_CHANGE_SERVER_OPTIONS, AuthenticationManager::AUTH_LEVEL_SUPERADMIN);
|
2015-07-11 15:18:44 +02:00
|
|
|
|
|
|
|
//TODO remove to somewhere cleaner
|
|
|
|
//Communication Listenings
|
|
|
|
$this->initalizeCommunicationListenings();
|
2014-01-04 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize necessary database tables
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function initTables() {
|
2014-08-13 11:05:52 +02:00
|
|
|
$mysqli = $this->maniaControl->getDatabase()->getMysqli();
|
2014-07-25 15:32:46 +02:00
|
|
|
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_SERVER_OPTIONS . "` (
|
2014-02-13 14:58:04 +01:00
|
|
|
`index` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
`serverIndex` int(11) NOT NULL,
|
2014-07-25 15:32:46 +02:00
|
|
|
`optionName` varchar(100) NOT NULL,
|
|
|
|
`optionValue` varchar(500) NOT NULL,
|
2014-07-25 16:51:47 +02:00
|
|
|
`changed` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
2014-02-13 14:58:04 +01:00
|
|
|
PRIMARY KEY (`index`),
|
2014-07-25 15:32:46 +02:00
|
|
|
UNIQUE KEY `option` (`serverIndex`, `optionName`)
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Server Options' AUTO_INCREMENT=1;";
|
2014-01-04 17:18:11 +01:00
|
|
|
$statement = $mysqli->prepare($query);
|
2014-02-01 20:03:17 +01:00
|
|
|
if ($mysqli->error) {
|
2014-01-04 17:18:11 +01:00
|
|
|
trigger_error($mysqli->error, E_USER_ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$statement->execute();
|
2014-02-01 20:03:17 +01:00
|
|
|
if ($statement->error) {
|
2014-01-04 17:18:11 +01:00
|
|
|
trigger_error($statement->error, E_USER_ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$statement->close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-24 23:13:30 +02:00
|
|
|
/**
|
|
|
|
* @see \ManiaControl\Configurators\ConfiguratorMenu::getTitle()
|
|
|
|
*/
|
|
|
|
public static function getTitle() {
|
2014-07-25 15:32:46 +02:00
|
|
|
return 'Server Options';
|
2014-07-24 23:13:30 +02:00
|
|
|
}
|
|
|
|
|
2014-07-25 16:51:47 +02:00
|
|
|
/**
|
|
|
|
* Save the current server options in case they have been changed by an external tool
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function saveCurrentServerOptions() {
|
2014-08-13 11:05:52 +02:00
|
|
|
$serverOptions = $this->maniaControl->getClient()->getServerOptions();
|
2014-07-25 16:51:47 +02:00
|
|
|
return $this->saveServerOptions($serverOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save the given server options in the database
|
|
|
|
*
|
|
|
|
* @param ServerOptions $serverOptions
|
|
|
|
* @param bool $triggerCallbacks
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function saveServerOptions(ServerOptions $serverOptions, $triggerCallbacks = false) {
|
2014-08-13 11:05:52 +02:00
|
|
|
$mysqli = $this->maniaControl->getDatabase()->getMysqli();
|
2014-07-25 16:51:47 +02:00
|
|
|
$query = "INSERT INTO `" . self::TABLE_SERVER_OPTIONS . "` (
|
|
|
|
`serverIndex`,
|
|
|
|
`optionName`,
|
|
|
|
`optionValue`
|
|
|
|
) VALUES (
|
|
|
|
?, ?, ?
|
|
|
|
) ON DUPLICATE KEY UPDATE
|
|
|
|
`optionValue` = VALUES(`optionValue`);";
|
|
|
|
$statement = $mysqli->prepare($query);
|
|
|
|
if ($mysqli->error) {
|
|
|
|
trigger_error($mysqli->error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$optionName = null;
|
|
|
|
$optionValue = null;
|
2014-08-03 01:34:18 +02:00
|
|
|
$statement->bind_param('iss', $this->maniaControl->getServer()->index, $optionName, $optionValue);
|
2014-07-25 16:51:47 +02:00
|
|
|
|
|
|
|
$serverOptionsArray = $serverOptions->toArray();
|
|
|
|
foreach ($serverOptionsArray as $optionName => $optionValue) {
|
|
|
|
if ($optionValue === null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$statement->execute();
|
|
|
|
if ($statement->error) {
|
|
|
|
trigger_error($statement->error);
|
|
|
|
$statement->close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($triggerCallbacks) {
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getCallbackManager()->triggerCallback(self::CB_SERVER_OPTION_CHANGED, array(self::CB_SERVER_OPTION_CHANGED, $optionName, $optionValue));
|
2014-07-25 16:51:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$statement->close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-04 17:18:11 +01:00
|
|
|
/**
|
|
|
|
* Handle OnInit callback
|
|
|
|
*/
|
2014-02-19 15:44:00 +01:00
|
|
|
public function onInit() {
|
2014-07-25 15:32:46 +02:00
|
|
|
$this->loadOptionsFromDatabase();
|
2014-01-04 17:18:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-25 15:32:46 +02:00
|
|
|
* Load options from database
|
2014-01-04 17:30:29 +01:00
|
|
|
*
|
2014-01-04 17:18:11 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2014-07-25 15:32:46 +02:00
|
|
|
public function loadOptionsFromDatabase() {
|
2014-08-13 11:05:52 +02:00
|
|
|
$mysqli = $this->maniaControl->getDatabase()->getMysqli();
|
2014-08-03 01:34:18 +02:00
|
|
|
$serverIndex = $this->maniaControl->getServer()->index;
|
2014-08-05 02:17:41 +02:00
|
|
|
$query = "SELECT * FROM `" . self::TABLE_SERVER_OPTIONS . "`
|
2014-08-03 01:34:18 +02:00
|
|
|
WHERE `serverIndex` = {$serverIndex};";
|
2014-08-05 02:17:41 +02:00
|
|
|
$result = $mysqli->query($query);
|
2014-02-01 20:03:17 +01:00
|
|
|
if ($mysqli->error) {
|
2014-01-04 17:18:11 +01:00
|
|
|
trigger_error($mysqli->error);
|
2014-01-05 12:21:40 +01:00
|
|
|
return false;
|
2014-01-04 17:18:11 +01:00
|
|
|
}
|
2014-07-25 15:17:36 +02:00
|
|
|
|
2014-08-13 11:05:52 +02:00
|
|
|
$oldServerOptions = $this->maniaControl->getClient()->getServerOptions();
|
2014-07-25 15:17:36 +02:00
|
|
|
$newServerOptions = new ServerOptions();
|
|
|
|
|
2014-05-02 17:50:30 +02:00
|
|
|
while ($row = $result->fetch_object()) {
|
2014-07-25 15:32:46 +02:00
|
|
|
$optionName = lcfirst($row->optionName);
|
|
|
|
if (!property_exists($oldServerOptions, $optionName)) {
|
2014-01-05 20:34:48 +01:00
|
|
|
continue;
|
|
|
|
}
|
2014-07-25 15:32:46 +02:00
|
|
|
$newServerOptions->$optionName = $row->optionValue;
|
|
|
|
settype($newServerOptions->$optionName, gettype($oldServerOptions->$optionName));
|
2014-01-04 17:18:11 +01:00
|
|
|
}
|
2014-05-18 23:34:47 +02:00
|
|
|
$result->free();
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-07-25 15:17:36 +02:00
|
|
|
$this->fillUpMandatoryOptions($newServerOptions, $oldServerOptions);
|
|
|
|
|
|
|
|
$loaded = false;
|
2014-05-20 14:59:17 +02:00
|
|
|
try {
|
2014-08-13 11:05:52 +02:00
|
|
|
$loaded = $this->maniaControl->getClient()->setServerOptions($newServerOptions);
|
2014-05-20 14:59:17 +02:00
|
|
|
} catch (ServerOptionsException $exception) {
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getChat()->sendExceptionToAdmins($exception);
|
2014-05-20 14:59:17 +02:00
|
|
|
}
|
2014-07-25 16:51:47 +02:00
|
|
|
|
|
|
|
if ($loaded) {
|
2014-07-25 18:09:51 +02:00
|
|
|
Logger::logInfo('Server Options successfully loaded!');
|
2014-07-25 16:51:47 +02:00
|
|
|
} else {
|
2014-07-25 18:09:51 +02:00
|
|
|
Logger::logError('Error loading Server Options!');
|
2014-07-25 16:51:47 +02:00
|
|
|
}
|
|
|
|
|
2014-07-25 15:17:36 +02:00
|
|
|
return $loaded;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-25 15:32:46 +02:00
|
|
|
* Fill up the new server options object with the necessary options based on the old options object
|
2014-07-25 15:17:36 +02:00
|
|
|
*
|
|
|
|
* @param ServerOptions $newServerOptions
|
|
|
|
* @param ServerOptions $oldServerOptions
|
|
|
|
* @return ServerOptions
|
|
|
|
*/
|
|
|
|
private function fillUpMandatoryOptions(ServerOptions &$newServerOptions, ServerOptions $oldServerOptions) {
|
2014-07-25 15:32:46 +02:00
|
|
|
$mandatoryOptions = array('name', 'comment', 'password', 'passwordForSpectator', 'nextCallVoteTimeOut', 'callVoteRatio');
|
|
|
|
foreach ($mandatoryOptions as $optionName) {
|
|
|
|
if (!isset($newServerOptions->$optionName) && isset($oldServerOptions->$optionName)) {
|
|
|
|
$newServerOptions->$optionName = $oldServerOptions->$optionName;
|
2014-07-25 15:17:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $newServerOptions;
|
2014-01-02 23:49:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \ManiaControl\Configurators\ConfiguratorMenu::getMenu()
|
|
|
|
*/
|
2014-04-30 05:27:23 +02:00
|
|
|
public function getMenu($width, $height, Script $script, Player $player) {
|
2014-05-02 17:50:30 +02:00
|
|
|
$paging = new Paging();
|
|
|
|
$script->addFeature($paging);
|
|
|
|
$frame = new Frame();
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-08-13 11:05:52 +02:00
|
|
|
$serverOptions = $this->maniaControl->getClient()->getServerOptions();
|
2014-07-25 15:32:46 +02:00
|
|
|
$serverOptionsArray = $serverOptions->toArray();
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-01-02 23:49:21 +01:00
|
|
|
// Config
|
2014-01-05 20:34:48 +01:00
|
|
|
$pagerSize = 9.;
|
2014-07-25 15:32:46 +02:00
|
|
|
$optionHeight = 5.;
|
2014-01-02 23:49:21 +01:00
|
|
|
$labelTextSize = 2;
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-01-02 23:49:21 +01:00
|
|
|
// Pagers
|
|
|
|
$pagerPrev = new Quad_Icons64x64_1();
|
|
|
|
$frame->add($pagerPrev);
|
2014-08-13 11:05:52 +02:00
|
|
|
$pagerPrev->setPosition($width * 0.39, $height * -0.44, 2)->setSize($pagerSize, $pagerSize)->setSubStyle($pagerPrev::SUBSTYLE_ArrowPrev);
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-01-02 23:49:21 +01:00
|
|
|
$pagerNext = new Quad_Icons64x64_1();
|
|
|
|
$frame->add($pagerNext);
|
2014-08-13 11:05:52 +02:00
|
|
|
$pagerNext->setPosition($width * 0.45, $height * -0.44, 2)->setSize($pagerSize, $pagerSize)->setSubStyle($pagerNext::SUBSTYLE_ArrowNext);
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-06-22 19:02:18 +02:00
|
|
|
$pageCountLabel = new Label_Text();
|
2014-01-02 23:49:21 +01:00
|
|
|
$frame->add($pageCountLabel);
|
2014-08-13 11:05:52 +02:00
|
|
|
$pageCountLabel->setHAlign($pageCountLabel::RIGHT)->setPosition($width * 0.35, $height * -0.44, 1)->setStyle($pageCountLabel::STYLE_TextTitle1)->setTextSize(2);
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-08-13 11:05:52 +02:00
|
|
|
$paging->addButton($pagerNext)->addButton($pagerPrev)->setLabel($pageCountLabel);
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-07-25 15:32:46 +02:00
|
|
|
// Pages
|
2014-06-17 23:55:59 +02:00
|
|
|
$posY = 0.;
|
|
|
|
$index = 0;
|
2014-05-15 17:45:08 +02:00
|
|
|
$pageFrame = null;
|
|
|
|
|
2014-07-25 15:32:46 +02:00
|
|
|
foreach ($serverOptionsArray as $name => $value) {
|
2014-01-05 12:21:40 +01:00
|
|
|
// Continue on CurrentMaxPlayers...
|
2014-07-24 23:13:30 +02:00
|
|
|
$pos = strpos($name, 'Current'); // TODO: display 'Current...' somewhere
|
2014-02-01 20:03:17 +01:00
|
|
|
if ($pos !== false) {
|
2014-01-02 23:49:21 +01:00
|
|
|
continue;
|
|
|
|
}
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-06-17 23:55:59 +02:00
|
|
|
if ($index % 13 === 0) {
|
2014-01-02 23:49:21 +01:00
|
|
|
$pageFrame = new Frame();
|
|
|
|
$frame->add($pageFrame);
|
2014-06-17 23:55:59 +02:00
|
|
|
$posY = $height * 0.41;
|
2014-05-02 17:50:30 +02:00
|
|
|
$paging->addPage($pageFrame);
|
2014-01-02 23:49:21 +01:00
|
|
|
}
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-07-25 15:32:46 +02:00
|
|
|
$optionsFrame = new Frame();
|
|
|
|
$pageFrame->add($optionsFrame);
|
|
|
|
$optionsFrame->setY($posY);
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-01-02 23:49:21 +01:00
|
|
|
$nameLabel = new Label_Text();
|
2014-07-25 15:32:46 +02:00
|
|
|
$optionsFrame->add($nameLabel);
|
2014-08-13 11:05:52 +02:00
|
|
|
$nameLabel->setHAlign($nameLabel::LEFT)->setX($width * -0.46)->setSize($width * 0.4, $optionHeight)->setStyle($nameLabel::STYLE_TextCardSmall)->setTextSize($labelTextSize)->setText($name)->setTextColor('fff');
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-05-15 23:05:57 +02:00
|
|
|
if (is_bool($value)) {
|
|
|
|
// Boolean checkbox
|
|
|
|
$quad = new Quad();
|
2014-08-13 11:05:52 +02:00
|
|
|
$quad->setPosition($width * 0.23, 0, -0.01)->setSize(4, 4);
|
2014-07-25 15:32:46 +02:00
|
|
|
$checkBox = new CheckBox(self::ACTION_PREFIX_OPTION . $name, $value, $quad);
|
|
|
|
$optionsFrame->add($checkBox);
|
2014-05-15 23:05:57 +02:00
|
|
|
} else {
|
|
|
|
// Other
|
|
|
|
$entry = new Entry();
|
2014-07-25 15:32:46 +02:00
|
|
|
$optionsFrame->add($entry);
|
2014-08-13 11:05:52 +02:00
|
|
|
$entry->setStyle(Label_Text::STYLE_TextValueSmall)->setX($width * 0.23)->setTextSize(1)->setSize($width * 0.48, $optionHeight * 0.9)->setName(self::ACTION_PREFIX_OPTION . $name)->setDefault($value);
|
2014-05-15 23:05:57 +02:00
|
|
|
|
2014-06-14 14:32:29 +02:00
|
|
|
if ($name === 'Comment') {
|
2014-08-13 11:05:52 +02:00
|
|
|
$entry->setSize($width * 0.48, $optionHeight * 3. + $optionHeight * 0.9)->setAutoNewLine(true);
|
2014-07-25 15:32:46 +02:00
|
|
|
$optionsFrame->setY($posY - $optionHeight * 1.5);
|
|
|
|
$posY -= $optionHeight * 3.;
|
2014-06-17 23:55:59 +02:00
|
|
|
$index += 3;
|
2014-05-15 23:05:57 +02:00
|
|
|
}
|
2014-01-02 23:49:21 +01:00
|
|
|
}
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-07-25 15:32:46 +02:00
|
|
|
$posY -= $optionHeight;
|
2014-06-17 23:55:59 +02:00
|
|
|
$index++;
|
2014-01-02 23:49:21 +01:00
|
|
|
}
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-01-02 23:49:21 +01:00
|
|
|
return $frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \ManiaControl\Configurators\ConfiguratorMenu::saveConfigData()
|
|
|
|
*/
|
|
|
|
public function saveConfigData(array $configData, Player $player) {
|
2015-07-11 15:18:44 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()->checkPermission($player, self::SETTING_PERMISSION_CHANGE_SERVER_OPTIONS)) {
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getAuthenticationManager()->sendNotAllowed($player);
|
2014-04-13 19:05:54 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-07-25 15:32:46 +02:00
|
|
|
if (!$configData[3] || strpos($configData[3][0]['Name'], self::ACTION_PREFIX_OPTION) !== 0) {
|
2014-01-05 20:34:48 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-25 15:32:46 +02:00
|
|
|
$prefixLength = strlen(self::ACTION_PREFIX_OPTION);
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-08-13 11:05:52 +02:00
|
|
|
$oldServerOptions = $this->maniaControl->getClient()->getServerOptions();
|
2014-07-25 15:17:36 +02:00
|
|
|
$newServerOptions = new ServerOptions();
|
2014-05-25 09:58:52 +02:00
|
|
|
|
2014-07-25 15:32:46 +02:00
|
|
|
foreach ($configData[3] as $option) {
|
|
|
|
$optionName = lcfirst(substr($option['Name'], $prefixLength));
|
|
|
|
$newServerOptions->$optionName = $option['Value'];
|
|
|
|
settype($newServerOptions->$optionName, gettype($oldServerOptions->$optionName));
|
2014-01-02 23:49:21 +01:00
|
|
|
}
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-07-25 15:17:36 +02:00
|
|
|
$this->fillUpMandatoryOptions($newServerOptions, $oldServerOptions);
|
|
|
|
|
|
|
|
$success = $this->applyNewServerOptions($newServerOptions, $player);
|
2014-05-16 20:42:37 +02:00
|
|
|
if ($success) {
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getChat()->sendSuccess('Server Options saved!', $player);
|
2014-05-16 20:42:37 +02:00
|
|
|
} else {
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getChat()->sendError('Server Options saving failed!', $player);
|
2014-05-16 20:42:37 +02:00
|
|
|
}
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-05-16 20:42:37 +02:00
|
|
|
// Reopen the Menu
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getConfigurator()->showMenu($player, $this);
|
2014-01-02 23:49:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-25 15:32:46 +02:00
|
|
|
* Apply the array of new Server Options
|
2014-01-02 23:49:21 +01:00
|
|
|
*
|
2014-07-25 15:17:36 +02:00
|
|
|
* @param ServerOptions $newServerOptions
|
2014-05-20 15:42:10 +02:00
|
|
|
* @param Player $player
|
2014-01-04 17:18:11 +01:00
|
|
|
* @return bool
|
2014-01-02 23:49:21 +01:00
|
|
|
*/
|
2016-04-10 13:32:32 +02:00
|
|
|
private function applyNewServerOptions(ServerOptions $newServerOptions, $player = null) {
|
2014-04-22 21:56:18 +02:00
|
|
|
try {
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getClient()->setServerOptions($newServerOptions);
|
2014-07-24 23:13:30 +02:00
|
|
|
} catch (ServerOptionsException $exception) {
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getChat()->sendException($exception, $player);
|
2014-04-22 21:56:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-01-05 20:34:48 +01:00
|
|
|
|
2014-07-25 15:17:36 +02:00
|
|
|
$this->saveServerOptions($newServerOptions, true);
|
2014-07-24 23:13:30 +02:00
|
|
|
|
2014-08-13 11:05:52 +02:00
|
|
|
$this->maniaControl->getCallbackManager()->triggerCallback(self::CB_SERVER_OPTIONS_CHANGED, array(self::CB_SERVER_OPTIONS_CHANGED));
|
2014-07-24 23:13:30 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2015-07-11 15:18:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the communication Listenings
|
|
|
|
*/
|
|
|
|
private function initalizeCommunicationListenings() {
|
|
|
|
//Communication Listenings
|
|
|
|
$this->maniaControl->getCommunicationManager()->registerCommunicationListener(CommunicationMethods::GET_SERVER_OPTIONS, $this, function ($data) {
|
|
|
|
return new CommunicationAnswer($this->maniaControl->getClient()->getServerOptions());
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->maniaControl->getCommunicationManager()->registerCommunicationListener(CommunicationMethods::SET_SERVER_OPTIONS, $this, function ($data) {
|
|
|
|
if (!is_object($data) || !property_exists($data, "serverOptions")) {
|
|
|
|
return new CommunicationAnswer("No valid ServerOptions provided!", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$oldServerOptions = $this->maniaControl->getClient()->getServerOptions();
|
|
|
|
$newServerOptions = new ServerOptions();
|
|
|
|
|
|
|
|
foreach ($data->serverOptions as $name => $value) {
|
|
|
|
$optionName = $name;
|
|
|
|
$newServerOptions->$optionName = $value;
|
|
|
|
settype($newServerOptions->$optionName, gettype($oldServerOptions->$optionName));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->fillUpMandatoryOptions($newServerOptions, $oldServerOptions);
|
|
|
|
|
2016-04-10 13:32:32 +02:00
|
|
|
|
2015-07-11 15:18:44 +02:00
|
|
|
try {
|
2016-04-10 13:32:32 +02:00
|
|
|
$success = $this->applyNewServerOptions($newServerOptions);
|
2015-07-11 15:18:44 +02:00
|
|
|
} catch (ServerOptionsException $exception) {
|
|
|
|
return new CommunicationAnswer($exception->getMessage(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Trigger Server Options Changed Callback
|
|
|
|
$this->maniaControl->getCallbackManager()->triggerCallback(self::CB_SERVER_OPTIONS_CHANGED, array(self::CB_SERVER_OPTIONS_CHANGED));
|
|
|
|
|
|
|
|
return new CommunicationAnswer(array("success" => $success));
|
|
|
|
});
|
|
|
|
}
|
2014-01-02 23:49:21 +01:00
|
|
|
}
|