Ark Server API (ASA) - Wiki
|
#include <IConsoleManager.h>
Public Member Functions | |
virtual | ~IConsoleCommandExecutor ()=default |
virtual FName | GetName () const =0 |
virtual FText | GetDisplayName () const =0 |
virtual FText | GetDescription () const =0 |
virtual FText | GetHintText () const =0 |
virtual void | GetAutoCompleteSuggestions (const TCHAR *Input, TArray< FString > &Out)=0 |
virtual void | GetExecHistory (TArray< FString > &Out)=0 |
virtual bool | Exec (const TCHAR *Input)=0 |
virtual bool | AllowHotKeyClose () const =0 |
virtual bool | AllowMultiLine () const =0 |
virtual struct FInputChord | GetHotKey () const =0 |
virtual struct FInputChord | GetIterateExecutorHotKey () const =0 |
Static Public Member Functions | |
static FName | ModularFeatureName () |
Handles executing console commands
Definition at line 625 of file IConsoleManager.h.
|
virtualdefault |
True if we allow the console to be closed using the "open console" hot-key.
True if we allow the console to create multi-line commands.
Execute the given command using this executor.
|
pure virtual |
Get the list of auto-complete suggestions for the given command.
Get the description of this executor.
Get the display name of this executor.
Get the list of commands that this executor has recently processed.
Get the hint text of this executor.
|
pure virtual |
Returns the hotkey for this executor
|
pure virtual |
Returns the hotkey to switch to the next executor. This is usually the same hotkey as GetHotKey but with a modifier, such as "`" turning into "Ctrl + `".
Get the name of this executor.
Get the name identifying this modular feature set.
Definition at line 633 of file IConsoleManager.h.