mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Move parseCommandLine method to command class
This commit is contained in:
parent
381b8ea7d1
commit
e68a51dcff
2 changed files with 61 additions and 59 deletions
|
|
@ -90,5 +90,65 @@ namespace MinecraftClient
|
|||
return args;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Extract arguments from a given string. Allows quotines and escaping them.
|
||||
/// Similar to command line arguments in regular terminals.
|
||||
/// </summary>
|
||||
/// <param name="cmdLine">Provided arguments as a string</param>
|
||||
/// <returns>All extracted arguments in a string list</returns>
|
||||
public static List<string> parseCommandLine(string cmdLine)
|
||||
{
|
||||
var args = new List<string>();
|
||||
if (string.IsNullOrWhiteSpace(cmdLine)) return args;
|
||||
|
||||
var currentArg = new StringBuilder();
|
||||
bool inQuotedArg = false;
|
||||
|
||||
for (int i = 0; i < cmdLine.Length; i++)
|
||||
{
|
||||
if (cmdLine[i] == '"' && cmdLine[i - 1] != '\\')
|
||||
{
|
||||
if (inQuotedArg)
|
||||
{
|
||||
args.Add(currentArg.ToString());
|
||||
currentArg = new StringBuilder();
|
||||
inQuotedArg = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
inQuotedArg = true;
|
||||
}
|
||||
}
|
||||
else if (cmdLine[i] == ' ')
|
||||
{
|
||||
if (inQuotedArg)
|
||||
{
|
||||
currentArg.Append(cmdLine[i]);
|
||||
}
|
||||
else if (currentArg.Length > 0)
|
||||
{
|
||||
args.Add(currentArg.ToString());
|
||||
currentArg = new StringBuilder();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (cmdLine[i] == '\\' && cmdLine[i + 1] == '\"')
|
||||
{
|
||||
currentArg.Append("\"");
|
||||
i += 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
currentArg.Append(cmdLine[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (currentArg.Length > 0) args.Add(currentArg.ToString());
|
||||
|
||||
return args;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue