|
|
@ -1,6 +1,6 @@ |
|
|
|
/** |
|
|
|
/** |
|
|
|
* Command for displaying help information about registered Acedia's commands. |
|
|
|
* Command for displaying help information about registered Acedia's commands. |
|
|
|
* Copyright 2021-2022 Anton Tarasenko |
|
|
|
* Copyright 2021-2023 Anton Tarasenko |
|
|
|
*------------------------------------------------------------------------------ |
|
|
|
*------------------------------------------------------------------------------ |
|
|
|
* This file is part of Acedia. |
|
|
|
* This file is part of Acedia. |
|
|
|
* |
|
|
|
* |
|
|
@ -18,7 +18,8 @@ |
|
|
|
* along with Acedia. If not, see <https://www.gnu.org/licenses/>. |
|
|
|
* along with Acedia. If not, see <https://www.gnu.org/licenses/>. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
class ACommandHelp extends Command |
|
|
|
class ACommandHelp extends Command |
|
|
|
dependson(LoggerAPI); |
|
|
|
dependson(LoggerAPI) |
|
|
|
|
|
|
|
dependson(CommandAPI); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* # `ACommandHelp` |
|
|
|
* # `ACommandHelp` |
|
|
@ -72,6 +73,8 @@ class ACommandHelp extends Command |
|
|
|
// that uses sub-command names as keys and returns `ArrayList` of aliases. |
|
|
|
// that uses sub-command names as keys and returns `ArrayList` of aliases. |
|
|
|
var private HashTable commandToAliasesMap; |
|
|
|
var private HashTable commandToAliasesMap; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var private User callerUser; |
|
|
|
|
|
|
|
|
|
|
|
var public const int TSPACE, TCOMMAND_NAME_FALLBACK, TPLUS; |
|
|
|
var public const int TSPACE, TCOMMAND_NAME_FALLBACK, TPLUS; |
|
|
|
var public const int TOPEN_BRACKET, TCLOSE_BRACKET, TCOLON_SPACE; |
|
|
|
var public const int TOPEN_BRACKET, TCLOSE_BRACKET, TCOLON_SPACE; |
|
|
|
var public const int TKEY, TDOUBLE_KEY, TCOMMA_SPACE, TBOOLEAN, TINDENT; |
|
|
|
var public const int TKEY, TDOUBLE_KEY, TCOMMA_SPACE, TBOOLEAN, TINDENT; |
|
|
@ -79,7 +82,8 @@ var public const int TBOOLEAN_TRUE_FALSE, TBOOLEAN_ENABLE_DISABLE; |
|
|
|
var public const int TBOOLEAN_ON_OFF, TBOOLEAN_YES_NO; |
|
|
|
var public const int TBOOLEAN_ON_OFF, TBOOLEAN_YES_NO; |
|
|
|
var public const int TOPTIONS, TCMD_WITH_TARGET, TCMD_WITHOUT_TARGET; |
|
|
|
var public const int TOPTIONS, TCMD_WITH_TARGET, TCMD_WITHOUT_TARGET; |
|
|
|
var public const int TSEPARATOR, TLIST_REGIRESTED_CMDS, TEMPTY_GROUP; |
|
|
|
var public const int TSEPARATOR, TLIST_REGIRESTED_CMDS, TEMPTY_GROUP; |
|
|
|
var public const int TALIASES_FOR, TEMPTY, TDOT; |
|
|
|
var public const int TALIASES_FOR, TEMPTY, TDOT, TNO_COMMAND_BEGIN; |
|
|
|
|
|
|
|
var public const int TNO_COMMAND_END, TEMPTY_GROUP_BEGIN, TEMPTY_GROUP_END; |
|
|
|
|
|
|
|
|
|
|
|
protected function Constructor() |
|
|
|
protected function Constructor() |
|
|
|
{ |
|
|
|
{ |
|
|
@ -96,13 +100,13 @@ protected function Constructor() |
|
|
|
|
|
|
|
|
|
|
|
protected function Finalizer() |
|
|
|
protected function Finalizer() |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
super.Finalizer(); |
|
|
|
_.memory.Free(commandToAliasesMap); |
|
|
|
_.memory.Free(commandToAliasesMap); |
|
|
|
commandToAliasesMap = none; |
|
|
|
commandToAliasesMap = none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected function BuildData(CommandDataBuilder builder) |
|
|
|
protected function BuildData(CommandDataBuilder builder) |
|
|
|
{ |
|
|
|
{ |
|
|
|
builder.Name(P("help")); |
|
|
|
|
|
|
|
builder.Group(P("core")); |
|
|
|
builder.Group(P("core")); |
|
|
|
builder.Summary(P("Displays detailed information about available commands.")); |
|
|
|
builder.Summary(P("Displays detailed information about available commands.")); |
|
|
|
builder.OptionalParams(); |
|
|
|
builder.OptionalParams(); |
|
|
@ -120,11 +124,16 @@ protected function BuildData(CommandDataBuilder builder) |
|
|
|
builder.ParamTextList(P("groups")); |
|
|
|
builder.ParamTextList(P("groups")); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected function Executed(Command.CallData callData, EPlayer callerPlayer) |
|
|
|
protected function Executed( |
|
|
|
{ |
|
|
|
Command.CallData callData, |
|
|
|
|
|
|
|
EPlayer callerPlayer, |
|
|
|
|
|
|
|
CommandPermissions permissions |
|
|
|
|
|
|
|
) { |
|
|
|
|
|
|
|
local bool printedSomething; |
|
|
|
local HashTable parameters, options; |
|
|
|
local HashTable parameters, options; |
|
|
|
local ArrayList commandsToDisplay, commandGroupsToDisplay; |
|
|
|
local ArrayList commandsToDisplay, commandGroupsToDisplay; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
callerUser = callerPlayer.GetIdentity(); |
|
|
|
parameters = callData.parameters; |
|
|
|
parameters = callData.parameters; |
|
|
|
options = callData.options; |
|
|
|
options = callData.options; |
|
|
|
// Print command list if "--list" option was specified |
|
|
|
// Print command list if "--list" option was specified |
|
|
@ -135,6 +144,7 @@ protected function Executed(Command.CallData callData, EPlayer callerPlayer) |
|
|
|
commandGroupsToDisplay, |
|
|
|
commandGroupsToDisplay, |
|
|
|
options.HasKey(P("aliases"))); |
|
|
|
options.HasKey(P("aliases"))); |
|
|
|
_.memory.Free(commandGroupsToDisplay); |
|
|
|
_.memory.Free(commandGroupsToDisplay); |
|
|
|
|
|
|
|
printedSomething = true; |
|
|
|
} |
|
|
|
} |
|
|
|
// Help pages. |
|
|
|
// Help pages. |
|
|
|
// Only need to print them if: |
|
|
|
// Only need to print them if: |
|
|
@ -144,9 +154,11 @@ protected function Executed(Command.CallData callData, EPlayer callerPlayer) |
|
|
|
if (!options.HasKey(P("list")) || parameters.HasKey(P("commands"))) |
|
|
|
if (!options.HasKey(P("list")) || parameters.HasKey(P("commands"))) |
|
|
|
{ |
|
|
|
{ |
|
|
|
commandsToDisplay = parameters.GetArrayList(P("commands")); |
|
|
|
commandsToDisplay = parameters.GetArrayList(P("commands")); |
|
|
|
DisplayCommandHelpPages(commandsToDisplay); |
|
|
|
DisplayCommandHelpPages(commandsToDisplay, printedSomething); |
|
|
|
_.memory.Free(commandsToDisplay); |
|
|
|
_.memory.Free(commandsToDisplay); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
_.memory.Free(callerUser); |
|
|
|
|
|
|
|
callerUser = none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// If instance of the `Aliases_Feature` is passed as an argument (allowing this |
|
|
|
// If instance of the `Aliases_Feature` is passed as an argument (allowing this |
|
|
@ -249,15 +261,9 @@ private final function DisplayCommandLists( |
|
|
|
{ |
|
|
|
{ |
|
|
|
local int i; |
|
|
|
local int i; |
|
|
|
local array<Text> commandNames, groupsNames; |
|
|
|
local array<Text> commandNames, groupsNames; |
|
|
|
local Commands_Feature commandsFeature; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
commandsFeature = |
|
|
|
|
|
|
|
Commands_Feature(class'Commands_Feature'.static.GetEnabledInstance()); |
|
|
|
|
|
|
|
if (commandsFeature == none) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (commandGroupsToDisplay == none) { |
|
|
|
if (commandGroupsToDisplay == none) { |
|
|
|
groupsNames = commandsFeature.GetGroupsNames(); |
|
|
|
groupsNames = _.commands.GetGroupsNames(); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else |
|
|
|
{ |
|
|
|
{ |
|
|
@ -271,7 +277,7 @@ private final function DisplayCommandLists( |
|
|
|
if (groupsNames[i] == none) { |
|
|
|
if (groupsNames[i] == none) { |
|
|
|
continue; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
commandNames = commandsFeature.GetCommandNamesInGroup(groupsNames[i]); |
|
|
|
commandNames = _.commands.GetCommandNamesInGroup(groupsNames[i]); |
|
|
|
if (commandNames.length > 0) |
|
|
|
if (commandNames.length > 0) |
|
|
|
{ |
|
|
|
{ |
|
|
|
callerConsole.UseColorOnce(_.color.TextSubHeader); |
|
|
|
callerConsole.UseColorOnce(_.color.TextSubHeader); |
|
|
@ -282,41 +288,45 @@ private final function DisplayCommandLists( |
|
|
|
callerConsole.WriteLine(groupsNames[i]); |
|
|
|
callerConsole.WriteLine(groupsNames[i]); |
|
|
|
} |
|
|
|
} |
|
|
|
PrintCommandsNamesArray( |
|
|
|
PrintCommandsNamesArray( |
|
|
|
commandsFeature, |
|
|
|
|
|
|
|
commandNames, |
|
|
|
commandNames, |
|
|
|
displayAliases); |
|
|
|
displayAliases); |
|
|
|
_.memory.FreeMany(commandNames); |
|
|
|
_.memory.FreeMany(commandNames); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
callerConsole.UseColor(_.color.TextFailure); |
|
|
|
|
|
|
|
callerConsole.Write(T(TEMPTY_GROUP_BEGIN)); |
|
|
|
|
|
|
|
callerConsole.Write(groupsNames[i]); |
|
|
|
|
|
|
|
callerConsole.WriteLine(T(TEMPTY_GROUP_END)); |
|
|
|
|
|
|
|
callerConsole.ResetColor(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
_.memory.FreeMany(groupsNames); |
|
|
|
_.memory.FreeMany(groupsNames); |
|
|
|
commandsFeature.FreeSelf(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private final function PrintCommandsNamesArray( |
|
|
|
private final function PrintCommandsNamesArray( |
|
|
|
Commands_Feature commandsFeature, |
|
|
|
|
|
|
|
array<Text> commandsNamesArray, |
|
|
|
array<Text> commandsNamesArray, |
|
|
|
bool displayAliases) |
|
|
|
bool displayAliases |
|
|
|
{ |
|
|
|
) { |
|
|
|
local int i; |
|
|
|
local int i; |
|
|
|
local Command nextCommand; |
|
|
|
|
|
|
|
local Command.Data nextData; |
|
|
|
local Command.Data nextData; |
|
|
|
|
|
|
|
local CommandAPI.CommandConfigInfo nextCommandPair; |
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < commandsNamesArray.length; i += 1) |
|
|
|
for (i = 0; i < commandsNamesArray.length; i += 1) |
|
|
|
{ |
|
|
|
{ |
|
|
|
nextCommand = commandsFeature.GetCommand(commandsNamesArray[i]); |
|
|
|
nextCommandPair = _.commands.ResolveCommandForUser( |
|
|
|
if (nextCommand == none) { |
|
|
|
commandsNamesArray[i], |
|
|
|
continue; |
|
|
|
callerUser); |
|
|
|
} |
|
|
|
if (nextCommandPair.instance != none && !nextCommandPair.usageForbidden) { |
|
|
|
nextData = nextCommand.BorrowData(); |
|
|
|
nextData = nextCommandPair.instance.BorrowData(); |
|
|
|
callerConsole |
|
|
|
callerConsole |
|
|
|
.UseColorOnce(_.color.textEmphasis) |
|
|
|
.UseColorOnce(_.color.textEmphasis) |
|
|
|
.Write(nextData.name) |
|
|
|
.Write(commandsNamesArray[i]) |
|
|
|
.Write(T(TCOLON_SPACE)) |
|
|
|
.Write(T(TCOLON_SPACE)) |
|
|
|
.WriteLine(nextData.summary); |
|
|
|
.WriteLine(nextData.summary); |
|
|
|
if (displayAliases) { |
|
|
|
if (displayAliases) { |
|
|
|
PrintCommandAliases(nextData.name); |
|
|
|
PrintCommandAliases(commandsNamesArray[i]); |
|
|
|
} |
|
|
|
} |
|
|
|
_.memory.Free(nextCommand); |
|
|
|
} |
|
|
|
|
|
|
|
_.memory.Free(nextCommandPair.instance); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -397,46 +407,47 @@ private final function PrintAliasesArray( |
|
|
|
callerConsole.WriteBlock(); |
|
|
|
callerConsole.WriteBlock(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private final function DisplayCommandHelpPages(ArrayList commandList) |
|
|
|
private final function DisplayCommandHelpPages(ArrayList commandList, bool printedSomething) { |
|
|
|
{ |
|
|
|
|
|
|
|
local int i; |
|
|
|
local int i; |
|
|
|
local bool printedSomething; |
|
|
|
|
|
|
|
local Text nextUserProvidedName; |
|
|
|
local Text nextUserProvidedName; |
|
|
|
local MutableText referredSubcommand; |
|
|
|
local MutableText referredSubcommand; |
|
|
|
local Command nextCommand; |
|
|
|
local CommandAPI.CommandConfigInfo nextPair; |
|
|
|
|
|
|
|
|
|
|
|
// If arguments were empty - at least display our own help page |
|
|
|
// If arguments were empty - at least display our own help page |
|
|
|
if (commandList == none) |
|
|
|
if (commandList == none) { |
|
|
|
{ |
|
|
|
nextPair.instance = self; |
|
|
|
PrintHelpPageFor(BorrowData().name, none, BorrowData()); |
|
|
|
PrintHelpPageFor(usedName, none, nextPair); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
// Otherwise - print help for specified commands |
|
|
|
// Otherwise - print help for specified commands |
|
|
|
for (i = 0; i < commandList.GetLength(); i += 1) |
|
|
|
for (i = 0; i < commandList.GetLength(); i += 1) { |
|
|
|
{ |
|
|
|
|
|
|
|
nextUserProvidedName = commandList.GetText(i); |
|
|
|
nextUserProvidedName = commandList.GetText(i); |
|
|
|
nextCommand = GetCommandFromUserProvidedName( |
|
|
|
nextPair = GetCommandFromUserProvidedName( |
|
|
|
nextUserProvidedName, |
|
|
|
nextUserProvidedName, |
|
|
|
referredSubcommand); |
|
|
|
/*out*/ referredSubcommand); |
|
|
|
if (nextCommand != none) |
|
|
|
if (nextPair.instance != none && !nextPair.usageForbidden) { |
|
|
|
{ |
|
|
|
|
|
|
|
if (printedSomething) { |
|
|
|
if (printedSomething) { |
|
|
|
callerConsole.WriteLine(T(TSEPARATOR)); |
|
|
|
callerConsole.WriteLine(T(TSEPARATOR)); |
|
|
|
} |
|
|
|
} |
|
|
|
PrintHelpPageFor( |
|
|
|
PrintHelpPageFor( |
|
|
|
nextUserProvidedName, |
|
|
|
nextUserProvidedName, |
|
|
|
referredSubcommand, |
|
|
|
referredSubcommand, |
|
|
|
nextCommand.BorrowData()); |
|
|
|
nextPair); |
|
|
|
printedSomething = true; |
|
|
|
printedSomething = true; |
|
|
|
} |
|
|
|
} else if (nextPair.instance != none) { |
|
|
|
_.memory.Free(nextCommand); |
|
|
|
callerConsole.UseColor(_.color.TextFailure); |
|
|
|
|
|
|
|
callerConsole.Write(T(TNO_COMMAND_BEGIN)); |
|
|
|
|
|
|
|
callerConsole.Write(nextUserProvidedName); |
|
|
|
|
|
|
|
callerConsole.WriteLine(T(TNO_COMMAND_END)); |
|
|
|
|
|
|
|
callerConsole.ResetColor(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
_.memory.Free(nextPair.instance); |
|
|
|
_.memory.Free(nextUserProvidedName); |
|
|
|
_.memory.Free(nextUserProvidedName); |
|
|
|
_.memory.Free(referredSubcommand); |
|
|
|
_.memory.Free(referredSubcommand); |
|
|
|
// `referredSubcommand` is passed as an `out` parameter on |
|
|
|
// `referredSubcommand` is passed as an `out` parameter on |
|
|
|
// every iteration, so we need to prevent the possibility of its value |
|
|
|
// every iteration, so we need to prevent the possibility of its value |
|
|
|
// being used. |
|
|
|
// being used. |
|
|
|
// NOTE: `nextCommand` and `nextUserProvidedName` are just |
|
|
|
// NOTE: `nextCommand` and `nextUserProvidedName` are just rewritten. |
|
|
|
// rewritten. |
|
|
|
|
|
|
|
referredSubcommand = none; |
|
|
|
referredSubcommand = none; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -446,56 +457,49 @@ private final function DisplayCommandHelpPages(ArrayList commandList) |
|
|
|
// is passed) and is used to return name of the subcommand for returned |
|
|
|
// is passed) and is used to return name of the subcommand for returned |
|
|
|
// `Command` that is specified by `nextUserProvidedName` (only relevant for |
|
|
|
// `Command` that is specified by `nextUserProvidedName` (only relevant for |
|
|
|
// aliases that refer to a particular subcommand). |
|
|
|
// aliases that refer to a particular subcommand). |
|
|
|
private final function Command GetCommandFromUserProvidedName( |
|
|
|
private final function CommandAPI.CommandConfigInfo GetCommandFromUserProvidedName( |
|
|
|
BaseText nextUserProvidedName, |
|
|
|
BaseText nextUserProvidedName, |
|
|
|
out MutableText referredSubcommand) |
|
|
|
out MutableText referredSubcommand) |
|
|
|
{ |
|
|
|
{ |
|
|
|
local Command result; |
|
|
|
local CommandAPI.CommandConfigInfo result; |
|
|
|
local Text commandAliasValue; |
|
|
|
local Text commandAliasValue; |
|
|
|
local Commands_Feature commandsFeature; |
|
|
|
|
|
|
|
local MutableText parsedCommandName; |
|
|
|
local MutableText parsedCommandName; |
|
|
|
|
|
|
|
|
|
|
|
// Clear `out` parameter no matter what |
|
|
|
// Clear `out` parameter no matter what |
|
|
|
if (referredSubcommand != none) |
|
|
|
if (referredSubcommand != none) { |
|
|
|
{ |
|
|
|
|
|
|
|
referredSubcommand.FreeSelf(); |
|
|
|
referredSubcommand.FreeSelf(); |
|
|
|
referredSubcommand = none; |
|
|
|
referredSubcommand = none; |
|
|
|
} |
|
|
|
} |
|
|
|
// Try accessing (check availability of) `Commands_Feature` |
|
|
|
|
|
|
|
commandsFeature = |
|
|
|
|
|
|
|
Commands_Feature(class'Commands_Feature'.static.GetEnabledInstance()); |
|
|
|
|
|
|
|
if (commandsFeature == none) { |
|
|
|
|
|
|
|
return none; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// Try getting command using `nextUserProvidedName` as a literal name |
|
|
|
// Try getting command using `nextUserProvidedName` as a literal name |
|
|
|
result = commandsFeature.GetCommand(nextUserProvidedName); |
|
|
|
result = _.commands.ResolveCommandForUser(nextUserProvidedName, callerUser); |
|
|
|
if (result != none) |
|
|
|
if (result.instance != none) { |
|
|
|
{ |
|
|
|
|
|
|
|
commandsFeature.FreeSelf(); |
|
|
|
|
|
|
|
return result; |
|
|
|
return result; |
|
|
|
} |
|
|
|
} |
|
|
|
// On failure - try resolving it as an alias |
|
|
|
// On failure - try resolving it as an alias |
|
|
|
commandAliasValue = _.alias.ResolveCommand(nextUserProvidedName); |
|
|
|
commandAliasValue = _.alias.ResolveCommand(nextUserProvidedName); |
|
|
|
ParseCommandNames(commandAliasValue, parsedCommandName, referredSubcommand); |
|
|
|
ParseCommandNames(commandAliasValue, parsedCommandName, referredSubcommand); |
|
|
|
result = commandsFeature.GetCommand(parsedCommandName); |
|
|
|
result = _.commands.ResolveCommandForUser(parsedCommandName, callerUser); |
|
|
|
|
|
|
|
if ( result.instance == none |
|
|
|
|
|
|
|
|| !result.instance.IsSubCommandAllowed(referredSubcommand, result.config)) { |
|
|
|
|
|
|
|
_.memory.Free(result.instance); |
|
|
|
|
|
|
|
return result; |
|
|
|
|
|
|
|
} |
|
|
|
// Empty subcommand name from the alias is essentially no subcommand name |
|
|
|
// Empty subcommand name from the alias is essentially no subcommand name |
|
|
|
if (referredSubcommand != none && referredSubcommand.IsEmpty()) |
|
|
|
if (referredSubcommand != none && referredSubcommand.IsEmpty()) { |
|
|
|
{ |
|
|
|
|
|
|
|
referredSubcommand.FreeSelf(); |
|
|
|
referredSubcommand.FreeSelf(); |
|
|
|
referredSubcommand = none; |
|
|
|
referredSubcommand = none; |
|
|
|
} |
|
|
|
} |
|
|
|
_.memory.Free(commandAliasValue); |
|
|
|
_.memory.Free2(commandAliasValue, parsedCommandName); |
|
|
|
_.memory.Free(parsedCommandName); |
|
|
|
|
|
|
|
commandsFeature.FreeSelf(); |
|
|
|
|
|
|
|
return result; |
|
|
|
return result; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private final function PrintHelpPageFor( |
|
|
|
private final function PrintHelpPageFor( |
|
|
|
BaseText commandAlias, |
|
|
|
BaseText commandAlias, |
|
|
|
BaseText referredSubcommand, |
|
|
|
BaseText referredSubcommand, |
|
|
|
Command.Data commandData) |
|
|
|
CommandAPI.CommandConfigInfo commandPair |
|
|
|
{ |
|
|
|
) { |
|
|
|
local Text commandNameLowerCase, commandNameUpperCase; |
|
|
|
local Text commandNameLowerCase, commandNameUpperCase; |
|
|
|
|
|
|
|
|
|
|
|
// Get capitalized command name |
|
|
|
// Get capitalized command name |
|
|
|
commandNameUpperCase = commandAlias.UpperCopy(); |
|
|
|
commandNameUpperCase = commandAlias.UpperCopy(); |
|
|
|
// Print header: name + basic info |
|
|
|
// Print header: name + basic info |
|
|
@ -503,7 +507,7 @@ private final function PrintHelpPageFor( |
|
|
|
.Write(commandNameUpperCase) |
|
|
|
.Write(commandNameUpperCase) |
|
|
|
.UseColor(_.color.textDefault); |
|
|
|
.UseColor(_.color.textDefault); |
|
|
|
commandNameUpperCase.FreeSelf(); |
|
|
|
commandNameUpperCase.FreeSelf(); |
|
|
|
if (commandData.requiresTarget) { |
|
|
|
if (commandPair.instance.BorrowData().requiresTarget) { |
|
|
|
callerConsole.WriteLine(T(TCMD_WITH_TARGET)); |
|
|
|
callerConsole.WriteLine(T(TCMD_WITH_TARGET)); |
|
|
|
} |
|
|
|
} |
|
|
|
else { |
|
|
|
else { |
|
|
@ -511,31 +515,27 @@ private final function PrintHelpPageFor( |
|
|
|
} |
|
|
|
} |
|
|
|
// Print commands and options |
|
|
|
// Print commands and options |
|
|
|
commandNameLowerCase = commandAlias.LowerCopy(); |
|
|
|
commandNameLowerCase = commandAlias.LowerCopy(); |
|
|
|
PrintCommands(commandData, commandNameLowerCase, referredSubcommand); |
|
|
|
PrintCommands(commandPair, commandNameLowerCase, referredSubcommand); |
|
|
|
commandNameLowerCase.FreeSelf(); |
|
|
|
commandNameLowerCase.FreeSelf(); |
|
|
|
PrintOptions(commandData); |
|
|
|
PrintOptions(commandPair.instance.BorrowData()); |
|
|
|
// Clean up |
|
|
|
// Clean up |
|
|
|
callerConsole.ResetColor().Flush(); |
|
|
|
callerConsole.ResetColor().Flush(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private final function PrintCommands( |
|
|
|
private final function PrintCommands( |
|
|
|
Command.Data data, |
|
|
|
CommandAPI.CommandConfigInfo commandPair, |
|
|
|
BaseText commandName, |
|
|
|
BaseText commandName, |
|
|
|
BaseText referredSubcommand) |
|
|
|
BaseText referredSubcommand |
|
|
|
{ |
|
|
|
) { |
|
|
|
local int i; |
|
|
|
local int i; |
|
|
|
local array<SubCommand> subCommands; |
|
|
|
local array<Command.SubCommand> subCommands; |
|
|
|
|
|
|
|
|
|
|
|
subCommands = data.subCommands; |
|
|
|
subCommands = commandPair.instance.BorrowData().subCommands; |
|
|
|
for (i = 0; i < subCommands.length; i += 1) |
|
|
|
for (i = 0; i < subCommands.length; i += 1) { |
|
|
|
{ |
|
|
|
if (referredSubcommand == none || referredSubcommand.Compare(subCommands[i].name)) { |
|
|
|
if ( referredSubcommand == none |
|
|
|
if (commandPair.instance.IsSubCommandAllowed(subCommands[i].name, commandPair.config)) { |
|
|
|
|| referredSubcommand.Compare(subCommands[i].name)) |
|
|
|
PrintSubCommand(subCommands[i], commandName, referredSubcommand != none); |
|
|
|
{ |
|
|
|
} |
|
|
|
PrintSubCommand( |
|
|
|
|
|
|
|
subCommands[i], |
|
|
|
|
|
|
|
commandName, |
|
|
|
|
|
|
|
referredSubcommand != none); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -719,4 +719,13 @@ defaultproperties |
|
|
|
stringConstants(21) = "" |
|
|
|
stringConstants(21) = "" |
|
|
|
TDOT = 22 |
|
|
|
TDOT = 22 |
|
|
|
stringConstants(22) = "." |
|
|
|
stringConstants(22) = "." |
|
|
|
|
|
|
|
TNO_COMMAND_BEGIN = 23 |
|
|
|
|
|
|
|
stringConstants(23) = "Command `" |
|
|
|
|
|
|
|
TNO_COMMAND_END = 24 |
|
|
|
|
|
|
|
stringConstants(24) = "` not found!" |
|
|
|
|
|
|
|
TEMPTY_GROUP_BEGIN = 25 |
|
|
|
|
|
|
|
stringConstants(25) = "No commands in group \"" |
|
|
|
|
|
|
|
TEMPTY_GROUP_END = 26 |
|
|
|
|
|
|
|
stringConstants(26) = "\"!" |
|
|
|
|
|
|
|
preferredName = "help" |
|
|
|
} |
|
|
|
} |