mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
74 lines
3.0 KiB
C#
74 lines
3.0 KiB
C#
using System.Linq;
|
|
using Robust.Shared.Console;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Network;
|
|
|
|
namespace Robust.Client.Console.Commands
|
|
{
|
|
sealed class HelpCommand : IConsoleCommand
|
|
{
|
|
public string Command => "help";
|
|
public string Help => "When no arguments are provided, displays a generic help text. When an argument is passed, display the help text for the command with that name.";
|
|
public string Description => "Display help text.";
|
|
|
|
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
switch (args.Length)
|
|
{
|
|
case 0:
|
|
shell.WriteLine("To display help for a specific command, write 'help <command>'. To list all available commands, write 'list'.");
|
|
break;
|
|
|
|
case 1:
|
|
string commandname = args[0];
|
|
if (!shell.ConsoleHost.RegisteredCommands.ContainsKey(commandname))
|
|
{
|
|
if (!IoCManager.Resolve<IClientNetManager>().IsConnected)
|
|
{
|
|
// No server so nothing to respond with unknown command.
|
|
shell.WriteError("Unknown command: " + commandname);
|
|
return;
|
|
}
|
|
// TODO: Maybe have a server side help?
|
|
return;
|
|
}
|
|
IConsoleCommand command = shell.ConsoleHost.RegisteredCommands[commandname];
|
|
shell.WriteLine(string.Format("{0} - {1}", command.Command, command.Description));
|
|
shell.WriteLine(command.Help);
|
|
break;
|
|
|
|
default:
|
|
shell.WriteError("Invalid amount of arguments.");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
sealed class ListCommand : IConsoleCommand
|
|
{
|
|
public string Command => "list";
|
|
public string Help => "Usage: list [filter]\n" +
|
|
"Lists all available commands, and their short descriptions.\n" +
|
|
"If a filter is provided, " +
|
|
"only commands that contain the given string in their name will be listed.";
|
|
public string Description => "List all commands, optionally with a filter.";
|
|
|
|
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
var filter = "";
|
|
if (args.Length == 1)
|
|
{
|
|
filter = args[0];
|
|
}
|
|
|
|
var conGroup = IoCManager.Resolve<IClientConGroupController>();
|
|
foreach (var command in shell.ConsoleHost.RegisteredCommands.Values
|
|
.Where(p => p.Command.Contains(filter) && (p is not ServerDummyCommand || conGroup.CanCommand(p.Command)))
|
|
.OrderBy(c => c.Command))
|
|
{
|
|
shell.WriteLine(command.Command + ": " + command.Description);
|
|
}
|
|
}
|
|
}
|
|
}
|