B C D E G I M O R S V 

B

BaseCommand - Interface in org.lazywizard.console
The basic interface all console commands must implement.
BaseCommand.CommandContext - Enum in org.lazywizard.console
Represents what screen the player was on when they used the command.
BaseCommand.CommandResult - Enum in org.lazywizard.console
Represents the success status of a command.

C

CommandStore - Class in org.lazywizard.console
The console mod's internal command storage.
CommandStore.StoredCommand - Class in org.lazywizard.console
Contains detailed information on a loaded command.
CommonStrings - Class in org.lazywizard.console
Contains basic mod constants, common error messages, and the IDs of sector persistent data that core commands use.
Console - Class in org.lazywizard.console
The main class of the console mod.
ConsoleSettings - Class in org.lazywizard.console
Contains the console settings loaded from the JSON file.
ConsoleSettings.KeyStroke - Class in org.lazywizard.console
Represents the keys that must be pressed to summon the console.
CSV_PATH - Static variable in class org.lazywizard.console.CommonStrings
The path to commands.csv, used for loading commands.

D

DATA_HOME_ID - Static variable in class org.lazywizard.console.CommonStrings
The persistent data ID of the SectorEntityToken used by the Home command.
DATA_PREFIX - Static variable in class org.lazywizard.console.CommonStrings
A recommended prefix for keys in sector persistent data to avoid collision with any existing keys.
DATA_STORAGE_ID - Static variable in class org.lazywizard.console.CommonStrings
The persistent data ID of the CargoAPI used by the Storage command.

E

ERROR_CAMPAIGN_ONLY - Static variable in class org.lazywizard.console.CommonStrings
The error message displayed by core commands when a campaign-only command is used elsewhere.
ERROR_COMBAT_ONLY - Static variable in class org.lazywizard.console.CommonStrings
The error message displayed by core commands when a combat-only command is used elsewhere.
ERROR_MISSION_ONLY - Static variable in class org.lazywizard.console.CommonStrings
The error message displayed by core commands when a mission-only command is used elsewhere.

G

getCommandClass() - Method in class org.lazywizard.console.CommandStore.StoredCommand
Returns the class object for this command's implementation.
getCommandSeparator() - Method in class org.lazywizard.console.ConsoleSettings
Returns what character sequence the player must separate multiple commands with.
getCommandsWithTag(String) - Static method in class org.lazywizard.console.CommandStore
Returns all commands with a specific tag.
getConsoleSummonKey() - Method in class org.lazywizard.console.ConsoleSettings
Returns the key (and any modifier keys) that must be pressed to summon the console.
getHelp() - Method in class org.lazywizard.console.CommandStore.StoredCommand
Returns the detailed usage instructions for this command.
getKey() - Method in class org.lazywizard.console.ConsoleSettings.KeyStroke
Returns the key that must be pressed to summon the console.
getKnownTags() - Static method in class org.lazywizard.console.CommandStore
Returns all command tags that the mod is currently aware of.
getLoadedCommands() - Static method in class org.lazywizard.console.CommandStore
Returns all commands currently loaded by the mod.
getMaxOutputLineLength() - Method in class org.lazywizard.console.ConsoleSettings
Returns how many characters a line of output can reach before it is wrapped.
getName() - Method in class org.lazywizard.console.CommandStore.StoredCommand
Returns the name of this command (what the player would enter to use it).
getOutputColor() - Method in class org.lazywizard.console.ConsoleSettings
Returns the Color of the console's output.
getSettings() - Static method in class org.lazywizard.console.Console
 
getShouldShowEnteredCommands() - Method in class org.lazywizard.console.ConsoleSettings
Returns whether each valid individual command should be displayed before being run.
getSoundForResult(BaseCommand.CommandResult) - Method in class org.lazywizard.console.ConsoleSettings
Returns what sound will be played when a command returns a specific result.
getSource() - Method in class org.lazywizard.console.CommandStore.StoredCommand
Returns the complete file path of the CSV this command was loaded from (not the relative path).
getSyntax() - Method in class org.lazywizard.console.CommandStore.StoredCommand
Returns the syntax for this command.
getTags() - Method in class org.lazywizard.console.CommandStore.StoredCommand
Returns all tags associated with this command.

I

INPUT_QUERY - Static variable in class org.lazywizard.console.CommonStrings
The message the console shows when it's first summoned.

M

MOD_ID - Static variable in class org.lazywizard.console.CommonStrings
The ID of this mod as defined in mod_info.json, used for loading commands.

O

org.lazywizard.console - package org.lazywizard.console
The core console classes.

R

reloadCommands() - Static method in class org.lazywizard.console.CommandStore
Forces the console to clear its stored commands and reload them from the CSV.
reloadSettings() - Static method in class org.lazywizard.console.Console
Forces the console to reload its settings from the settings file.
requiresAlt() - Method in class org.lazywizard.console.ConsoleSettings.KeyStroke
Returns whether alt must be held down to summon the console.
requiresControl() - Method in class org.lazywizard.console.ConsoleSettings.KeyStroke
Returns whether control must be held down to summon the console.
requiresShift() - Method in class org.lazywizard.console.ConsoleSettings.KeyStroke
Returns whether shift must be held down to summon the console.
retrieveCommand(String) - Static method in class org.lazywizard.console.CommandStore
Retrieves the raw data for a specific command.
runCommand(String, BaseCommand.CommandContext) - Method in interface org.lazywizard.console.BaseCommand
Called when the player enters your command.

S

SETTINGS_PATH - Static variable in class org.lazywizard.console.CommonStrings
The path to console_settings.csv.
showException(String, Throwable) - Static method in class org.lazywizard.console.Console
Displays the stack trace of a Throwable.
showMessage(String, Level) - Static method in class org.lazywizard.console.Console
Displays a message to the user.
showMessage(String) - Static method in class org.lazywizard.console.Console
Displays a message to the user.

V

valueOf(String) - Static method in enum org.lazywizard.console.BaseCommand.CommandContext
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.lazywizard.console.BaseCommand.CommandResult
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.lazywizard.console.BaseCommand.CommandContext
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.lazywizard.console.BaseCommand.CommandResult
Returns an array containing the constants of this enum type, in the order they are declared.
B C D E G I M O R S V