2019-12-16 00:35:59 +00:00
|
|
|
|
using System;
|
2019-12-15 07:20:20 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2019-12-16 00:35:59 +00:00
|
|
|
|
using Svelto.ECS;
|
|
|
|
|
|
2019-12-15 07:20:20 +00:00
|
|
|
|
namespace GamecraftModdingAPI.Commands
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A simple implementation of ICustomCommandEngine sufficient for most commands.
|
|
|
|
|
/// This version is for commands which take 1 argument(s)
|
|
|
|
|
/// </summary>
|
2019-12-19 20:42:50 +00:00
|
|
|
|
public class SimpleCustomCommandEngine<A> : ICustomCommandEngine
|
2019-12-15 07:20:20 +00:00
|
|
|
|
{
|
|
|
|
|
public string Name { get; }
|
|
|
|
|
|
|
|
|
|
public string Description { get; }
|
|
|
|
|
|
|
|
|
|
private Action<A> runCommand;
|
|
|
|
|
|
2020-03-12 22:36:23 +00:00
|
|
|
|
public EntitiesDB entitiesDB { set; private get; }
|
2019-12-15 07:20:20 +00:00
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
2019-12-25 21:16:17 +00:00
|
|
|
|
GamecraftModdingAPI.Utility.Logging.MetaDebugLog($"Unregistering SimpleCustomCommandEngine {this.Name}");
|
2019-12-15 07:20:20 +00:00
|
|
|
|
CommandRegistrationHelper.Unregister(this.Name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Ready()
|
|
|
|
|
{
|
2019-12-25 21:16:17 +00:00
|
|
|
|
GamecraftModdingAPI.Utility.Logging.MetaDebugLog($"Registering SimpleCustomCommandEngine {this.Name}");
|
2019-12-15 07:20:20 +00:00
|
|
|
|
CommandRegistrationHelper.Register<A>(this.Name, this.runCommand, this.Description);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Construct the engine
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="command">The command's operation</param>
|
|
|
|
|
/// <param name="name">The name of the command</param>
|
|
|
|
|
/// <param name="description">The command's description, shown in command help messages</param>
|
|
|
|
|
public SimpleCustomCommandEngine(Action<A> command, string name, string description)
|
|
|
|
|
{
|
|
|
|
|
this.runCommand = command;
|
|
|
|
|
this.Name = name;
|
|
|
|
|
this.Description = description;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|