Package dev.boze.api.addon
Class AddonDispatcher
java.lang.Object
dev.boze.api.addon.AddonDispatcher
Container class for command dispatcher.
All addons must use this to register and handle commands.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Dispatches a command to the addon's dispatcher.void
Dispatches a command to the addon's dispatcher with a specific source.Gets all registered commands.com.mojang.brigadier.CommandDispatcher
<net.minecraft.command.CommandSource> Gets the dispatcher that handles the addon's commands.void
registerCommand
(AddonCommand command) Registers a command to the addon's dispatcher.void
registerCommands
(AddonCommand... commands) Registers multiple commands to the addon's dispatcher.
-
Constructor Details
-
AddonDispatcher
public AddonDispatcher()
-
-
Method Details
-
getDispatcher
public com.mojang.brigadier.CommandDispatcher<net.minecraft.command.CommandSource> getDispatcher()Gets the dispatcher that handles the addon's commands.- Returns:
- The command dispatcher
-
dispatch
Dispatches a command to the addon's dispatcher.- Parameters:
command
- The command to dispatch- Throws:
com.mojang.brigadier.exceptions.CommandSyntaxException
- If the command has a syntax error
-
dispatch
public void dispatch(String command, net.minecraft.command.CommandSource source) throws com.mojang.brigadier.exceptions.CommandSyntaxException Dispatches a command to the addon's dispatcher with a specific source.- Parameters:
command
- The command to dispatchsource
- The command source- Throws:
com.mojang.brigadier.exceptions.CommandSyntaxException
- If the command has a syntax error
-
registerCommand
Registers a command to the addon's dispatcher.- Parameters:
command
- The command to register
-
registerCommands
Registers multiple commands to the addon's dispatcher.- Parameters:
commands
- The commands to register
-
getCommands
Gets all registered commands.- Returns:
- List of registered commands
-