Skip navigation links
A B C D E F G I K M O P R S T U 

A

advance(amount, events) - Method in class org.lazywizard.console.cheatmanager.CheatPlugin
Called once per frame while the command is active, before advance is called on applicable ships.
advance(ship, amount) - Method in class org.lazywizard.console.cheatmanager.CheatPlugin
Called once per applicable ship per frame while the command is active.
advance(amount, events) - Method in class org.lazywizard.console.cheatmanager.CombatCheatManager
 
advance(amount) - Method in class org.lazywizard.console.ShowSettings.SettingsDialog
 

B

backFromEngagement(battleResult) - Method in class org.lazywizard.console.ShowSettings.SettingsDialog
 
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
bestMatch(toSearch) - Static method in class org.lazywizard.console.CommandUtils
 

C

CheatManagerKt - Class in org.lazywizard.console.cheatmanager
 
CheatPlugin - Class in org.lazywizard.console.cheatmanager
 
CheatPlugin() - Constructor for class org.lazywizard.console.cheatmanager.CheatPlugin
 
CheatTarget - Enum in org.lazywizard.console.cheatmanager
 
clear() - Static method in class org.lazywizard.console.ConsoleOverlay
 
CombatCheatManager - Class in org.lazywizard.console.cheatmanager
 
CombatCheatManager() - Constructor for class org.lazywizard.console.cheatmanager.CombatCheatManager
 
CombatCheatManager.PluginManager - Class in org.lazywizard.console.cheatmanager
 
CommandListener - Interface in org.lazywizard.console
Provides an interface to listen for command execution, with the option to intercept the command and execute your own code instead.
CommandStore - Class in org.lazywizard.console
The console mod's internal command storage. You can retrieve detailed information on the loaded commands using this class.
CommandStore.StoredCommand - Class in org.lazywizard.console
Contains detailed information on a loaded command.
CommandUtils - Class in org.lazywizard.console
 
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. Most of its methods aren't publicly accessible, so this is mainly used to display messages to the player.
ConsoleOverlay - Class in org.lazywizard.console
 
ConsoleSettings - Class in org.lazywizard.console
 
ConsoleSettings.Keystroke - Class in org.lazywizard.console
 

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 SectorEntityToken used by the Storage command.
disableCheat(id) - Static method in class org.lazywizard.console.cheatmanager.CombatCheatManager
 
disableCheat(id) - Method in class org.lazywizard.console.cheatmanager.CombatCheatManager.PluginManager
 

E

enableCheat(id, statusDesc, plugin, appliesTo) - Static method in class org.lazywizard.console.cheatmanager.CombatCheatManager
 
enableCheat(id, statusDesc, plugin, appliesTo) - Method in class org.lazywizard.console.cheatmanager.CombatCheatManager.PluginManager
 
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_MARKET_ONLY - Static variable in class org.lazywizard.console.CommonStrings
The error message displayed by core commands when a market-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.
ERROR_SIMULATION_ONLY - Static variable in class org.lazywizard.console.CommonStrings
The error message displayed by core commands when a simulation-only command is used elsewhere.
execute(command, args, context) - Method in interface org.lazywizard.console.CommandListener
Called when your interface CommandListener declares that it wants to take over execution of a command.

F

findBestFactionMatch(name) - Static method in class org.lazywizard.console.CommandUtils
 
findBestIndustryMatch(name) - Static method in class org.lazywizard.console.CommandUtils
 
findBestLocationMatch(name) - Static method in class org.lazywizard.console.CommandUtils
 
findBestMarketConditionMatch(name) - Static method in class org.lazywizard.console.CommandUtils
 
findBestMarketMatch(name) - Static method in class org.lazywizard.console.CommandUtils
 
findBestOfficerMatch(name, fleet) - Static method in class org.lazywizard.console.CommandUtils
 
findBestStringMatch(id, toSearch) - Static method in class org.lazywizard.console.CommandUtils
 
findBestStringMatch(id, sources) - Static method in class org.lazywizard.console.CommandUtils
 
