2013-11-19 20:29:37 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Server;
|
|
|
|
|
2014-01-31 20:12:01 +01:00
|
|
|
use FML\Controls\Quads\Quad_BgRaceScore2;
|
2014-01-10 00:18:15 +01:00
|
|
|
use FML\Controls\Quads\Quad_Icons128x32_1;
|
2014-01-10 13:28:48 +01:00
|
|
|
use FML\Controls\Quads\Quad_Icons64x64_1;
|
2013-11-19 20:29:37 +01:00
|
|
|
use ManiaControl\Admin\AuthenticationManager;
|
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
2014-05-24 16:39:12 +02:00
|
|
|
use ManiaControl\Callbacks\Callbacks;
|
2014-01-31 00:04:40 +01:00
|
|
|
use ManiaControl\Callbacks\TimerListener;
|
2013-11-19 20:29:37 +01:00
|
|
|
use ManiaControl\Commands\CommandListener;
|
2014-08-05 01:49:13 +02:00
|
|
|
use ManiaControl\Logger;
|
2014-01-10 12:06:47 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
2014-01-10 00:18:15 +01:00
|
|
|
use ManiaControl\Manialinks\ManialinkPageAnswerListener;
|
2013-11-19 20:29:37 +01:00
|
|
|
use ManiaControl\Players\Player;
|
2014-05-13 17:59:37 +02:00
|
|
|
use Maniaplanet\DedicatedServer\Xmlrpc\GameModeException;
|
2013-11-19 20:29:37 +01:00
|
|
|
|
|
|
|
/**
|
2014-04-12 12:14:37 +02:00
|
|
|
* Class offering various Commands related to the Dedicated Server
|
2013-11-19 20:29:37 +01:00
|
|
|
*
|
2014-05-02 17:50:30 +02:00
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
|
|
|
* @copyright 2014 ManiaControl Team
|
2014-04-19 23:14:37 +02:00
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2013-11-19 20:29:37 +01:00
|
|
|
*/
|
2014-07-19 23:12:11 +02:00
|
|
|
class Commands implements CallbackListener, CommandListener, ManialinkPageAnswerListener, TimerListener {
|
2014-04-12 12:14:37 +02:00
|
|
|
/*
|
2014-01-10 00:18:15 +01:00
|
|
|
* Constants
|
|
|
|
*/
|
2014-01-31 16:55:01 +01:00
|
|
|
const ACTION_SET_PAUSE = 'ServerCommands.SetPause';
|
2014-01-31 20:12:01 +01:00
|
|
|
const ACTION_EXTEND_WARMUP = 'ServerCommands.ExtendWarmup';
|
|
|
|
const ACTION_END_WARMUP = 'ServerCommands.EndWarmup';
|
2014-01-31 16:55:01 +01:00
|
|
|
const ACTION_CANCEL_VOTE = 'ServerCommands.CancelVote';
|
2014-07-26 16:07:52 +02:00
|
|
|
const CB_VOTE_CANCELLED = 'ServerCommands.VoteCancelled';
|
2014-01-31 16:55:01 +01:00
|
|
|
const SETTING_PERMISSION_CANCEL_VOTE = 'Cancel Vote';
|
|
|
|
const SETTING_PERMISSION_SET_PAUSE = 'Set Pause';
|
2014-01-31 20:12:01 +01:00
|
|
|
const SETTING_PERMISSION_HANDLE_WARMUP = 'Handle Warmup';
|
2014-01-31 16:55:01 +01:00
|
|
|
const SETTING_PERMISSION_SHOW_SYSTEMINFO = 'Show SystemInfo';
|
|
|
|
const SETTING_PERMISSION_SHUTDOWN_SERVER = 'Shutdown Server';
|
|
|
|
const SETTING_PERMISSION_CHANGE_SERVERSETTINGS = 'Change ServerSettings';
|
2014-07-19 23:29:20 +02:00
|
|
|
const COMMAND_EXTEND_WARMUP = 'WarmUp_Extend';
|
|
|
|
const COMMAND_FORCE_WARMUP = 'Command_ForceWarmUp';
|
2014-01-11 23:36:53 +01:00
|
|
|
|
2014-04-12 12:14:37 +02:00
|
|
|
/*
|
2014-07-25 16:28:47 +02:00
|
|
|
* Private properties
|
2013-11-19 20:29:37 +01:00
|
|
|
*/
|
2014-08-02 22:31:46 +02:00
|
|
|
/** @var ManiaControl $maniaControl */
|
2013-11-19 20:29:37 +01:00
|
|
|
private $maniaControl = null;
|
|
|
|
private $serverShutdownTime = -1;
|
|
|
|
private $serverShutdownEmpty = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new server commands instance
|
|
|
|
*
|
2014-01-01 19:25:51 +01:00
|
|
|
* @param ManiaControl $maniaControl
|
2013-11-19 20:29:37 +01:00
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2014-01-10 12:06:47 +01:00
|
|
|
|
2014-08-03 01:34:18 +02:00
|
|
|
// Callbacks
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getTimerManager()
|
|
|
|
->registerTimerListening($this, 'each5Seconds', 5000);
|
|
|
|
$this->maniaControl->getCallbackManager()
|
|
|
|
->registerCallbackListener(Callbacks::ONINIT, $this, 'handleOnInit');
|
|
|
|
$this->maniaControl->getCallbackManager()
|
|
|
|
->registerCallbackListener(Callbacks::WARMUPSTATUS, $this, 'handleWarmUpStatus');
|
2014-08-03 01:34:18 +02:00
|
|
|
|
|
|
|
// Chat commands
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getCommandManager()
|
|
|
|
->registerCommandListener('setservername', $this, 'commandSetServerName', true, 'Sets the ServerName.');
|
|
|
|
$this->maniaControl->getCommandManager()
|
|
|
|
->registerCommandListener('setpwd', $this, 'commandSetPwd', true, 'Sets play password.');
|
|
|
|
$this->maniaControl->getCommandManager()
|
|
|
|
->registerCommandListener('setspecpwd', $this, 'commandSetSpecPwd', true, 'Sets spectator password.');
|
|
|
|
$this->maniaControl->getCommandManager()
|
|
|
|
->registerCommandListener('setmaxplayers', $this, 'commandSetMaxPlayers', true, 'Sets the maximum number of players.');
|
|
|
|
$this->maniaControl->getCommandManager()
|
|
|
|
->registerCommandListener('setmaxspectators', $this, 'commandSetMaxSpectators', true, 'Sets the maximum number of spectators.');
|
|
|
|
$this->maniaControl->getCommandManager()
|
|
|
|
->registerCommandListener('shutdownserver', $this, 'commandShutdownServer', true, 'Shuts down the ManiaPlanet server.');
|
|
|
|
$this->maniaControl->getCommandManager()
|
|
|
|
->registerCommandListener('systeminfo', $this, 'commandSystemInfo', true, 'Shows system information.');
|
|
|
|
$this->maniaControl->getCommandManager()
|
|
|
|
->registerCommandListener('cancel', $this, 'commandCancelVote', true, 'Cancels the current vote.');
|
2014-08-03 01:34:18 +02:00
|
|
|
|
|
|
|
// Page actions
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getManialinkManager()
|
|
|
|
->registerManialinkPageAnswerListener(self::ACTION_SET_PAUSE, $this, 'setPause');
|
|
|
|
$this->maniaControl->getManialinkManager()
|
|
|
|
->registerManialinkPageAnswerListener(self::ACTION_EXTEND_WARMUP, $this, 'commandExtendWarmup');
|
|
|
|
$this->maniaControl->getManialinkManager()
|
|
|
|
->registerManialinkPageAnswerListener(self::ACTION_END_WARMUP, $this, 'commandEndWarmup');
|
|
|
|
$this->maniaControl->getManialinkManager()
|
|
|
|
->registerManialinkPageAnswerListener(self::ACTION_CANCEL_VOTE, $this, 'commandCancelVote');
|
2014-01-14 20:09:27 +01:00
|
|
|
}
|
2014-01-10 00:18:15 +01:00
|
|
|
|
2014-01-14 20:09:27 +01:00
|
|
|
/**
|
2014-02-19 15:44:00 +01:00
|
|
|
* Handle ManiaControl OnInit Callback
|
2014-01-14 20:09:27 +01:00
|
|
|
*/
|
2014-02-19 15:44:00 +01:00
|
|
|
public function handleOnInit() {
|
2014-08-03 01:34:18 +02:00
|
|
|
// Permissions
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->definePermissionLevel(self::SETTING_PERMISSION_SHUTDOWN_SERVER, AuthenticationManager::AUTH_LEVEL_SUPERADMIN);
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->definePermissionLevel(self::SETTING_PERMISSION_SHOW_SYSTEMINFO, AuthenticationManager::AUTH_LEVEL_SUPERADMIN);
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->definePermissionLevel(self::SETTING_PERMISSION_CHANGE_SERVERSETTINGS, AuthenticationManager::AUTH_LEVEL_ADMIN);
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->definePermissionLevel(self::SETTING_PERMISSION_SET_PAUSE, AuthenticationManager::AUTH_LEVEL_MODERATOR);
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->definePermissionLevel(self::SETTING_PERMISSION_CANCEL_VOTE, AuthenticationManager::AUTH_LEVEL_MODERATOR);
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->definePermissionLevel(self::SETTING_PERMISSION_HANDLE_WARMUP, AuthenticationManager::AUTH_LEVEL_MODERATOR);
|
2014-01-31 16:55:01 +01:00
|
|
|
|
2014-07-19 23:29:20 +02:00
|
|
|
$this->updateCancelVoteMenuItem();
|
|
|
|
$this->updateWarmUpMenuItems();
|
|
|
|
}
|
2014-01-31 20:12:01 +01:00
|
|
|
|
2014-07-19 23:29:20 +02:00
|
|
|
/**
|
|
|
|
* Add the cancel vote menu item
|
|
|
|
*/
|
|
|
|
private function updateCancelVoteMenuItem() {
|
2014-01-10 13:28:48 +01:00
|
|
|
$itemQuad = new Quad_Icons64x64_1();
|
|
|
|
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_ArrowRed);
|
|
|
|
$itemQuad->setAction(self::ACTION_CANCEL_VOTE);
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getActionsMenu()
|
|
|
|
->addMenuItem($itemQuad, false, 30, 'Cancel Vote');
|
2014-07-19 23:29:20 +02:00
|
|
|
}
|
2014-02-13 00:26:18 +01:00
|
|
|
|
2014-07-19 23:29:20 +02:00
|
|
|
/**
|
|
|
|
* Manage the WarmUp related menu items
|
|
|
|
*/
|
|
|
|
private function updateWarmUpMenuItems() {
|
|
|
|
$pauseExists = false;
|
2014-02-13 00:26:18 +01:00
|
|
|
try {
|
2014-08-05 02:17:41 +02:00
|
|
|
$scriptInfos = $this->maniaControl->getClient()
|
|
|
|
->getModeScriptInfo();
|
2014-07-19 23:29:20 +02:00
|
|
|
foreach ($scriptInfos->commandDescs as $param) {
|
|
|
|
if ($param->name === self::COMMAND_FORCE_WARMUP) {
|
|
|
|
$pauseExists = true;
|
|
|
|
break;
|
|
|
|
}
|
2014-02-13 00:26:18 +01:00
|
|
|
}
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getClient()
|
|
|
|
->triggerModeScriptEvent("WarmUp_GetStatus");
|
2014-07-19 23:29:20 +02:00
|
|
|
} catch (GameModeException $e) {
|
2014-02-13 00:26:18 +01:00
|
|
|
}
|
|
|
|
|
2014-07-19 23:29:20 +02:00
|
|
|
// Add pause menu item
|
2014-02-13 00:26:18 +01:00
|
|
|
if ($pauseExists) {
|
|
|
|
$itemQuad = new Quad_Icons128x32_1();
|
|
|
|
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_ManiaLinkSwitch);
|
|
|
|
$itemQuad->setAction(self::ACTION_SET_PAUSE);
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getActionsMenu()
|
|
|
|
->addAdminMenuItem($itemQuad, 13, 'Pause the current game');
|
2014-02-13 00:26:18 +01:00
|
|
|
}
|
2014-07-19 23:29:20 +02:00
|
|
|
|
2014-01-10 13:28:48 +01:00
|
|
|
}
|
|
|
|
|
2014-07-04 18:25:09 +02:00
|
|
|
/**
|
2014-07-19 23:29:20 +02:00
|
|
|
* Handle the WarmupStatus Callback, and removes or adds the Menu Items for extending / Stopping warmup
|
2014-07-04 18:25:09 +02:00
|
|
|
*
|
|
|
|
* @param $warmupEnabled
|
|
|
|
*/
|
|
|
|
public function handleWarmUpStatus($warmupEnabled) {
|
|
|
|
if ($warmupEnabled) {
|
2014-07-19 23:29:20 +02:00
|
|
|
// Extend WarmUp menu item
|
2014-07-04 18:25:09 +02:00
|
|
|
$itemQuad = new Quad_BgRaceScore2();
|
|
|
|
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_SendScore);
|
|
|
|
$itemQuad->setAction(self::ACTION_EXTEND_WARMUP);
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getActionsMenu()
|
|
|
|
->addMenuItem($itemQuad, false, 14, 'Extend Warmup');
|
2014-07-04 18:25:09 +02:00
|
|
|
|
2014-07-19 23:29:20 +02:00
|
|
|
// Stop WarmUp menu item
|
2014-07-04 18:25:09 +02:00
|
|
|
$itemQuad = new Quad_Icons64x64_1();
|
|
|
|
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_ArrowGreen);
|
|
|
|
$itemQuad->setAction(self::ACTION_END_WARMUP);
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getActionsMenu()
|
|
|
|
->addMenuItem($itemQuad, false, 15, 'End Warmup');
|
2014-07-04 18:25:09 +02:00
|
|
|
} else {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getActionsMenu()
|
|
|
|
->removeMenuItem(14, false);
|
|
|
|
$this->maniaControl->getActionsMenu()
|
|
|
|
->removeMenuItem(15, false);
|
2014-07-04 18:25:09 +02:00
|
|
|
}
|
|
|
|
}
|
2014-02-01 19:06:21 +01:00
|
|
|
|
2014-01-10 13:28:48 +01:00
|
|
|
/**
|
|
|
|
* Handle //cancelvote command
|
|
|
|
*
|
|
|
|
* @param array $chatCallback
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
2014-07-19 23:29:20 +02:00
|
|
|
public function commandCancelVote(array $chatCallback, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_CANCEL_VOTE)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2014-01-10 13:28:48 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-01-16 19:49:36 +01:00
|
|
|
|
2014-08-05 02:17:41 +02:00
|
|
|
if ($this->maniaControl->getClient()
|
|
|
|
->cancelVote()
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendInformation($player->getEscapedNickname() . ' cancelled the Vote!');
|
2014-07-19 23:29:20 +02:00
|
|
|
} else {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendInformation("There's no vote running currently!", $player);
|
2014-07-19 23:29:20 +02:00
|
|
|
}
|
2014-07-27 22:27:39 +02:00
|
|
|
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getCallbackManager()
|
|
|
|
->triggerCallback(self::CB_VOTE_CANCELLED, $player);
|
2014-01-10 00:18:15 +01:00
|
|
|
}
|
|
|
|
|
2014-01-31 20:12:01 +01:00
|
|
|
|
|
|
|
/**
|
2014-07-19 23:29:20 +02:00
|
|
|
* Extend the WarmUp
|
2014-01-31 20:12:01 +01:00
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
2014-07-19 23:29:20 +02:00
|
|
|
public function commandExtendWarmup(array $callback, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_HANDLE_WARMUP)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2014-01-31 20:12:01 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getClient()
|
|
|
|
->triggerModeScriptEvent('WarmUp_Extend', '10');
|
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendInformation($player->getEscapedNickname() . ' extended the WarmUp by 10 seconds!');
|
2014-05-13 17:59:37 +02:00
|
|
|
} catch (GameModeException $e) {
|
2014-01-31 20:12:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-19 23:29:20 +02:00
|
|
|
* End the WarmUp
|
2014-01-31 20:12:01 +01:00
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
2014-07-19 23:29:20 +02:00
|
|
|
public function commandEndWarmup(array $callback, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_HANDLE_WARMUP)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2014-01-31 20:12:01 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getClient()
|
|
|
|
->triggerModeScriptEvent('WarmUp_Stop', '');
|
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendInformation($player->getEscapedNickname() . ' stopped the WarmUp!');
|
2014-05-13 17:59:37 +02:00
|
|
|
} catch (GameModeException $e) {
|
2014-01-31 20:12:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-10 00:18:15 +01:00
|
|
|
/**
|
2014-05-02 16:13:45 +02:00
|
|
|
* Pause the current game
|
2014-01-10 12:06:47 +01:00
|
|
|
*
|
2014-05-02 17:50:30 +02:00
|
|
|
* @param array $callback
|
2014-05-02 16:13:45 +02:00
|
|
|
* @param Player $player
|
2014-01-10 00:18:15 +01:00
|
|
|
*/
|
2014-01-31 16:55:01 +01:00
|
|
|
public function setPause(array $callback, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_SET_PAUSE)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2014-01-31 16:55:01 +01:00
|
|
|
return;
|
2014-01-10 12:06:47 +01:00
|
|
|
}
|
2014-01-31 16:55:01 +01:00
|
|
|
try {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getClient()
|
|
|
|
->sendModeScriptCommands(array('Command_ForceWarmUp' => true));
|
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendInformation($player->getEscapedNickname() . ' paused the Game!');
|
2014-05-13 17:59:37 +02:00
|
|
|
} catch (GameModeException $e) {
|
2014-01-31 16:55:01 +01:00
|
|
|
}
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-13 16:40:05 +02:00
|
|
|
* Check Stuff each 5 Seconds
|
2013-11-19 20:29:37 +01:00
|
|
|
*/
|
2014-05-13 16:40:05 +02:00
|
|
|
public function each5Seconds() {
|
2014-07-19 23:29:20 +02:00
|
|
|
// TODO: move empty & delayed shutdown code into server class
|
2013-11-19 20:29:37 +01:00
|
|
|
// Empty shutdown
|
2014-01-31 00:04:40 +01:00
|
|
|
if ($this->serverShutdownEmpty) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if ($this->maniaControl->getPlayerManager()
|
|
|
|
->getPlayerCount(false) <= 0
|
|
|
|
) {
|
2013-12-05 00:30:10 +01:00
|
|
|
$this->shutdownServer('empty');
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
|
|
|
}
|
2014-01-10 12:06:47 +01:00
|
|
|
|
2013-11-19 20:29:37 +01:00
|
|
|
// Delayed shutdown
|
2014-01-31 00:04:40 +01:00
|
|
|
if ($this->serverShutdownTime > 0) {
|
|
|
|
if (time() >= $this->serverShutdownTime) {
|
2013-12-05 00:30:10 +01:00
|
|
|
$this->shutdownServer('delayed');
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 17:50:30 +02:00
|
|
|
/**
|
|
|
|
* Perform server shutdown
|
|
|
|
*
|
|
|
|
* @param string $login
|
|
|
|
*/
|
2014-06-20 16:34:19 +02:00
|
|
|
private function shutdownServer($login = '-') {
|
2014-08-05 01:49:13 +02:00
|
|
|
Logger::logInfo("Server shutdown requested by '{$login}'!");
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getClient()
|
|
|
|
->stopServer();
|
2014-05-02 17:50:30 +02:00
|
|
|
}
|
|
|
|
|
2013-11-19 20:29:37 +01:00
|
|
|
/**
|
2013-11-24 23:55:54 +01:00
|
|
|
* Handle //systeminfo command
|
2013-11-19 20:29:37 +01:00
|
|
|
*
|
2014-01-10 12:06:47 +01:00
|
|
|
* @param array $chat
|
2014-01-01 19:25:51 +01:00
|
|
|
* @param Player $player
|
2013-11-19 20:29:37 +01:00
|
|
|
*/
|
2014-07-19 23:29:20 +02:00
|
|
|
public function commandSystemInfo(array $chat, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_SHOW_SYSTEMINFO)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
2014-08-05 02:17:41 +02:00
|
|
|
$systemInfo = $this->maniaControl->getClient()
|
|
|
|
->getSystemInfo();
|
2014-01-23 17:47:21 +01:00
|
|
|
$message = 'SystemInfo: ip=' . $systemInfo->publishedIp . ', port=' . $systemInfo->port . ', p2pPort=' . $systemInfo->p2PPort . ', title=' . $systemInfo->titleId . ', login=' . $systemInfo->serverLogin . '.';
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendInformation($message, $player->login);
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-11-24 23:55:54 +01:00
|
|
|
* Handle //shutdownserver command
|
2013-11-19 20:29:37 +01:00
|
|
|
*
|
2014-01-10 12:06:47 +01:00
|
|
|
* @param array $chat
|
2014-01-01 19:25:51 +01:00
|
|
|
* @param Player $player
|
2013-11-19 20:29:37 +01:00
|
|
|
*/
|
2014-07-19 23:29:20 +02:00
|
|
|
public function commandShutdownServer(array $chat, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_SHUTDOWN_SERVER)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
|
|
|
// Check for delayed shutdown
|
|
|
|
$params = explode(' ', $chat[1][2]);
|
2014-01-31 00:04:40 +01:00
|
|
|
if (count($params) >= 2) {
|
2013-11-19 20:29:37 +01:00
|
|
|
$param = $params[1];
|
2014-06-14 14:32:29 +02:00
|
|
|
if (strtolower($param) === 'empty') {
|
2013-11-19 20:29:37 +01:00
|
|
|
$this->serverShutdownEmpty = !$this->serverShutdownEmpty;
|
2014-01-31 00:04:40 +01:00
|
|
|
if ($this->serverShutdownEmpty) {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendInformation("The server will shutdown as soon as it's empty!", $player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendInformation("Empty-shutdown cancelled!", $player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
2014-01-10 12:06:47 +01:00
|
|
|
$delay = (int)$param;
|
2014-01-31 00:04:40 +01:00
|
|
|
if ($delay <= 0) {
|
2013-11-19 20:29:37 +01:00
|
|
|
// Cancel shutdown
|
|
|
|
$this->serverShutdownTime = -1;
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendInformation("Delayed shutdown cancelled!", $player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
|
|
|
// Trigger delayed shutdown
|
|
|
|
$this->serverShutdownTime = time() + $delay * 60.;
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendInformation("The server will shut down in {$delay} minutes!", $player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
2013-12-05 00:30:10 +01:00
|
|
|
$this->shutdownServer($player->login);
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-11-24 23:55:54 +01:00
|
|
|
* Handle //setservername command
|
2013-11-19 20:29:37 +01:00
|
|
|
*
|
2014-01-10 12:06:47 +01:00
|
|
|
* @param array $chat
|
2014-01-01 19:25:51 +01:00
|
|
|
* @param Player $player
|
2013-11-19 20:29:37 +01:00
|
|
|
*/
|
2014-07-19 23:29:20 +02:00
|
|
|
public function commandSetServerName(array $chat, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_CHANGE_SERVERSETTINGS)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
|
|
|
$params = explode(' ', $chat[1][2], 2);
|
2014-01-31 00:04:40 +01:00
|
|
|
if (count($params) < 2) {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendUsageInfo('Usage example: //setservername ManiaPlanet Server', $player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|
|
|
|
$serverName = $params[1];
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getClient()
|
|
|
|
->setServerName($serverName);
|
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendSuccess("Server name changed to: '{$serverName}'!", $player);
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle //setpwd command
|
|
|
|
*
|
2014-01-10 12:06:47 +01:00
|
|
|
* @param array $chatCallback
|
2014-01-01 19:25:51 +01:00
|
|
|
* @param Player $player
|
2013-11-24 23:55:54 +01:00
|
|
|
*/
|
2014-07-19 23:29:20 +02:00
|
|
|
public function commandSetPwd(array $chatCallback, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_CHANGE_SERVERSETTINGS)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
2014-01-10 12:06:47 +01:00
|
|
|
$messageParts = explode(' ', $chatCallback[1][2], 2);
|
|
|
|
$password = '';
|
2013-11-24 23:55:54 +01:00
|
|
|
$successMessage = 'Password removed!';
|
2014-01-31 00:04:40 +01:00
|
|
|
if (isset($messageParts[1])) {
|
2014-01-10 12:06:47 +01:00
|
|
|
$password = $messageParts[1];
|
2013-11-24 23:55:54 +01:00
|
|
|
$successMessage = "Password changed to: '{$password}'!";
|
|
|
|
}
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getClient()
|
|
|
|
->setServerPassword($password);
|
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendSuccess($successMessage, $player);
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle //setspecpwd command
|
|
|
|
*
|
2014-01-10 12:06:47 +01:00
|
|
|
* @param array $chatCallback
|
2014-01-01 19:25:51 +01:00
|
|
|
* @param Player $player
|
2013-11-24 23:55:54 +01:00
|
|
|
*/
|
2014-07-19 23:29:20 +02:00
|
|
|
public function commandSetSpecPwd(array $chatCallback, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_CHANGE_SERVERSETTINGS)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
2014-01-10 12:06:47 +01:00
|
|
|
$messageParts = explode(' ', $chatCallback[1][2], 2);
|
|
|
|
$password = '';
|
2013-11-24 23:55:54 +01:00
|
|
|
$successMessage = 'Spectator password removed!';
|
2014-01-31 00:04:40 +01:00
|
|
|
if (isset($messageParts[1])) {
|
2014-01-10 12:06:47 +01:00
|
|
|
$password = $messageParts[1];
|
2013-11-24 23:55:54 +01:00
|
|
|
$successMessage = "Spectator password changed to: '{$password}'!";
|
|
|
|
}
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getClient()
|
|
|
|
->setServerPasswordForSpectator($password);
|
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendSuccess($successMessage, $player);
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle //setmaxplayers command
|
|
|
|
*
|
2014-01-10 12:06:47 +01:00
|
|
|
* @param array $chatCallback
|
2014-01-01 19:25:51 +01:00
|
|
|
* @param Player $player
|
2013-11-24 23:55:54 +01:00
|
|
|
*/
|
2014-07-19 23:29:20 +02:00
|
|
|
public function commandSetMaxPlayers(array $chatCallback, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_CHANGE_SERVERSETTINGS)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
|
|
|
$messageParts = explode(' ', $chatCallback[1][2], 2);
|
2014-01-31 00:04:40 +01:00
|
|
|
if (!isset($messageParts[1])) {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendUsageInfo('Usage example: //setmaxplayers 16', $player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
|
|
|
$amount = $messageParts[1];
|
2014-01-31 00:04:40 +01:00
|
|
|
if (!is_numeric($amount)) {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendUsageInfo('Usage example: //setmaxplayers 16', $player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
2014-01-10 12:06:47 +01:00
|
|
|
$amount = (int)$amount;
|
2014-01-31 00:04:40 +01:00
|
|
|
if ($amount < 0) {
|
2013-11-24 23:55:54 +01:00
|
|
|
$amount = 0;
|
|
|
|
}
|
2014-01-20 20:51:03 +01:00
|
|
|
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getClient()
|
|
|
|
->setMaxPlayers($amount);
|
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendSuccess("Changed max players to: {$amount}", $player);
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle //setmaxspectators command
|
|
|
|
*
|
2014-01-10 12:06:47 +01:00
|
|
|
* @param array $chatCallback
|
2014-01-01 19:25:51 +01:00
|
|
|
* @param Player $player
|
2013-11-24 23:55:54 +01:00
|
|
|
*/
|
2014-07-19 23:29:20 +02:00
|
|
|
public function commandSetMaxSpectators(array $chatCallback, Player $player) {
|
2014-08-05 02:17:41 +02:00
|
|
|
if (!$this->maniaControl->getAuthenticationManager()
|
|
|
|
->checkPermission($player, self::SETTING_PERMISSION_CHANGE_SERVERSETTINGS)
|
|
|
|
) {
|
|
|
|
$this->maniaControl->getAuthenticationManager()
|
|
|
|
->sendNotAllowed($player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
|
|
|
$messageParts = explode(' ', $chatCallback[1][2], 2);
|
2014-01-31 00:04:40 +01:00
|
|
|
if (!isset($messageParts[1])) {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendUsageInfo('Usage example: //setmaxspectators 16', $player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
|
|
|
$amount = $messageParts[1];
|
2014-01-31 00:04:40 +01:00
|
|
|
if (!is_numeric($amount)) {
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendUsageInfo('Usage example: //setmaxspectators 16', $player);
|
2013-12-05 00:30:10 +01:00
|
|
|
return;
|
2013-11-24 23:55:54 +01:00
|
|
|
}
|
2014-01-10 12:06:47 +01:00
|
|
|
$amount = (int)$amount;
|
2014-01-31 00:04:40 +01:00
|
|
|
if ($amount < 0) {
|
2013-11-24 23:55:54 +01:00
|
|
|
$amount = 0;
|
|
|
|
}
|
2014-01-20 20:51:03 +01:00
|
|
|
|
2014-08-05 02:17:41 +02:00
|
|
|
$this->maniaControl->getClient()
|
|
|
|
->setMaxSpectators($amount);
|
|
|
|
$this->maniaControl->getChat()
|
|
|
|
->sendSuccess("Changed max spectators to: {$amount}", $player);
|
2013-12-05 00:30:10 +01:00
|
|
|
}
|
2013-11-19 20:29:37 +01:00
|
|
|
}
|