Files
RobustToolbox/Robust.Shared/Console/IConsoleHost.cs
Acruid 3eb6e067f9 Console Unify (#1513)
* Renamed shared ICommand to IConsoleCommand.

* Lots of refactoring into a shared context.

* Removed ICommonSession from server concmd Execute.

* Added argStr parameter to concmd execute.

* The execute function of client concmds now returns void, use the new shell.RemoteExecuteCommand function to forward commands.

# Conflicts:
#	Robust.Client/Console/Commands/Debug.cs

* Finally move shells and commands into shared.

* Console commands can now be registered directly without a class in a shared context.

* Pulled up ConsoleHost and Console shell into a shared context.

* Pulled up half the functions of ConsoleHost into a shared context.

* Repair rebase damage.

* Make LoadConsoleCommands function not remove any previously registered commands.
2021-02-01 16:40:26 -08:00

122 lines
5.0 KiB
C#

using System;
using System.Collections.Generic;
using Robust.Shared.Maths;
using Robust.Shared.Players;
namespace Robust.Shared.Console
{
/// <summary>
/// A delegate that is called when the command is executed inside a shell.
/// </summary>
/// <param name="shell">The console shell that executed this command.</param>
/// <param name="argStr">Unparsed text of the complete command with arguments.</param>
/// <param name="args">An array of all the parsed arguments.</param>
public delegate void ConCommandCallback(IConsoleShell shell, string argStr, string[] args);
/// <summary>
/// The console host exists as a singleton subsystem that provides all of the features of the console API.
/// It will register console commands, spawn console shells and execute command strings.
/// </summary>
public interface IConsoleHost
{
/// <summary>
/// Is the shell running on the client?
/// </summary>
bool IsClient => !IsServer;
/// <summary>
/// Is the shell running on the server?
/// </summary>
bool IsServer { get; }
/// <summary>
/// The local shell of the peer that is always available.
/// </summary>
IConsoleShell LocalShell { get; }
/// <summary>
/// A map of (commandName -> ICommand) of every registered command in the shell.
/// </summary>
IReadOnlyDictionary<string, IConsoleCommand> RegisteredCommands { get; }
event EventHandler ClearText;
/// <summary>
/// Scans all loaded assemblies for console commands and registers them. This will NOT sync with connected clients, and
/// should only be used during server initialization.
/// </summary>
void LoadConsoleCommands();
/// <summary>
/// Registers a console command into the console system. This is an alternative to
/// creating an <see cref="IConsoleCommand" /> class.
/// </summary>
/// <param name="command">A string as identifier for this command.</param>
/// <param name="description">Short one sentence description of the command.</param>
/// <param name="help">Command format string.</param>
/// <param name="callback"></param>
void RegisterCommand(string command, string description, string help, ConCommandCallback callback);
/// <summary>
/// Returns the console shell for a given active session.
/// </summary>
/// <remarks>
/// On the client this will always return the local shell, on the server this will return the shell of the active
/// session.
/// </remarks>
/// <param name="session">Session to get the shell of.</param>
/// <returns>Shell of the specified session.</returns>
IConsoleShell GetSessionShell(ICommonSession session);
/// <summary>
/// Execute a command string on the local shell.
/// </summary>
/// <param name="command">Command string to execute.</param>
void ExecuteCommand(string command);
/// <summary>
/// Executes a command string on this specific session shell. If the command does not exist, the command will be forwarded
/// to the
/// remote shell.
/// </summary>
/// <param name="session">Session of the client to execute the command.</param>
/// <param name="command">command line string to execute.</param>
void ExecuteCommand(ICommonSession? session, string command);
/// <summary>
/// Executes the command string on the remote peer. This is mainly used to forward commands from the client to the server.
/// If there is no remote peer (this is a local shell), this function does nothing.
/// </summary>
/// <param name="session">Session of the remote peer to execute the command on.</param>
/// <param name="command">Command line string to execute at the remote endpoint.</param>
void RemoteExecuteCommand(ICommonSession? session, string command);
/// <summary>
/// Sends a text string to the remote session.
/// </summary>
/// <param name="session">
/// Remote session to send the text message to. If this is null, the text is sent to the local
/// console.
/// </param>
/// <param name="text">Text message to send.</param>
void WriteLine(ICommonSession? session, string text);
/// <summary>
/// Sends a foreground colored text string to the remote session.
/// </summary>
/// <param name="session">
/// Remote session to send the text message to. If this is null, the text is sent to the local
/// console.
/// </param>
/// <param name="text">Text message to send.</param>
/// <param name="color">Foreground color of the text.</param>
void WriteLine(ICommonSession? session, string text, Color color);
/// <summary>
/// Removes all text from the local console.
/// </summary>
void ClearLocalConsole();
}
}