findBestStringMatchWithSimularity(id, toSearch) - Static method in class org.lazywizard.console.CommandUtils
 
findBestSystemMatch(name) - Static method in class org.lazywizard.console.CommandUtils
 
findBestTokenMatch(name, toSearch) - Static method in class org.lazywizard.console.CommandUtils
 
findTokenInLocation(toFind, location) - Static method in class org.lazywizard.console.CommandUtils
 
format(toFormat) - Static method in class org.lazywizard.console.CommandUtils
 
format(toFormat) - Static method in class org.lazywizard.console.CommandUtils
 

G

getAliases() - Static method in class org.lazywizard.console.CommandStore
Returns all aliases currently registered by the mod.
getAlt() - Method in class org.lazywizard.console.ConsoleSettings.Keystroke
 
getApplicableCommands(context) - Static method in class org.lazywizard.console.CommandStore
Returns all commands applicable in the given enum BaseCommand.CommandContext. A command will only be excluded if it contains an opposing tag and does not contain the matching one (ex: for CommandContext#CAMPAIGN_MAP, commands will only be excluded if they contain the tag "combat" or "market" but not the tag "campaign".
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
 
getCommandsWithTag(tag) - Static method in class org.lazywizard.console.CommandStore
Returns all commands with a specific tag.
getConsoleSummonKey() - Method in class org.lazywizard.console.ConsoleSettings
 
getContext() - Static method in class org.lazywizard.console.Console
 
getContext() - Method in class org.lazywizard.console.ShowSettings.SettingsDialog
 
getCtrl() - Method in class org.lazywizard.console.ConsoleSettings.Keystroke
 
getDefaultCombatCheatTarget() - Method in class org.lazywizard.console.ConsoleSettings
 
getDefaultTarget() - Static method in class org.lazywizard.console.cheatmanager.CombatCheatManager
 
getDefaultTarget() - Method in class org.lazywizard.console.cheatmanager.CombatCheatManager.PluginManager
 
getDevModeTogglesDebugFlags() - Method in class org.lazywizard.console.ConsoleSettings
 
getEntitiesWithTags(location, tags) - Static method in class org.lazywizard.console.CommandUtils
 
getEntityInteractedWith() - Method in enum org.lazywizard.console.BaseCommand.CommandContext
Returns the SectorEntityToken the player is in a dialog with, if any.
getFactionName(faction) - Static method in class org.lazywizard.console.CommandUtils
 
getFont() - Static method in class org.lazywizard.console.Console
 
getFontScaling() - Method in class org.lazywizard.console.ConsoleSettings
 
getHelp() - Method in class org.lazywizard.console.CommandStore.StoredCommand
Returns the detailed usage instructions for this command.
getKeyCode() - Method in class org.lazywizard.console.ConsoleSettings.Keystroke
 
getKnownTags() - Static method in class org.lazywizard.console.CommandStore
Returns all command tags that the mod is currently aware of.
getListeners() - Static method in class org.lazywizard.console.CommandStore
Returns all interface CommandListeners that are registered with the console.
getLoadedCommands() - Static method in class org.lazywizard.console.CommandStore
Returns all commands currently loaded by the mod.
getMarket() - Method in enum org.lazywizard.console.BaseCommand.CommandContext
Returns the MarketAPI of the The
getMaxScrollback() - Method in class org.lazywizard.console.ConsoleSettings
 
getMemoryMap() - Method in class org.lazywizard.console.ShowSettings.SettingsDialog
 
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
 
getSettings() - Static method in class org.lazywizard.console.Console
 
getShift() - Method in class org.lazywizard.console.ConsoleSettings.Keystroke
 
getShowBackground() - Method in class org.lazywizard.console.ConsoleSettings
 
getShowCursorIndex() - Method in class org.lazywizard.console.ConsoleSettings
 
getShowEnteredCommands() - Method in class org.lazywizard.console.ConsoleSettings
 
getShowExceptionDetails() - Method in class org.lazywizard.console.ConsoleSettings
 
getShowMemoryUsage() - Method in class org.lazywizard.console.ConsoleSettings
 
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). Useful for determining which mod added this command.
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.
getTransferStorageToHome() - Method in class org.lazywizard.console.ConsoleSettings
 
