mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Localization;
|
|
|
|
namespace Robust.Shared.Console;
|
|
|
|
public abstract class LocalizedCommands : IConsoleCommand
|
|
{
|
|
[Dependency] protected readonly ILocalizationManager LocalizationManager = default!;
|
|
|
|
/// <inheritdoc />
|
|
public abstract string Command { get; }
|
|
|
|
/// <inheritdoc />
|
|
public virtual string Description => LocalizationManager.TryGetString($"cmd-{Command}-desc", out var val) ? val : "";
|
|
|
|
/// <inheritdoc />
|
|
public virtual string Help => LocalizationManager.TryGetString($"cmd-{Command}-help", out var val) ? val : "";
|
|
|
|
/// <inheritdoc />
|
|
public virtual bool RequireServerOrSingleplayer => false;
|
|
|
|
/// <inheritdoc />
|
|
public abstract void Execute(IConsoleShell shell, string argStr, string[] args);
|
|
|
|
/// <inheritdoc />
|
|
public virtual CompletionResult GetCompletion(IConsoleShell shell, string[] args) => CompletionResult.Empty;
|
|
|
|
/// <inheritdoc />
|
|
public virtual ValueTask<CompletionResult> GetCompletionAsync(IConsoleShell shell, string[] args, string argStr,
|
|
CancellationToken cancel)
|
|
{
|
|
return ValueTask.FromResult(GetCompletion(shell, args));
|
|
}
|
|
}
|