Added support for on-the-fly textview contents updates Added iterative view removal to ConsoleController Added dumy layouts to Common Added support for account removal Fixed command management (now supports leading, padding and trailing spaces) Various smaller changes
94 lines
2.9 KiB
C#
94 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Server
|
|
{
|
|
public sealed class CommandHandler
|
|
{
|
|
private readonly List<Tuple<Command, string>> commands = new List<Tuple<Command, string>>();
|
|
private int leftLen = 0;
|
|
private readonly int minPad;
|
|
private readonly string prepend, delimiter, postpad, trail;
|
|
|
|
|
|
public CommandHandler(int minPad = 1, string prepend = "", string delimiter = "", string postpad = "", string trail = "")
|
|
{
|
|
this.prepend = prepend;
|
|
this.delimiter = delimiter;
|
|
this.postpad = postpad;
|
|
this.trail = trail;
|
|
this.minPad = Math.Abs(minPad);
|
|
}
|
|
|
|
public CommandHandler Append(Command c, string description)
|
|
{
|
|
commands.Add(new Tuple<Command, string>(c, description));
|
|
leftLen = Math.Max(c.CommandString.Length + minPad, leftLen);
|
|
return this;
|
|
}
|
|
|
|
public bool HandleCommand(string cmd)
|
|
{
|
|
|
|
// Find leading and trailing spaces
|
|
int pre = 0, post = cmd.Length;
|
|
bool preS = false, postS = false;
|
|
for(int i = 0; i<cmd.Length; ++i)
|
|
{
|
|
if(cmd[i]!=' ')
|
|
{
|
|
pre = i;
|
|
if (postS) break;
|
|
else preS = true;
|
|
}
|
|
if(cmd[cmd.Length - 1 - i]!=' ')
|
|
{
|
|
post = cmd.Length - i;
|
|
if (preS) break;
|
|
else postS = true;
|
|
}
|
|
}
|
|
|
|
// The entire command is just blank spaces
|
|
if (post < 2 || pre>post) return false;
|
|
|
|
// Trim leading and trailing spaces
|
|
cmd = cmd.Substring(pre, post - pre);
|
|
|
|
foreach (var command in commands)
|
|
if (command.Item1.Invoke(cmd))
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
public string GetString()
|
|
{
|
|
StringBuilder builder = new StringBuilder();
|
|
string cache;
|
|
foreach (var command in commands)
|
|
builder
|
|
.Append(prepend)
|
|
.Append(cache = command.Item1.CommandString)
|
|
.Append(delimiter)
|
|
.Append(Pad(cache, leftLen))
|
|
.Append(postpad)
|
|
.Append(command.Item2)
|
|
.Append(trail)
|
|
.Append('\n');
|
|
if(commands.Count > 0) builder.Length -= 1;
|
|
return builder.ToString();
|
|
}
|
|
|
|
private static string Pad(string msg, int length)
|
|
{
|
|
if (msg.Length >= length) return "";
|
|
char[] c = new char[length - msg.Length];
|
|
for (int i = 0; i < c.Length; ++i) c[i] = ' ';
|
|
return new string(c);
|
|
}
|
|
}
|
|
}
|