2021-09-01 01:55:27 +00:00
|
|
|
package net.tylermurphy.hideAndSeek.bukkit;
|
2021-08-13 20:49:36 +00:00
|
|
|
|
2021-08-25 03:43:01 +00:00
|
|
|
import static net.tylermurphy.hideAndSeek.Store.*;
|
|
|
|
|
2021-08-13 20:49:36 +00:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.LinkedHashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
2021-09-01 01:55:27 +00:00
|
|
|
import net.tylermurphy.hideAndSeek.command.*;
|
2021-08-23 17:57:50 +00:00
|
|
|
import net.tylermurphy.hideAndSeek.util.ICommand;
|
2021-08-13 20:49:36 +00:00
|
|
|
|
2021-08-23 17:57:50 +00:00
|
|
|
public class CommandHandler {
|
2021-08-13 20:49:36 +00:00
|
|
|
|
|
|
|
public static Map<String,ICommand> COMMAND_REGISTER = new LinkedHashMap<String,ICommand>();
|
|
|
|
|
|
|
|
private static void registerCommand(ICommand command) {
|
|
|
|
if(!COMMAND_REGISTER.containsKey(command.getLabel())) {
|
|
|
|
COMMAND_REGISTER.put(command.getLabel().toLowerCase(), command);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void registerCommands() {
|
|
|
|
registerCommand(new About());
|
|
|
|
registerCommand(new Help());
|
|
|
|
registerCommand(new Start());
|
|
|
|
registerCommand(new Stop());
|
|
|
|
registerCommand(new SetSpawnLocation());
|
2021-10-11 21:06:21 +00:00
|
|
|
registerCommand(new SetLobbyLocation());
|
2021-08-13 20:49:36 +00:00
|
|
|
registerCommand(new SetBorder());
|
2021-08-25 03:43:01 +00:00
|
|
|
registerCommand(new Reload());
|
2021-08-27 21:20:07 +00:00
|
|
|
registerCommand(new SaveMap());
|
2021-10-11 21:06:21 +00:00
|
|
|
registerCommand(new Join());
|
|
|
|
registerCommand(new Leave());
|
2021-08-13 20:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean handleCommand(CommandSender sender, Command cmd, String label, String[] args) {
|
|
|
|
if(sender instanceof Player == false) {
|
|
|
|
sender.sendMessage(errorPrefix + "This command can only be run as a player.");
|
2021-08-26 13:38:12 +00:00
|
|
|
} else if(args.length < 1 || !COMMAND_REGISTER.containsKey(args[0].toLowerCase()) ) {
|
|
|
|
if(permissionsRequired && !sender.hasPermission("hideandseek.about")) {
|
|
|
|
sender.sendMessage(errorPrefix + "You are not allowed to run this command.");
|
|
|
|
} else {
|
|
|
|
COMMAND_REGISTER.get("about").execute(sender, null);
|
|
|
|
}
|
2021-08-13 20:49:36 +00:00
|
|
|
} else {
|
2021-08-28 00:32:50 +00:00
|
|
|
if(!args[0].toLowerCase().equals("about") && !args[0].toLowerCase().equals("help") && runningBackup) {
|
|
|
|
sender.sendMessage(errorPrefix + "Map save is currently in progress. Try again later.");
|
|
|
|
} else if(permissionsRequired && !sender.hasPermission("hideandseek."+args[0].toLowerCase())) {
|
2021-08-26 13:38:12 +00:00
|
|
|
sender.sendMessage(errorPrefix + "You are not allowed to run this command.");
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
COMMAND_REGISTER.get(args[0].toLowerCase()).execute(sender,Arrays.copyOfRange(args, 1, args.length));
|
|
|
|
} catch (Exception e) {
|
|
|
|
sender.sendMessage(errorPrefix + "An error has occured.");
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
2021-08-13 20:49:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
2021-08-23 17:57:50 +00:00
|
|
|
return CommandHandler.handleCommand(sender, command, label, args);
|
2021-08-13 20:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|