java.lang.Object
fr.multimc.api.spigot.common.commands.executors.StartCommand
All Implemented Interfaces:
org.bukkit.command.CommandExecutor

public class StartCommand extends Object implements org.bukkit.command.CommandExecutor
Class that implements the CommandExecutor interface for the "start" command. Allows for starting a game with specified teams.
  • Constructor Details

    • StartCommand

      public StartCommand(@NotNull @NotNull GamesManager gamesManager, @NotNull @NotNull TeamManager teamManager)
      Constructor for the StartCommand class.
      Parameters:
      gamesManager - The GamesManager instance to be used for starting the game.
      teamManager - The TeamManager instance to be used for managing teams.
  • Method Details

    • onCommand

      public boolean onCommand(@NotNull @NotNull org.bukkit.command.CommandSender commandSender, @NotNull @NotNull org.bukkit.command.Command command, @NotNull @NotNull String s, @NotNull @NotNull String[] args)
      Executes the "start" command when called.
      Specified by:
      onCommand in interface org.bukkit.command.CommandExecutor
      Parameters:
      commandSender - The CommandSender of the command.
      command - The Command being executed.
      s - String that represents yhe name of the command being executed.
      args - String[] that represents the additional arguments passed with the command.
      Returns:
      boolean indicating if the command was successful or not.
    • getTeams

      public List<MmcTeam> getTeams(int teamSize, DispatchAlgorithm dispatchAlgorithm)
      Creates and dispatch players into teams with a specified team size and dispatch algorithm.
      Parameters:
      teamSize - The size of each team.
      dispatchAlgorithm - The DispatchAlgorithm to be used for dispatching players into teams.
      Returns:
      A List<MmcTeam> with players.