getTypoCorrectionThreshold() - Method in class org.lazywizard.console.ConsoleSettings
 
getUsableCargo(token) - Static method in class org.lazywizard.console.CommandUtils
 

I

indent(message, indentation, existingIndentation) - Static method in class org.lazywizard.console.CommandUtils
Indents and word-wraps a String to fit within the console's overlay.
indent(message, indentation) - Static method in class org.lazywizard.console.CommandUtils
Indents and word-wraps a String to fit within the console's overlay.
init(dialog) - Method in class org.lazywizard.console.ShowSettings.SettingsDialog
 
INPUT_QUERY - Static variable in class org.lazywizard.console.CommonStrings
The message the console shows when it's first summoned.
INSTANCE - Static variable in class org.lazywizard.console.ConsoleSettings
 
isCampaignAccessible() - Method in enum org.lazywizard.console.BaseCommand.CommandContext
Returns whether the player is in campaign mode, including in campaign battles (even refit simulation battles).
isDouble(arg) - Static method in class org.lazywizard.console.CommandUtils
 
isEnabled(id) - Static method in class org.lazywizard.console.cheatmanager.CombatCheatManager
 
isEnabled(id) - Method in class org.lazywizard.console.cheatmanager.CombatCheatManager.PluginManager
 
isFloat(arg) - Static method in class org.lazywizard.console.CommandUtils
 
isInCampaign() - Method in enum org.lazywizard.console.BaseCommand.CommandContext
Returns whether this context is on the campaign map.
isInCombat() - Method in enum org.lazywizard.console.BaseCommand.CommandContext
Returns whether this context is on the combat map.
isInMarket() - Method in enum org.lazywizard.console.BaseCommand.CommandContext
Returns whether the player is interacting with a market-containing entity.
isInteger(arg) - Static method in class org.lazywizard.console.CommandUtils
 
isLong(arg) - Static method in class org.lazywizard.console.CommandUtils
 
isPressed(events) - Method in class org.lazywizard.console.ConsoleSettings.Keystroke
 
isTarget(ship, target) - Static method in class org.lazywizard.console.cheatmanager.CombatCheatManager
 
isTarget(ship, target) - Method in class org.lazywizard.console.cheatmanager.CombatCheatManager.PluginManager
 

K

Keystroke(keyCode, ctrl, alt, shift) - Constructor for class org.lazywizard.console.ConsoleSettings.Keystroke
 

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

onEnd(engine) - Method in class org.lazywizard.console.cheatmanager.CheatPlugin
Only called when cheat is toggled off, after unapply is called on all ships. Do not rely on this being called!
onPostExecute(command, args, result, context, interceptedBy) - Method in interface org.lazywizard.console.CommandListener
Called after a command is run, regardless of whether execution was intercepted by a interface CommandListener or not.
onPreExecute(command, args, context, alreadyIntercepted) - Method in interface org.lazywizard.console.CommandListener
Called before a console command is executed, and gives the listener a chance to intercept execution and run its own code.
onStart(engine) - Method in class org.lazywizard.console.cheatmanager.CheatPlugin
Called when cheat is toggled on, before advance is called on any ships.
optionMousedOver(optionText, optionData) - Method in class org.lazywizard.console.ShowSettings.SettingsDialog
 
optionSelected(optionText, optionData) - Method in class org.lazywizard.console.ShowSettings.SettingsDialog
 
org.lazywizard.console - package org.lazywizard.console
 
org.lazywizard.console.cheatmanager - package org.lazywizard.console.cheatmanager
 

P

parseTargets(str, allowedTargets) - Static method in class org.lazywizard.console.cheatmanager.CombatCheatManager
 
parseTargets(str) - Static method in class org.lazywizard.console.cheatmanager.CombatCheatManager
 
parseTargets(str, allowedTargets) - Method in class org.lazywizard.console.cheatmanager.CombatCheatManager.PluginManager
 
parseTargets(str) - Method in class org.lazywizard.console.cheatmanager.CombatCheatManager.PluginManager
 
