LibsDisguises/src/me/libraryaddict/disguise/commands/UndisguiseRadiusCommand.java

73 lines
2.8 KiB
Java
Raw Normal View History

package me.libraryaddict.disguise.commands;
2017-06-19 11:23:02 +02:00
import me.libraryaddict.disguise.DisguiseAPI;
import me.libraryaddict.disguise.utilities.TranslateType;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Entity;
import org.bukkit.entity.Player;
2016-11-28 15:01:06 +01:00
public class UndisguiseRadiusCommand implements CommandExecutor {
private int maxRadius = 30;
2016-11-28 15:01:06 +01:00
public UndisguiseRadiusCommand(int maxRadius) {
this.maxRadius = maxRadius;
}
2016-11-28 15:01:06 +01:00
private boolean isNumeric(String string) {
try {
Integer.parseInt(string);
return true;
}
2016-11-28 15:01:06 +01:00
catch (Exception ex) {
return false;
}
}
@Override
2016-11-28 15:01:06 +01:00
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
if (sender.getName().equals("CONSOLE")) {
2017-06-19 11:23:02 +02:00
sender.sendMessage(
TranslateType.MESSAGE.get(ChatColor.RED + "You may not use this command from the console!"));
return true;
}
2016-11-28 15:01:06 +01:00
if (sender.hasPermission("libsdisguises.undisguiseradius")) {
int radius = maxRadius;
2016-11-28 15:01:06 +01:00
if (args.length > 0) {
if (!isNumeric(args[0])) {
2017-06-19 11:23:02 +02:00
sender.sendMessage(String.format(TranslateType.MESSAGE.get(
ChatColor.RED + "Error! " + ChatColor.GREEN + "%s" + ChatColor.RED + " is not a " + "number!"),
args[0]));
return true;
}
radius = Integer.parseInt(args[0]);
2016-11-28 15:01:06 +01:00
if (radius > maxRadius) {
2017-06-19 11:23:02 +02:00
sender.sendMessage(String.format(TranslateType.MESSAGE.get(
ChatColor.RED + "Limited radius to %s" + "! Don't want to make too much lag right?"),
maxRadius));
radius = maxRadius;
}
}
2017-06-19 11:23:02 +02:00
int disguisedEntitys = 0;
2016-11-28 15:01:06 +01:00
for (Entity entity : ((Player) sender).getNearbyEntities(radius, radius, radius)) {
if (entity == sender) {
continue;
}
2016-11-28 15:01:06 +01:00
if (DisguiseAPI.isDisguised(entity)) {
DisguiseAPI.undisguiseToAll(entity);
disguisedEntitys++;
}
}
2017-06-19 11:23:02 +02:00
sender.sendMessage(
String.format(TranslateType.MESSAGE.get(ChatColor.RED + "Successfully undisguised %s entities!"),
disguisedEntitys));
} else {
sender.sendMessage(TranslateType.MESSAGE.get(ChatColor.RED + "You are forbidden to use this command."));
}
return true;
}
}