TechbloxModdingAPI/GamecraftModdingAPI/Commands/SimpleCustomCommandEngine.cs
2020-05-15 17:42:04 -04:00

83 lines
2.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Svelto.ECS;
using GamecraftModdingAPI.Utility;
namespace GamecraftModdingAPI.Commands
{
/// <summary>
/// A simple implementation of ICustomCommandEngine sufficient for most commands.
/// This version is for commands which take 0 argument(s)
/// </summary>
public class SimpleCustomCommandEngine : ICustomCommandEngine
{
/// <summary>
/// The name of the command
/// </summary>
public string Name { get; }
/// <summary>
/// The command's description, shown in command help messages
/// </summary>
public string Description { get; }
/// <summary>
/// The operation to execute when the command is called by the player
/// </summary>
private Action runCommand;
public EntitiesDB entitiesDB { set; private get; }
public bool isRemovable => true;
public void Dispose()
{
GamecraftModdingAPI.Utility.Logging.MetaDebugLog($"Unregistering SimpleCustomCommandEngine {this.Name}");
CommandRegistrationHelper.Unregister(this.Name);
}
public void Ready()
{
GamecraftModdingAPI.Utility.Logging.MetaDebugLog($"Registering SimpleCustomCommandEngine {this.Name}");
CommandRegistrationHelper.Register(this.Name, this.InvokeCatchError, 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 command, string name, string description)
{
this.runCommand = command;
this.Name = name;
this.Description = description;
}
public void Invoke()
{
runCommand();
}
private void InvokeCatchError()
{
try
{
runCommand();
}
catch (Exception e)
{
CommandRuntimeException wrappedException = new CommandRuntimeException($"Command {Name} threw an exception when executed", e);
Logging.LogWarning(wrappedException.ToString());
Logging.CommandLogError(wrappedException.ToString());
}
}
}
}