using System.Linq; using Robust.Shared.Console; using Robust.Shared.IoC; using Robust.Shared.Network; namespace Robust.Client.Console.Commands { 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 '. To list all available commands, write 'list'."); break; case 1: string commandname = args[0]; if (!shell.ConsoleHost.RegisteredCommands.ContainsKey(commandname)) { if (!IoCManager.Resolve().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; } } } 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(); 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); } } } }