Class AddonDispatcher

java.lang.Object
dev.boze.api.addon.AddonDispatcher

public class AddonDispatcher extends Object
Container class for command dispatcher. All addons must use this to register and handle commands.
  • 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

      public void dispatch(String command) throws com.mojang.brigadier.exceptions.CommandSyntaxException
      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 dispatch
      source - The command source
      Throws:
      com.mojang.brigadier.exceptions.CommandSyntaxException - If the command has a syntax error
    • registerCommand

      public void registerCommand(AddonCommand command)
      Registers a command to the addon's dispatcher.
      Parameters:
      command - The command to register
    • registerCommands

      public void registerCommands(AddonCommand... commands)
      Registers multiple commands to the addon's dispatcher.
      Parameters:
      commands - The commands to register
    • getCommands

      public List<AddonCommand> getCommands()
      Gets all registered commands.
      Returns:
      List of registered commands