summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Command.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/StardewModdingAPI/Command.cs')
-rw-r--r--src/StardewModdingAPI/Command.cs109
1 files changed, 69 insertions, 40 deletions
diff --git a/src/StardewModdingAPI/Command.cs b/src/StardewModdingAPI/Command.cs
index 1fa18d49..e2d08538 100644
--- a/src/StardewModdingAPI/Command.cs
+++ b/src/StardewModdingAPI/Command.cs
@@ -1,23 +1,33 @@
using System;
using System.Collections.Generic;
-using System.Linq;
using StardewModdingAPI.Events;
using StardewModdingAPI.Framework;
namespace StardewModdingAPI
{
/// <summary>A command that can be submitted through the SMAPI console to interact with SMAPI.</summary>
+ [Obsolete("Use " + nameof(IModHelper) + "." + nameof(IModHelper.ConsoleCommands))]
public class Command
{
/*********
** Properties
*********/
- /****
- ** SMAPI
- ****/
/// <summary>The commands registered with SMAPI.</summary>
- internal static List<Command> RegisteredCommands = new List<Command>();
+ private static readonly IDictionary<string, Command> LegacyCommands = new Dictionary<string, Command>(StringComparer.InvariantCultureIgnoreCase);
+
+ /// <summary>Manages console commands.</summary>
+ private static CommandManager CommandManager;
+ /// <summary>Manages deprecation warnings.</summary>
+ private static DeprecationManager DeprecationManager;
+
+ /// <summary>Tracks the installed mods.</summary>
+ private static ModRegistry ModRegistry;
+
+
+ /*********
+ ** Accessors
+ *********/
/// <summary>The event raised when this command is submitted through the console.</summary>
public event EventHandler<EventArgsCommand> CommandFired;
@@ -43,6 +53,17 @@ namespace StardewModdingAPI
/****
** Command
****/
+ /// <summary>Injects types required for backwards compatibility.</summary>
+ /// <param name="commandManager">Manages console commands.</param>
+ /// <param name="deprecationManager">Manages deprecation warnings.</param>
+ /// <param name="modRegistry">Tracks the installed mods.</param>
+ internal static void Shim(CommandManager commandManager, DeprecationManager deprecationManager, ModRegistry modRegistry)
+ {
+ Command.CommandManager = commandManager;
+ Command.DeprecationManager = deprecationManager;
+ Command.ModRegistry = modRegistry;
+ }
+
/// <summary>Construct an instance.</summary>
/// <param name="name">The name of the command.</param>
/// <param name="description">A human-readable description of what the command does.</param>
@@ -64,44 +85,17 @@ namespace StardewModdingAPI
this.CommandFired.Invoke(this, new EventArgsCommand(this));
}
+
/****
** SMAPI
****/
/// <summary>Parse a command string and invoke it if valid.</summary>
/// <param name="input">The command to run, including the command name and any arguments.</param>
- [Obsolete("Use the overload which passes in your mod's monitor")]
- public static void CallCommand(string input)
- {
- Program.DeprecationManager.Warn($"an old version of {nameof(Command)}.{nameof(Command.CallCommand)}", "1.1", DeprecationLevel.Notice);
- Command.CallCommand(input, Program.GetLegacyMonitorForMod());
- }
-
- /// <summary>Parse a command string and invoke it if valid.</summary>
- /// <param name="input">The command to run, including the command name and any arguments.</param>
/// <param name="monitor">Encapsulates monitoring and logging.</param>
public static void CallCommand(string input, IMonitor monitor)
{
- // normalise input
- input = input?.Trim();
- if (string.IsNullOrWhiteSpace(input))
- return;
-
- // tokenise input
- string[] args = input.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
- string commandName = args[0];
- args = args.Skip(1).ToArray();
-
- // get command
- Command command = Command.FindCommand(commandName);
- if (command == null)
- {
- monitor.Log("Unknown command", LogLevel.Error);
- return;
- }
-
- // fire command
- command.CalledArgs = args;
- command.Fire();
+ Command.DeprecationManager.Warn("Command.CallCommand", "1.9", DeprecationLevel.Info);
+ Command.CommandManager.Trigger(input);
}
/// <summary>Register a command with SMAPI.</summary>
@@ -110,11 +104,25 @@ namespace StardewModdingAPI
/// <param name="args">A human-readable list of accepted arguments.</param>
public static Command RegisterCommand(string name, string description, string[] args = null)
{
- var command = new Command(name, description, args);
- if (Command.RegisteredCommands.Contains(command))
- throw new InvalidOperationException($"The '{command.CommandName}' command is already registered!");
+ name = name?.Trim().ToLower();
+
+ // raise deprecation warning
+ Command.DeprecationManager.Warn("Command.RegisterCommand", "1.9", DeprecationLevel.Info);
- Command.RegisteredCommands.Add(command);
+ // validate
+ if (Command.LegacyCommands.ContainsKey(name))
+ throw new InvalidOperationException($"The '{name}' command is already registered!");
+
+ // add command
+ string modName = Command.ModRegistry.GetModFromStack() ?? "<unknown mod>";
+ string documentation = args?.Length > 0
+ ? $"{description} - {string.Join(", ", args)}"
+ : description;
+ Command.CommandManager.Add(modName, name, documentation, Command.Fire);
+
+ // add legacy command
+ Command command = new Command(name, description, args);
+ Command.LegacyCommands.Add(name, command);
return command;
}
@@ -122,7 +130,28 @@ namespace StardewModdingAPI
/// <param name="name">The command name to find.</param>
public static Command FindCommand(string name)
{
- return Command.RegisteredCommands.Find(x => x.CommandName.Equals(name));
+ Command.DeprecationManager.Warn("Command.FindCommand", "1.9", DeprecationLevel.Info);
+ if (name == null)
+ return null;
+
+ Command command;
+ Command.LegacyCommands.TryGetValue(name.Trim(), out command);
+ return command;
+ }
+
+
+ /*********
+ ** Private methods
+ *********/
+ /// <summary>Trigger this command.</summary>
+ /// <param name="name">The command name.</param>
+ /// <param name="args">The command arguments.</param>
+ private static void Fire(string name, string[] args)
+ {
+ Command command;
+ if (!Command.LegacyCommands.TryGetValue(name, out command))
+ throw new InvalidOperationException($"Can't run command '{name}' because there's no such legacy command.");
+ command.Fire();
}
}
}