PATH_COMMON_DATA - Static variable in class org.lazywizard.console.CommonStrings
The path to the config file in common data, automatically generated via the Settings command.
PATH_CSV - Static variable in class org.lazywizard.console.CommonStrings
The path to commands.csv, used for loading commands.
PATH_LISTENER_CSV - Static variable in class org.lazywizard.console.CommonStrings
The path to command_listeners.csv, used for listening for and intercepting input.
PATH_RUNCODE_CSV - Static variable in class org.lazywizard.console.CommonStrings
The path to runcode_imports.csv, used for setting custom imports for the RunCode command.
PATH_RUNCODE_MACROS - Static variable in class org.lazywizard.console.CommonStrings
The path to runcode_macros.csv, used for setting custom macros for the RunCode command.
PATH_SETTINGS - Static variable in class org.lazywizard.console.CommonStrings
The path to console_settings.csv.
PluginManager - Static variable in class org.lazywizard.console.cheatmanager.CombatCheatManager
 

R

registerAlias(alias, command) - Static method in class org.lazywizard.console.CommandStore
Registers an alias to be used as shorthand for long or multiple commands..
reloadCommands() - Static method in class org.lazywizard.console.CommandStore
Forces the console to clear its stored commands and reload them from the CSV. If a command fails to load it will not throw an Exception. Instead it will display an error message to the player and continue to load the rest of the commands normally.
reloadSettings() - Static method in class org.lazywizard.console.Console
Forces the console to reload its settings from the settings file.
resetToDefaults() - Method in class org.lazywizard.console.ConsoleSettings
 
retrieveCommand(command) - Static method in class org.lazywizard.console.CommandStore
Retrieves the raw data for a specific command.
runCommand(args, context) - Method in interface org.lazywizard.console.BaseCommand
Called when the player enters your command.
runCommand(args, context) - Method in class org.lazywizard.console.ShowSettings
 
runWhilePaused() - Method in class org.lazywizard.console.cheatmanager.CheatPlugin
Whether the advance methods should be called while the game is paused.

S

setCommandSeparator(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setConsoleSummonKey(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setDefaultCombatCheatTarget(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setDevModeTogglesDebugFlags(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setFontScaling(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setMaxScrollback(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setOutputColor(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setShowBackground(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setShowCursorIndex(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setShowEnteredCommands(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setShowExceptionDetails(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setShowMemoryUsage(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setTransferStorageToHome(p) - Method in class org.lazywizard.console.ConsoleSettings
 
setTypoCorrectionThreshold(p) - Method in class org.lazywizard.console.ConsoleSettings
 
show(context) - Static method in class org.lazywizard.console.ConsoleOverlay
 
showDialogOnClose(dialog, token) - Static method in class org.lazywizard.console.Console
 
showDialogOnClose(token) - Static method in class org.lazywizard.console.Console
 
showException(message, ex) - Static method in class org.lazywizard.console.Console
Displays the stack trace of a Throwable.
showIndentedMessage(preamble, message, indentation) - Static method in class org.lazywizard.console.Console
Displays an indented message to the user. The message will be formatted and shown to the player when they reach a section of the game where it can be displayed properly (combat/campaign map).
showMessage(message, logLevel) - Static method in class org.lazywizard.console.Console
Displays a message to the user. The message will be formatted and shown to the player when they reach a section of the game where it can be displayed properly (combat/campaign map).
showMessage(message) - Static method in class org.lazywizard.console.Console
Displays a message to the user. The message will be formatted and shown to the player when they reach a section of the game where it can be displayed properly (combat/campaign map).
ShowSettings - Class in org.lazywizard.console
 
ShowSettings.SettingsDialog - Class in org.lazywizard.console
 

T

toString() - Method in class org.lazywizard.console.ConsoleSettings.Keystroke
 

U

unapply(ship) - Method in class org.lazywizard.console.cheatmanager.CheatPlugin
Called when cheat is toggled off. Do not rely on this being called!
A B C D E F G I K M O P R S T U 
Skip navigation links