2013-11-12 16:52:23 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Maps;
|
|
|
|
|
|
|
|
use ManiaControl\ManiaControl;
|
2013-11-13 01:43:12 +01:00
|
|
|
use ManiaControl\Admin\AuthenticationManager;
|
2013-11-12 16:52:23 +01:00
|
|
|
use ManiaControl\Commands\CommandListener;
|
2013-11-27 02:42:39 +01:00
|
|
|
use ManiaControl\FileUtil;
|
2013-11-12 16:52:23 +01:00
|
|
|
use ManiaControl\Players\Player;
|
2013-12-14 22:00:59 +01:00
|
|
|
use ManiaControl\Players\PlayerManager;
|
2013-11-12 16:52:23 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class offering commands to manage maps
|
|
|
|
*
|
|
|
|
* @author steeffeen & kremsy
|
|
|
|
*/
|
|
|
|
class MapCommands implements CommandListener {
|
|
|
|
/**
|
|
|
|
* Private properties
|
|
|
|
*/
|
|
|
|
private $maniaControl = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create MapCommands instance
|
|
|
|
*
|
|
|
|
* @param \ManiaControl\ManiaControl $maniaControl
|
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2013-12-15 11:29:49 +01:00
|
|
|
|
|
|
|
// Register for admin chat commands
|
2013-12-15 09:00:30 +01:00
|
|
|
$this->maniaControl->commandManager->registerCommandListener('nextmap', $this, 'command_NextMap', true);
|
|
|
|
$this->maniaControl->commandManager->registerCommandListener('restartmap', $this, 'command_RestartMap', true);
|
|
|
|
$this->maniaControl->commandManager->registerCommandListener('addmap', $this, 'command_AddMap', true);
|
|
|
|
$this->maniaControl->commandManager->registerCommandListener('removemap', $this, 'command_RemoveMap', true);
|
|
|
|
|
2013-12-15 11:29:49 +01:00
|
|
|
// Register for player chat commands
|
|
|
|
$this->maniaControl->commandManager->registerCommandListener('xlist', $this, 'command_xList');
|
2013-12-15 09:00:30 +01:00
|
|
|
$this->maniaControl->commandManager->registerCommandListener('list', $this, 'command_List');
|
|
|
|
$this->maniaControl->commandManager->registerCommandListener('maps', $this, 'command_List');
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle removemap command
|
|
|
|
*
|
|
|
|
* @param array $chat
|
|
|
|
* @param \ManiaControl\Players\Player $player
|
|
|
|
*/
|
|
|
|
public function command_RemoveMap(array $chat, Player $player) {
|
2013-11-13 01:43:12 +01:00
|
|
|
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($player);
|
2013-12-15 09:00:30 +01:00
|
|
|
return;
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
2013-11-27 02:42:39 +01:00
|
|
|
// Get map
|
|
|
|
$map = $this->maniaControl->mapManager->getCurrentMap();
|
2013-11-12 16:52:23 +01:00
|
|
|
if (!$map) {
|
|
|
|
$this->maniaControl->chat->sendError("Couldn't remove map.", $player->login);
|
2013-12-15 09:00:30 +01:00
|
|
|
return;
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
|
|
|
// Remove map
|
2013-11-27 02:42:39 +01:00
|
|
|
if (!$this->maniaControl->client->query('RemoveMap', $map->fileName)) {
|
2013-11-12 16:52:23 +01:00
|
|
|
trigger_error("Couldn't remove current map. " . $this->maniaControl->getClientErrorText());
|
|
|
|
$this->maniaControl->chat->sendError("Couldn't remove map.", $player->login);
|
2013-12-15 09:00:30 +01:00
|
|
|
return;
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
|
|
|
$this->maniaControl->chat->sendSuccess('Map removed.', $player->login);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle addmap command
|
|
|
|
*
|
2013-11-27 02:42:39 +01:00
|
|
|
* @param array $chatCallback
|
2013-11-12 16:52:23 +01:00
|
|
|
* @param \ManiaControl\Players\Player $player
|
|
|
|
*/
|
2013-11-27 02:42:39 +01:00
|
|
|
public function command_AddMap(array $chatCallback, Player $player) {
|
2013-11-13 01:43:12 +01:00
|
|
|
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($player);
|
2013-12-15 09:00:30 +01:00
|
|
|
return;
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
2013-12-09 13:45:58 +01:00
|
|
|
// TODO: user mx fetcher
|
2013-11-27 02:42:39 +01:00
|
|
|
$params = explode(' ', $chatCallback[1][2], 2);
|
2013-11-12 16:52:23 +01:00
|
|
|
if (count($params) < 2) {
|
2013-11-19 20:29:37 +01:00
|
|
|
$this->maniaControl->chat->sendUsageInfo('Usage example: //addmap 1234', $player->login);
|
2013-12-15 09:00:30 +01:00
|
|
|
return;
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
2013-12-15 15:13:56 +01:00
|
|
|
|
|
|
|
//add Map from Mania Exchange
|
|
|
|
$this->maniaControl->mapManager->addMapFromMx($params[1],$player->login);
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle nextmap command
|
|
|
|
*
|
|
|
|
* @param array $chat
|
|
|
|
* @param \ManiaControl\Players\Player $player
|
|
|
|
*/
|
|
|
|
public function command_NextMap(array $chat, Player $player) {
|
2013-11-13 01:43:12 +01:00
|
|
|
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($player);
|
2013-12-15 09:00:30 +01:00
|
|
|
return;
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
2013-12-15 09:00:30 +01:00
|
|
|
$this->maniaControl->client->query('NextMap');
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-12-15 09:00:30 +01:00
|
|
|
* Handle restartmap command
|
2013-11-12 16:52:23 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
|
|
|
* @param \ManiaControl\Players\Player $player
|
|
|
|
*/
|
|
|
|
public function command_RestartMap(array $chat, Player $player) {
|
2013-11-13 01:43:12 +01:00
|
|
|
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($player);
|
2013-12-15 09:00:30 +01:00
|
|
|
return;
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
2013-12-15 09:00:30 +01:00
|
|
|
$this->maniaControl->client->query('RestartMap');
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
2013-12-14 22:00:59 +01:00
|
|
|
|
2013-12-15 09:00:30 +01:00
|
|
|
/**
|
|
|
|
* Handle list maps command
|
|
|
|
*
|
|
|
|
* @param array $chatCallback
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
|
|
|
public function command_List(array $chatCallback, Player $player) {
|
2013-12-14 22:00:59 +01:00
|
|
|
$mapList = new MapList($this->maniaControl);
|
|
|
|
$mapList->showMapList($player);
|
|
|
|
}
|
2013-12-15 11:29:49 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle ManiaExchange list command
|
|
|
|
* @param array $chatCallback
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
|
|
|
public function command_xList(array $chatCallback, Player $player) {
|
|
|
|
$mapList = new MapList($this->maniaControl);
|
|
|
|
$mapList->showManiaExchangeList($chatCallback, $player);
|
|
|
|
}
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|