2017-02-19 16:56:14 +01:00
|
|
|
package me.libraryaddict.disguise.commands;
|
|
|
|
|
2017-06-08 17:06:58 +02:00
|
|
|
import me.libraryaddict.disguise.DisguiseAPI;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.Disguise;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.DisguiseType;
|
|
|
|
import me.libraryaddict.disguise.utilities.ClassGetter;
|
|
|
|
import me.libraryaddict.disguise.utilities.DisguiseParser;
|
|
|
|
import me.libraryaddict.disguise.utilities.DisguiseParser.DisguiseParseException;
|
|
|
|
import me.libraryaddict.disguise.utilities.DisguiseParser.DisguisePerm;
|
|
|
|
import me.libraryaddict.disguise.utilities.ReflectionFlagWatchers;
|
|
|
|
import me.libraryaddict.disguise.utilities.ReflectionFlagWatchers.ParamInfo;
|
2017-06-19 11:23:02 +02:00
|
|
|
import me.libraryaddict.disguise.utilities.TranslateType;
|
2017-02-19 16:56:14 +01:00
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.Location;
|
2017-06-08 17:06:58 +02:00
|
|
|
import org.bukkit.command.BlockCommandSender;
|
2017-02-19 16:56:14 +01:00
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.command.TabCompleter;
|
|
|
|
import org.bukkit.entity.Entity;
|
|
|
|
import org.bukkit.entity.EntityType;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
2017-06-08 17:06:58 +02:00
|
|
|
import java.lang.reflect.Method;
|
|
|
|
import java.util.*;
|
2017-02-19 16:56:14 +01:00
|
|
|
|
|
|
|
public class DisguiseModifyRadiusCommand extends DisguiseBaseCommand implements TabCompleter {
|
|
|
|
private int maxRadius = 30;
|
|
|
|
private ArrayList<Class<? extends Entity>> validClasses = new ArrayList<>();
|
|
|
|
|
|
|
|
public DisguiseModifyRadiusCommand(int maxRadius) {
|
|
|
|
this.maxRadius = maxRadius;
|
|
|
|
for (Class c : ClassGetter.getClassesForPackage("org.bukkit.entity")) {
|
|
|
|
if (c != Entity.class && Entity.class.isAssignableFrom(c) && c.getAnnotation(Deprecated.class) == null) {
|
|
|
|
validClasses.add(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private Collection<Entity> getNearbyEntities(CommandSender sender, int radius) {
|
|
|
|
Location center;
|
|
|
|
|
|
|
|
if (sender instanceof Player) {
|
|
|
|
center = ((Player) sender).getLocation();
|
2017-06-19 11:23:02 +02:00
|
|
|
} else {
|
2017-06-08 17:06:58 +02:00
|
|
|
center = ((BlockCommandSender) sender).getBlock().getLocation().add(0.5, 0, 0.5);
|
2017-02-19 16:56:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return center.getWorld().getNearbyEntities(center, radius, radius, radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
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!"));
|
2017-02-19 16:56:14 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
HashMap<DisguisePerm, HashMap<ArrayList<String>, Boolean>> map = getPermissions(sender);
|
|
|
|
|
|
|
|
if (map.isEmpty()) {
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(TranslateType.MESSAGE.get(ChatColor.RED + "You are forbidden to use this command."));
|
2017-02-19 16:56:14 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.length == 0) {
|
|
|
|
sendCommandUsage(sender, map);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args[0].equalsIgnoreCase("entitytype") || args[0].equalsIgnoreCase("entitytypes")) {
|
|
|
|
ArrayList<String> classes = new ArrayList<>();
|
|
|
|
|
|
|
|
for (Class c : validClasses) {
|
|
|
|
classes.add(c.getSimpleName());
|
|
|
|
}
|
|
|
|
|
|
|
|
Collections.sort(classes);
|
|
|
|
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(
|
|
|
|
String.format(TranslateType.MESSAGE.get(ChatColor.DARK_GREEN + "EntityTypes usable " + "are: %s"),
|
|
|
|
ChatColor.GREEN + StringUtils.join(classes,
|
|
|
|
ChatColor.DARK_GREEN + ", " + ChatColor.GREEN) + ChatColor.DARK_GREEN + "."));
|
2017-02-19 16:56:14 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Class entityClass = Entity.class;
|
|
|
|
EntityType type = null;
|
|
|
|
int starting = 0;
|
|
|
|
|
|
|
|
if (!isNumeric(args[0])) {
|
|
|
|
for (Class c : validClasses) {
|
|
|
|
if (c.getSimpleName().equalsIgnoreCase(args[0])) {
|
|
|
|
entityClass = c;
|
|
|
|
starting = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (starting == 0) {
|
|
|
|
try {
|
|
|
|
type = EntityType.valueOf(args[0].toUpperCase());
|
|
|
|
}
|
|
|
|
catch (Exception ex) {
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == null) {
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(
|
|
|
|
String.format(TranslateType.MESSAGE.get(ChatColor.RED + "Unrecognised " + "EntityType %s"),
|
|
|
|
args[0]));
|
2017-02-19 16:56:14 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.length == starting + 1) {
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(TranslateType.MESSAGE.get(
|
|
|
|
ChatColor.RED + "You need to supply the disguise options as well as the radius" + (starting != 0 ?
|
|
|
|
" and EntityType" : "")));
|
2017-02-19 16:56:14 +01:00
|
|
|
return true;
|
2017-06-19 11:23:02 +02:00
|
|
|
} else if (args.length < 2) {
|
|
|
|
sender.sendMessage(TranslateType.MESSAGE.get(
|
|
|
|
ChatColor.RED + "You need to supply a radius as well as " + "the disguise options"));
|
2017-02-19 16:56:14 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isNumeric(args[starting])) {
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(String.format(TranslateType.MESSAGE.get(ChatColor.RED + "%s is not a " + "number"),
|
|
|
|
args[starting]));
|
2017-02-19 16:56:14 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int radius = Integer.parseInt(args[starting]);
|
|
|
|
|
|
|
|
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));
|
2017-02-19 16:56:14 +01:00
|
|
|
radius = maxRadius;
|
|
|
|
}
|
|
|
|
|
|
|
|
String[] newArgs = new String[args.length - (starting + 1)];
|
|
|
|
System.arraycopy(args, starting + 1, newArgs, 0, newArgs.length);
|
|
|
|
|
|
|
|
if (newArgs.length == 0) {
|
|
|
|
sendCommandUsage(sender, map);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Time to use it!
|
|
|
|
int modifiedDisguises = 0;
|
|
|
|
int noPermission = 0;
|
|
|
|
|
|
|
|
for (Entity entity : getNearbyEntities(sender, radius)) {
|
|
|
|
if (entity == sender) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type != null ? entity.getType() != type : !entityClass.isAssignableFrom(entity.getClass())) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Disguise disguise;
|
|
|
|
|
|
|
|
if (sender instanceof Player)
|
|
|
|
disguise = DisguiseAPI.getDisguise((Player) sender, entity);
|
|
|
|
else
|
|
|
|
disguise = DisguiseAPI.getDisguise(entity);
|
|
|
|
|
|
|
|
if (!map.containsKey(new DisguisePerm(disguise.getType()))) {
|
|
|
|
noPermission++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
DisguiseParser.callMethods(sender, disguise, map.get(new DisguisePerm(disguise.getType())),
|
|
|
|
new ArrayList<String>(), newArgs);
|
|
|
|
modifiedDisguises++;
|
|
|
|
}
|
|
|
|
catch (DisguiseParseException ex) {
|
|
|
|
if (ex.getMessage() != null) {
|
|
|
|
sender.sendMessage(ex.getMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch (Exception ex) {
|
|
|
|
ex.printStackTrace();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (noPermission > 0) {
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(String.format(
|
|
|
|
TranslateType.MESSAGE.get(ChatColor.RED + "No permission to modify " + "%s disguises!"),
|
|
|
|
noPermission));
|
2017-02-19 16:56:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (modifiedDisguises > 0) {
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(String.format(TranslateType.MESSAGE.get(
|
|
|
|
ChatColor.RED + "Successfully modified the disguises of %s" + " entities!"), modifiedDisguises));
|
|
|
|
} else {
|
|
|
|
sender.sendMessage(TranslateType.MESSAGE.get(ChatColor.RED + "Couldn't find any disguised entities!"));
|
2017-02-19 16:56:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<String> onTabComplete(CommandSender sender, Command cmd, String label, String[] origArgs) {
|
2017-06-19 11:23:02 +02:00
|
|
|
ArrayList<String> tabs = new ArrayList<>();
|
2017-02-19 16:56:14 +01:00
|
|
|
String[] args = getArgs(origArgs);
|
|
|
|
|
|
|
|
HashMap<DisguisePerm, HashMap<ArrayList<String>, Boolean>> perms = getPermissions(sender);
|
|
|
|
|
|
|
|
if (args.length == 0) {
|
|
|
|
for (Class<? extends Entity> entityClass : validClasses) {
|
|
|
|
tabs.add(entityClass.getSimpleName());
|
|
|
|
}
|
|
|
|
|
|
|
|
return filterTabs(tabs, origArgs);
|
|
|
|
}
|
|
|
|
|
|
|
|
int starting = 1;
|
|
|
|
|
|
|
|
if (!isNumeric(args[0])) {
|
|
|
|
for (Class c : validClasses) {
|
|
|
|
if (!c.getSimpleName().equalsIgnoreCase(args[0]))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
starting = 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not a valid radius
|
|
|
|
if (starting == 1 || args.length == 1 || !isNumeric(args[1]))
|
|
|
|
return filterTabs(tabs, origArgs);
|
|
|
|
}
|
|
|
|
|
|
|
|
int radius = Integer.parseInt(args[starting]);
|
|
|
|
|
|
|
|
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));
|
2017-02-19 16:56:14 +01:00
|
|
|
radius = maxRadius;
|
|
|
|
}
|
|
|
|
|
2017-06-19 11:23:02 +02:00
|
|
|
ArrayList<String> usedOptions = new ArrayList<>();
|
2017-02-19 16:56:14 +01:00
|
|
|
|
|
|
|
for (Entity entity : getNearbyEntities(sender, radius)) {
|
|
|
|
Disguise disguise = DisguiseAPI.getDisguise(entity);
|
|
|
|
|
|
|
|
if (disguise == null)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
DisguiseType disguiseType = disguise.getType();
|
|
|
|
|
|
|
|
for (Method method : ReflectionFlagWatchers.getDisguiseWatcherMethods(disguiseType.getWatcherClass())) {
|
2017-06-19 11:23:02 +02:00
|
|
|
for (String arg : args) {
|
2017-02-19 16:56:14 +01:00
|
|
|
if (!method.getName().equalsIgnoreCase(arg))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
usedOptions.add(arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 11:23:02 +02:00
|
|
|
if (passesCheck(sender, perms.get(new DisguisePerm(disguiseType)), usedOptions)) {
|
2017-02-19 16:56:14 +01:00
|
|
|
boolean addMethods = true;
|
|
|
|
|
|
|
|
if (args.length > 1 + starting) {
|
|
|
|
String prevArg = args[args.length - 1];
|
|
|
|
|
|
|
|
ParamInfo info = ReflectionFlagWatchers.getParamInfo(disguiseType, prevArg);
|
|
|
|
|
|
|
|
if (info != null) {
|
|
|
|
if (info.getParamClass() != boolean.class)
|
|
|
|
addMethods = false;
|
|
|
|
|
|
|
|
if (info.isEnums()) {
|
|
|
|
for (String e : info.getEnums(origArgs[origArgs.length - 1])) {
|
|
|
|
tabs.add(e);
|
|
|
|
}
|
2017-06-19 11:23:02 +02:00
|
|
|
} else {
|
2017-02-19 16:56:14 +01:00
|
|
|
if (info.getParamClass() == String.class) {
|
|
|
|
for (Player player : Bukkit.getOnlinePlayers()) {
|
|
|
|
tabs.add(player.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (addMethods) {
|
|
|
|
// If this is a method, add. Else if it can be a param of the previous argument, add.
|
2017-06-19 11:23:02 +02:00
|
|
|
for (Method method : ReflectionFlagWatchers.getDisguiseWatcherMethods(
|
|
|
|
disguiseType.getWatcherClass())) {
|
2017-02-19 16:56:14 +01:00
|
|
|
tabs.add(method.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return filterTabs(tabs, origArgs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send the player the information
|
|
|
|
*/
|
|
|
|
@Override
|
2017-06-19 11:23:02 +02:00
|
|
|
protected void sendCommandUsage(CommandSender sender,
|
|
|
|
HashMap<DisguisePerm, HashMap<ArrayList<String>, Boolean>> map) {
|
2017-02-19 16:56:14 +01:00
|
|
|
ArrayList<String> allowedDisguises = getAllowedDisguises(map);
|
|
|
|
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(String.format(TranslateType.MESSAGE.get(
|
|
|
|
ChatColor.DARK_GREEN + "Modify the disguises in a radius! Caps at %s blocks!"), maxRadius));
|
|
|
|
sender.sendMessage(
|
|
|
|
String.format(TranslateType.MESSAGE.get(ChatColor.DARK_GREEN + "You can modify the disguises: %s"),
|
|
|
|
ChatColor.GREEN + StringUtils.join(allowedDisguises, ChatColor.RED + ", " + ChatColor.GREEN)));
|
2017-02-19 16:56:14 +01:00
|
|
|
|
|
|
|
String optional = ChatColor.DARK_GREEN + "(" + ChatColor.GREEN + "Optional" + ChatColor.DARK_GREEN + ")";
|
|
|
|
|
|
|
|
if (allowedDisguises.contains("player")) {
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(TranslateType.MESSAGE.get(
|
|
|
|
(ChatColor.DARK_GREEN + "/disguiseradius <EntityType" + optional + "> <Radius> player <Name>").replace(
|
|
|
|
"<", "<" + ChatColor.GREEN).replace(">", ChatColor.DARK_GREEN + ">")));
|
2017-02-19 16:56:14 +01:00
|
|
|
}
|
|
|
|
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(TranslateType.MESSAGE.get(
|
|
|
|
(ChatColor.DARK_GREEN + "/disguiseradius <EntityType" + optional + "> <Radius> <DisguiseType> <Baby" + optional + ">").replace(
|
|
|
|
"<", "<" + ChatColor.GREEN).replace(">", ChatColor.DARK_GREEN + ">")));
|
2017-02-19 16:56:14 +01:00
|
|
|
|
|
|
|
if (allowedDisguises.contains("dropped_item") || allowedDisguises.contains("falling_block")) {
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(TranslateType.MESSAGE.get(
|
|
|
|
(ChatColor.DARK_GREEN + "/disguiseradius <EntityType" + optional + "> <Radius> <Dropped_Item/Falling_Block> <Id> <Durability" + optional + ">").replace(
|
|
|
|
"<", "<" + ChatColor.GREEN).replace(">", ChatColor.DARK_GREEN + ">")));
|
2017-02-19 16:56:14 +01:00
|
|
|
}
|
|
|
|
|
2017-06-19 11:23:02 +02:00
|
|
|
sender.sendMessage(TranslateType.MESSAGE.get(
|
|
|
|
ChatColor.DARK_GREEN + "See the EntityType's usable by " + ChatColor.GREEN + "/disguiseradius " + "EntityTypes"));
|
2017-02-19 16:56:14 +01:00
|
|
|
}
|
|
|
|
}
|