mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 12:33:02 +00:00
170 lines
6.4 KiB
C#
170 lines
6.4 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SanAndreasUnity.Net;
|
|
using UnityEngine;
|
|
|
|
namespace SanAndreasUnity.Commands
|
|
{
|
|
public class CommandManager : MonoBehaviour
|
|
{
|
|
public static CommandManager Singleton { get; private set; }
|
|
|
|
readonly Dictionary<string, CommandInfo> m_registeredCommands = new Dictionary<string, CommandInfo>();
|
|
|
|
public IEnumerable<string> RegisteredCommands => m_registeredCommands.Keys;
|
|
|
|
public static string invalidSyntaxText => "Invalid syntax";
|
|
|
|
[SerializeField] private List<string> m_forbiddenCommands = new List<string>();
|
|
|
|
/// <summary> Forbidden commands can not be registered. </summary>
|
|
public List<string> ForbiddenCommands => m_forbiddenCommands;
|
|
|
|
[SerializeField] private bool m_registerHelpCommand = true;
|
|
|
|
public struct CommandInfo
|
|
{
|
|
public string command;
|
|
public string description;
|
|
public System.Func<ProcessCommandContext, ProcessCommandResult> commandHandler;
|
|
public bool allowToRunWithoutServerPermissions;
|
|
public bool runOnlyOnServer;
|
|
|
|
public CommandInfo(string command, bool allowToRunWithoutServerPermissions)
|
|
: this()
|
|
{
|
|
this.command = command;
|
|
this.allowToRunWithoutServerPermissions = allowToRunWithoutServerPermissions;
|
|
}
|
|
|
|
public CommandInfo(string command, string description, bool allowToRunWithoutServerPermissions, bool runOnlyOnServer)
|
|
: this()
|
|
{
|
|
this.command = command;
|
|
this.description = description;
|
|
this.allowToRunWithoutServerPermissions = allowToRunWithoutServerPermissions;
|
|
this.runOnlyOnServer = runOnlyOnServer;
|
|
}
|
|
}
|
|
|
|
public class ProcessCommandResult
|
|
{
|
|
public string response;
|
|
|
|
public static ProcessCommandResult UnknownCommand => new ProcessCommandResult {response = "Unknown command"};
|
|
public static ProcessCommandResult InvalidCommand => new ProcessCommandResult {response = "Invalid command"};
|
|
public static ProcessCommandResult NoPermissions => new ProcessCommandResult {response = "You don't have permissions to run this command"};
|
|
public static ProcessCommandResult CanOnlyRunOnServer => new ProcessCommandResult {response = "This command can only run on server"};
|
|
public static ProcessCommandResult LimitInterval(float interval) => new ProcessCommandResult {response = $"You must wait for {interval} seconds before running this command again"};
|
|
}
|
|
|
|
public class ProcessCommandContext
|
|
{
|
|
public string command;
|
|
public bool hasServerPermissions;
|
|
public Player player;
|
|
}
|
|
|
|
|
|
|
|
void Awake()
|
|
{
|
|
if (null == Singleton)
|
|
Singleton = this;
|
|
|
|
if (m_registerHelpCommand)
|
|
RegisterCommand(new CommandInfo { command = "help", commandHandler = ProcessHelpCommand, allowToRunWithoutServerPermissions = true });
|
|
}
|
|
|
|
public bool RegisterCommand(CommandInfo commandInfo)
|
|
{
|
|
commandInfo.command = commandInfo.command.Trim();
|
|
|
|
if (this.ForbiddenCommands.Contains(commandInfo.command))
|
|
return false;
|
|
|
|
if (m_registeredCommands.ContainsKey(commandInfo.command))
|
|
return false;
|
|
|
|
m_registeredCommands.Add(commandInfo.command, commandInfo);
|
|
return true;
|
|
}
|
|
|
|
public bool RemoveCommand(string command)
|
|
{
|
|
return m_registeredCommands.Remove(command);
|
|
}
|
|
|
|
public static string[] SplitCommandIntoArguments(string command)
|
|
{
|
|
// TODO: add support for arguments that have spaces, i.e. those enclosed with quotes
|
|
|
|
return command.Split(new string[] {" ", "\t"}, System.StringSplitOptions.RemoveEmptyEntries);
|
|
}
|
|
|
|
public static string GetRestOfTheCommand(string command, int argumentIndex)
|
|
{
|
|
if (argumentIndex < 0)
|
|
return "";
|
|
|
|
string[] args = SplitCommandIntoArguments(command);
|
|
|
|
if (argumentIndex > args.Length - 2)
|
|
return "";
|
|
|
|
return string.Join(" ", args, argumentIndex + 1, args.Length - argumentIndex - 1);
|
|
}
|
|
|
|
ProcessCommandResult ProcessCommand(ProcessCommandContext context)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(context.command))
|
|
return ProcessCommandResult.UnknownCommand;
|
|
|
|
string[] arguments = SplitCommandIntoArguments(context.command);
|
|
if (0 == arguments.Length)
|
|
return ProcessCommandResult.InvalidCommand;
|
|
|
|
if (!m_registeredCommands.TryGetValue(arguments[0], out CommandInfo commandInfo))
|
|
return ProcessCommandResult.UnknownCommand;
|
|
|
|
if (commandInfo.runOnlyOnServer && !NetStatus.IsServer)
|
|
return ProcessCommandResult.CanOnlyRunOnServer;
|
|
|
|
if (!context.hasServerPermissions && !commandInfo.allowToRunWithoutServerPermissions)
|
|
return ProcessCommandResult.NoPermissions;
|
|
|
|
return commandInfo.commandHandler(context);
|
|
}
|
|
|
|
public ProcessCommandResult ProcessCommandAsServer(string command)
|
|
{
|
|
return ProcessCommand(new ProcessCommandContext {command = command, hasServerPermissions = true});
|
|
}
|
|
|
|
public ProcessCommandResult ProcessCommandForPlayer(Player player, string command)
|
|
{
|
|
bool hasServerPermissions = player == Player.Local;
|
|
return ProcessCommand(new ProcessCommandContext
|
|
{
|
|
command = command,
|
|
hasServerPermissions = hasServerPermissions,
|
|
player = player,
|
|
});
|
|
}
|
|
|
|
ProcessCommandResult ProcessHelpCommand(ProcessCommandContext context)
|
|
{
|
|
string response = "List of available commands: " +
|
|
string.Join(", ", m_registeredCommands
|
|
.Where(pair => context.hasServerPermissions || pair.Value.allowToRunWithoutServerPermissions)
|
|
.Select(pair => pair.Key));
|
|
|
|
return new ProcessCommandResult {response = response};
|
|
}
|
|
|
|
public bool HasCommand(string command)
|
|
{
|
|
return m_registeredCommands.ContainsKey(command);
|
|
}
|
|
}
|
|
}
|