Class StartCommand
java.lang.Object
fr.multimc.api.spigot.common.commands.executors.StartCommand
- All Implemented Interfaces:
org.bukkit.command.CommandExecutor
Class that implements the
CommandExecutor
interface for the "start" command.
Allows for starting a game with specified teams.-
Constructor Summary
ConstructorsConstructorDescriptionStartCommand
(@NotNull GamesManager gamesManager, @NotNull TeamManager teamManager) Constructor for the StartCommand class. -
Method Summary
Modifier and TypeMethodDescriptiongetTeams
(int teamSize, DispatchAlgorithm dispatchAlgorithm) Creates and dispatch players into teams with a specified team size and dispatch algorithm.boolean
onCommand
(@NotNull org.bukkit.command.CommandSender commandSender, @NotNull org.bukkit.command.Command command, @NotNull String s, @NotNull String[] args) Executes the "start" command when called.
-
Constructor Details
-
StartCommand
public StartCommand(@NotNull @NotNull GamesManager gamesManager, @NotNull @NotNull TeamManager teamManager) Constructor for the StartCommand class.- Parameters:
gamesManager
- TheGamesManager
instance to be used for starting the game.teamManager
- TheTeamManager
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 interfaceorg.bukkit.command.CommandExecutor
- Parameters:
commandSender
- TheCommandSender
of the command.command
- TheCommand
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
Creates and dispatch players into teams with a specified team size and dispatch algorithm.- Parameters:
teamSize
- The size of each team.dispatchAlgorithm
- TheDispatchAlgorithm
to be used for dispatching players into teams.- Returns:
- A
List<MmcTeam>
with players.
-