Added descriptions to commands.
This commit is contained in:
committed by
Steffen Schröder
parent
490c9b81af
commit
d2021d689e
@ -2,8 +2,14 @@
|
||||
|
||||
namespace ManiaControl\Commands;
|
||||
|
||||
use FML\Controls\Frame;
|
||||
use FML\Controls\Quads\Quad_BgsPlayerCard;
|
||||
use FML\ManiaLink;
|
||||
use FML\Script\Features\Paging;
|
||||
|
||||
use ManiaControl\Callbacks\CallbackListener;
|
||||
use ManiaControl\Callbacks\CallbackManager;
|
||||
use ManiaControl\Manialinks\ManialinkManager;
|
||||
use ManiaControl\ManiaControl;
|
||||
use ManiaControl\Players\Player;
|
||||
|
||||
@ -39,8 +45,10 @@ class HelpManager implements CommandListener, CallbackListener {
|
||||
*/
|
||||
public function handleOnInit() {
|
||||
//Register the help command
|
||||
$this->maniaControl->commandManager->registerCommandListener('help', $this, 'command_playerHelp', false);
|
||||
$this->maniaControl->commandManager->registerCommandListener('help', $this, 'command_adminHelp', true);
|
||||
$this->maniaControl->commandManager->registerCommandListener('help', $this, 'command_playerHelp', false, 'Shows all commands in chat.');
|
||||
$this->maniaControl->commandManager->registerCommandListener('helpall', $this, 'command_playerHelpAll', false, 'Shows all commands in ManiaLink with description.');
|
||||
$this->maniaControl->commandManager->registerCommandListener('help', $this, 'command_adminHelp', true, 'Shows all admin commands in chat.');
|
||||
$this->maniaControl->commandManager->registerCommandListener('helpall', $this, 'command_adminHelpAll', true, 'Shows all admin commands in ManiaLink with description.');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -50,9 +58,24 @@ class HelpManager implements CommandListener, CallbackListener {
|
||||
* @param Player $player
|
||||
*/
|
||||
public function command_adminHelp(array $chat, Player $player) {
|
||||
//TODO only show first command in command arrays
|
||||
$message = 'Supported Admin Commands: ';
|
||||
$showCommands = array();
|
||||
$registeredMethods = array();
|
||||
foreach(array_reverse($this->adminCommands) as $command) {
|
||||
if(array_key_exists($command['Method'], $registeredMethods) && $showCommands[$command['Method']]['Description'] == $command['Description']) {
|
||||
$name = $registeredMethods[$command['Method']];
|
||||
$showCommands[$name]['Name'] .= '|'.$command['Name'];
|
||||
} else {
|
||||
$showCommands[$command['Name']] = $command;
|
||||
$registeredMethods[$command['Method']] = $command['Name'];
|
||||
}
|
||||
}
|
||||
|
||||
usort($showCommands, function($a, $b) {
|
||||
return strcmp($a["Name"], $b["Name"]);
|
||||
});
|
||||
|
||||
$message = 'Supported Admin Commands: ';
|
||||
foreach($showCommands as $command) {
|
||||
$message .= $command['Name'] . ',';
|
||||
}
|
||||
$message = substr($message, 0, -1);
|
||||
@ -66,27 +89,159 @@ class HelpManager implements CommandListener, CallbackListener {
|
||||
* @param Player $player
|
||||
*/
|
||||
public function command_playerHelp(array $chat, Player $player) {
|
||||
//TODO only show first command in command arrays
|
||||
$message = 'Supported Player Commands: ';
|
||||
$showCommands = array();
|
||||
$registeredMethods = array();
|
||||
foreach(array_reverse($this->playerCommands) as $command) {
|
||||
if(array_key_exists($command['Method'], $registeredMethods) && $showCommands[$command['Method']]['Description'] == $command['Description']) {
|
||||
$name = $registeredMethods[$command['Method']];
|
||||
$showCommands[$name]['Name'] .= '|'.$command['Name'];
|
||||
} else {
|
||||
$showCommands[$command['Name']] = $command;
|
||||
$registeredMethods[$command['Method']] = $command['Name'];
|
||||
}
|
||||
}
|
||||
|
||||
usort($showCommands, function($a, $b) {
|
||||
return strcmp($a["Name"], $b["Name"]);
|
||||
});
|
||||
|
||||
$message = 'Supported Player Commands: ';
|
||||
foreach($showCommands as $command) {
|
||||
$message .= $command['Name'] . ',';
|
||||
}
|
||||
$message = substr($message, 0, -1);
|
||||
$this->maniaControl->chat->sendChat($message, $player->login);
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows a ManiaLink list of Player Commands
|
||||
*
|
||||
* @param array $chat
|
||||
* @param Player $player
|
||||
*/
|
||||
public function command_playerHelpAll(array $chat, Player $player) {
|
||||
$this->prepareHelpAll($this->playerCommands, $player);
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows a ManiaLink list of Admin Commands
|
||||
*
|
||||
* @param array $chat
|
||||
* @param Player $player
|
||||
*/
|
||||
public function command_adminHelpAll(array $chat, Player $player) {
|
||||
$this->prepareHelpAll($this->adminCommands, $player);
|
||||
}
|
||||
|
||||
private function prepareHelpAll($commands, $player) {
|
||||
$showCommands = array();
|
||||
$registeredMethods = array();
|
||||
foreach(array_reverse($commands) as $command) {
|
||||
if(array_key_exists($command['Method'], $registeredMethods)) {
|
||||
if($showCommands[$registeredMethods[$command['Method']]]['Description'] == $command['Description']) {
|
||||
$name = $registeredMethods[$command['Method']];
|
||||
$showCommands[$name]['Name'] .= '|'.$command['Name'];
|
||||
} else {
|
||||
$showCommands[$command['Name']] = $command;
|
||||
$registeredMethods[$command['Method']] = $command['Name'];
|
||||
}
|
||||
} else {
|
||||
$showCommands[$command['Name']] = $command;
|
||||
$registeredMethods[$command['Method']] = $command['Name'];
|
||||
}
|
||||
}
|
||||
|
||||
usort($showCommands, function($a, $b) {
|
||||
return strcmp($a["Name"], $b["Name"]);
|
||||
});
|
||||
|
||||
$this->showHelpAllList($showCommands, $player);
|
||||
}
|
||||
|
||||
private function showHelpAllList($commands, $player) {
|
||||
$width = $this->maniaControl->manialinkManager->styleManager->getListWidgetsWidth();
|
||||
$height = $this->maniaControl->manialinkManager->styleManager->getListWidgetsHeight();
|
||||
|
||||
// create manialink
|
||||
$maniaLink = new ManiaLink(ManialinkManager::MAIN_MLID);
|
||||
$script = $maniaLink->getScript();
|
||||
$paging = new Paging();
|
||||
$script->addFeature($paging);
|
||||
|
||||
// Main frame
|
||||
$frame = $this->maniaControl->manialinkManager->styleManager->getDefaultListFrame($script, $paging);
|
||||
$maniaLink->add($frame);
|
||||
|
||||
// Start offsets
|
||||
$x = -$width / 2;
|
||||
$y = $height / 2;
|
||||
|
||||
//Predefine description Label
|
||||
$descriptionLabel = $this->maniaControl->manialinkManager->styleManager->getDefaultDescriptionLabel();
|
||||
$frame->add($descriptionLabel);
|
||||
|
||||
// Headline
|
||||
$headFrame = new Frame();
|
||||
$frame->add($headFrame);
|
||||
$headFrame->setY($y - 5);
|
||||
$array = array("Command" => $x + 5, "Description" => $x + 50);
|
||||
$this->maniaControl->manialinkManager->labelLine($headFrame, $array);
|
||||
|
||||
$i = 1;
|
||||
$y = $y - 10;
|
||||
$pageFrames = array();
|
||||
foreach($commands as $command) {
|
||||
if (!isset($pageFrame)) {
|
||||
$pageFrame = new Frame();
|
||||
$frame->add($pageFrame);
|
||||
if (!empty($pageFrames)) {
|
||||
$pageFrame->setVisible(false);
|
||||
}
|
||||
array_push($pageFrames, $pageFrame);
|
||||
$y = $height / 2 - 10;
|
||||
$paging->addPage($pageFrame);
|
||||
}
|
||||
|
||||
$playerFrame = new Frame();
|
||||
$pageFrame->add($playerFrame);
|
||||
$playerFrame->setY($y);
|
||||
|
||||
if ($i % 2 != 0) {
|
||||
$lineQuad = new Quad_BgsPlayerCard();
|
||||
$playerFrame->add($lineQuad);
|
||||
$lineQuad->setSize($width, 4);
|
||||
$lineQuad->setSubStyle($lineQuad::SUBSTYLE_BgPlayerCardBig);
|
||||
$lineQuad->setZ(0.001);
|
||||
}
|
||||
|
||||
$array = array($command['Name'] => $x + 5, $command['Description'] => $x + 50);
|
||||
$labels = $this->maniaControl->manialinkManager->labelLine($playerFrame, $array);
|
||||
$labels[0]->setWidth(40);
|
||||
|
||||
$y -= 4;
|
||||
$i++;
|
||||
if (($i - 1) % 15 == 0) {
|
||||
unset($pageFrame);
|
||||
}
|
||||
}
|
||||
|
||||
// Render and display xml
|
||||
$this->maniaControl->manialinkManager->displayWidget($maniaLink, $player, 'HelpAllList');
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a new Command
|
||||
*
|
||||
* @param $name
|
||||
* @param $adminCommand
|
||||
* @param $description
|
||||
* @param $name
|
||||
* @param bool $adminCommand
|
||||
* @param string $description
|
||||
* @param $method
|
||||
*/
|
||||
public function registerCommand($name, $adminCommand = false, $description = '') {
|
||||
public function registerCommand($name, $adminCommand = false, $description = '', $method) {
|
||||
if($adminCommand) {
|
||||
array_push($this->adminCommands, array("Name" => $name, "Description" => $description));
|
||||
array_push($this->adminCommands, array("Name" => $name, "Description" => $description, "Method" => $method));
|
||||
} else {
|
||||
array_push($this->playerCommands, array("Name" => $name, "Description" => $description));
|
||||
array_push($this->playerCommands, array("Name" => $name, "Description" => $description, "Method" => $method));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user