TF-EssentialsX/Essentials/src/com/earth2me/essentials/commands/EssentialsToggleCommand.java

61 lines
2.3 KiB
Java
Raw Normal View History

package com.earth2me.essentials.commands;
import com.earth2me.essentials.CommandSource;
import com.earth2me.essentials.User;
import org.bukkit.Server;
import org.bukkit.entity.Player;
2015-04-15 04:06:16 +00:00
import java.util.List;
2015-04-15 04:06:16 +00:00
public abstract class EssentialsToggleCommand extends EssentialsCommand {
String othersPermission;
public EssentialsToggleCommand(String command, String othersPermission) {
super(command);
this.othersPermission = othersPermission;
}
protected Boolean matchToggleArgument(final String arg) {
if (arg.equalsIgnoreCase("on") || arg.startsWith("ena") || arg.equalsIgnoreCase("1")) {
return true;
} else if (arg.equalsIgnoreCase("off") || arg.startsWith("dis") || arg.equalsIgnoreCase("0")) {
return false;
}
return null;
}
protected void toggleOtherPlayers(final Server server, final CommandSource sender, final String[] args) throws PlayerNotFoundException, NotEnoughArgumentsException {
if (args.length < 1 || args[0].trim().length() < 2) {
throw new PlayerNotFoundException();
}
boolean skipHidden = sender.isPlayer() && !ess.getUser(sender.getPlayer()).canInteractVanished();
boolean foundUser = false;
final List<Player> matchedPlayers = server.matchPlayer(args[0]);
for (Player matchPlayer : matchedPlayers) {
final User player = ess.getUser(matchPlayer);
if (skipHidden && player.isHidden(sender.getPlayer()) && !sender.getPlayer().canSee(matchPlayer)) {
continue;
}
foundUser = true;
if (args.length > 1) {
Boolean toggle = matchToggleArgument(args[1]);
if (toggle == true) {
togglePlayer(sender, player, true);
} else {
togglePlayer(sender, player, false);
}
} else {
togglePlayer(sender, player, null);
}
}
if (!foundUser) {
throw new PlayerNotFoundException();
}
}
// Make sure when implementing this method that all 3 Boolean states are handled, 'null' should toggle the existing state.
abstract void togglePlayer(CommandSource sender, User user, Boolean enabled) throws NotEnoughArgumentsException;
}