2016-06-18 17:16:32 +02:00
|
|
|
package me.libraryaddict.disguise.commands;
|
|
|
|
|
|
|
|
import me.libraryaddict.disguise.DisguiseAPI;
|
|
|
|
import me.libraryaddict.disguise.DisguiseConfig;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.Disguise;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.DisguiseType;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.watchers.LivingWatcher;
|
2016-11-30 18:38:43 +01:00
|
|
|
import me.libraryaddict.disguise.utilities.DisguiseParser;
|
|
|
|
import me.libraryaddict.disguise.utilities.DisguiseParser.DisguiseParseException;
|
|
|
|
import me.libraryaddict.disguise.utilities.DisguiseParser.DisguisePerm;
|
2017-06-19 19:06:35 +02:00
|
|
|
import me.libraryaddict.disguise.utilities.LibsMsg;
|
2016-11-28 15:01:06 +01:00
|
|
|
import me.libraryaddict.disguise.utilities.ReflectionFlagWatchers;
|
|
|
|
import me.libraryaddict.disguise.utilities.ReflectionFlagWatchers.ParamInfo;
|
2017-06-19 11:23:02 +02:00
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.command.TabCompleter;
|
2017-10-07 04:12:55 +02:00
|
|
|
import org.bukkit.entity.Entity;
|
2017-06-19 11:23:02 +02:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
|
|
import java.lang.reflect.Method;
|
2017-10-07 04:12:55 +02:00
|
|
|
import java.util.*;
|
2016-06-18 17:16:32 +02:00
|
|
|
|
2016-11-28 22:47:48 +01:00
|
|
|
public class DisguisePlayerCommand extends DisguiseBaseCommand implements TabCompleter {
|
2016-06-18 17:16:32 +02:00
|
|
|
|
|
|
|
@Override
|
2016-11-28 15:01:06 +01:00
|
|
|
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
|
2016-11-30 18:38:43 +01:00
|
|
|
HashMap<DisguisePerm, HashMap<ArrayList<String>, Boolean>> map = getPermissions(sender);
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (map.isEmpty()) {
|
2017-06-19 19:06:35 +02:00
|
|
|
sender.sendMessage(LibsMsg.NO_PERM.get());
|
2016-06-18 17:16:32 +02:00
|
|
|
return true;
|
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (args.length == 0) {
|
2016-06-18 17:16:32 +02:00
|
|
|
sendCommandUsage(sender, map);
|
|
|
|
return true;
|
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (args.length == 1) {
|
2017-06-19 19:06:35 +02:00
|
|
|
sender.sendMessage(LibsMsg.DPLAYER_SUPPLY.get());
|
2016-06-18 17:16:32 +02:00
|
|
|
return true;
|
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2017-10-07 04:12:55 +02:00
|
|
|
Entity player = Bukkit.getPlayer(args[0]);
|
|
|
|
|
|
|
|
if (player == null) {
|
|
|
|
if (args[0].contains("-")) {
|
|
|
|
try {
|
|
|
|
player = Bukkit.getEntity(UUID.fromString(args[0]));
|
|
|
|
}
|
|
|
|
catch (Exception ignored) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (player == null) {
|
2017-06-19 19:06:35 +02:00
|
|
|
sender.sendMessage(LibsMsg.CANNOT_FIND_PLAYER.get(args[0]));
|
2016-06-18 17:16:32 +02:00
|
|
|
return true;
|
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2016-06-18 17:16:32 +02:00
|
|
|
String[] newArgs = new String[args.length - 1];
|
|
|
|
System.arraycopy(args, 1, newArgs, 0, newArgs.length);
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2016-11-30 18:38:43 +01:00
|
|
|
if (newArgs.length == 0) {
|
|
|
|
sendCommandUsage(sender, map);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:16:32 +02:00
|
|
|
Disguise disguise;
|
2016-11-30 18:38:43 +01:00
|
|
|
|
2016-11-28 15:01:06 +01:00
|
|
|
try {
|
2018-02-14 06:49:10 +01:00
|
|
|
disguise = DisguiseParser
|
|
|
|
.parseDisguise(sender, getPermNode(), DisguiseParser.split(StringUtils.join(newArgs, " ")), map);
|
2016-06-18 17:16:32 +02:00
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
catch (DisguiseParseException ex) {
|
|
|
|
if (ex.getMessage() != null) {
|
2016-06-18 17:16:32 +02:00
|
|
|
sender.sendMessage(ex.getMessage());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
catch (Exception ex) {
|
2016-06-18 17:16:32 +02:00
|
|
|
ex.printStackTrace();
|
|
|
|
return true;
|
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (disguise.isMiscDisguise() && !DisguiseConfig.isMiscDisguisesForLivingEnabled()) {
|
2017-06-19 19:06:35 +02:00
|
|
|
sender.sendMessage(LibsMsg.DISABLED_LIVING_TO_MISC.get());
|
2016-06-18 17:16:32 +02:00
|
|
|
return true;
|
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (DisguiseConfig.isNameOfPlayerShownAboveDisguise()) {
|
|
|
|
if (disguise.getWatcher() instanceof LivingWatcher) {
|
2017-08-06 18:06:40 +02:00
|
|
|
disguise.getWatcher().setCustomName(getDisplayName(player));
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (DisguiseConfig.isNameAboveHeadAlwaysVisible()) {
|
2016-06-18 17:16:32 +02:00
|
|
|
disguise.getWatcher().setCustomNameVisible(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-14 06:49:10 +01:00
|
|
|
disguise.setEntity(player);
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2018-02-14 06:49:10 +01:00
|
|
|
if (!setViewDisguise(args)) {
|
|
|
|
// They prefer to have the opposite of whatever the view disguises option is
|
|
|
|
if (DisguiseAPI.hasSelfDisguisePreference(disguise.getEntity()) &&
|
|
|
|
disguise.isSelfDisguiseVisible() == DisguiseConfig.isViewDisguises())
|
|
|
|
disguise.setViewSelfDisguise(!disguise.isSelfDisguiseVisible());
|
|
|
|
}
|
|
|
|
|
|
|
|
disguise.startDisguise();
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (disguise.isDisguiseInUse()) {
|
2017-10-07 04:12:55 +02:00
|
|
|
sender.sendMessage(LibsMsg.DISG_PLAYER_AS_DISG
|
|
|
|
.get(player instanceof Player ? player.getName() : DisguiseType.getType(player).toReadable(),
|
|
|
|
disguise.getType().toReadable()));
|
2017-06-19 11:23:02 +02:00
|
|
|
} else {
|
2017-10-07 04:12:55 +02:00
|
|
|
sender.sendMessage(LibsMsg.DISG_PLAYER_AS_DISG_FAIL
|
|
|
|
.get(player instanceof Player ? player.getName() : DisguiseType.getType(player).toReadable(),
|
|
|
|
disguise.getType().toReadable()));
|
2016-06-18 17:16:32 +02:00
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2016-06-18 17:16:32 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-14 06:49:10 +01:00
|
|
|
private boolean setViewDisguise(String[] strings) {
|
|
|
|
for (String string : strings) {
|
|
|
|
if (!string.equalsIgnoreCase("setViewSelfDisguise"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-28 15:01:06 +01:00
|
|
|
@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<>();
|
2016-11-28 15:01:06 +01:00
|
|
|
String[] args = getArgs(origArgs);
|
|
|
|
|
2016-11-30 18:38:43 +01:00
|
|
|
HashMap<DisguisePerm, HashMap<ArrayList<String>, Boolean>> perms = getPermissions(sender);
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (args.length == 0) {
|
|
|
|
for (Player player : Bukkit.getOnlinePlayers()) {
|
|
|
|
tabs.add(player.getName());
|
|
|
|
}
|
2017-06-19 11:23:02 +02:00
|
|
|
} else if (args.length == 1) {
|
|
|
|
tabs.addAll(getAllowedDisguises(perms));
|
|
|
|
} else {
|
2016-11-30 18:38:43 +01:00
|
|
|
DisguisePerm disguiseType = DisguiseParser.getDisguisePerm(args[1]);
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2016-11-30 18:38:43 +01:00
|
|
|
if (disguiseType == null)
|
2016-11-28 15:01:06 +01:00
|
|
|
return filterTabs(tabs, origArgs);
|
|
|
|
|
2016-11-30 18:38:43 +01:00
|
|
|
if (args.length == 2 && disguiseType.getType() == DisguiseType.PLAYER) {
|
2016-11-28 15:01:06 +01:00
|
|
|
for (Player player : Bukkit.getOnlinePlayers()) {
|
|
|
|
tabs.add(player.getName());
|
|
|
|
}
|
2017-06-19 11:23:02 +02:00
|
|
|
} else {
|
|
|
|
ArrayList<String> usedOptions = new ArrayList<>();
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
for (Method method : ReflectionFlagWatchers.getDisguiseWatcherMethods(disguiseType.getWatcherClass())) {
|
2016-11-30 18:38:43 +01:00
|
|
|
for (int i = disguiseType.getType() == DisguiseType.PLAYER ? 3 : 2; i < args.length; i++) {
|
2016-11-28 15:01:06 +01:00
|
|
|
String arg = args[i];
|
|
|
|
|
|
|
|
if (!method.getName().equalsIgnoreCase(arg))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
usedOptions.add(arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-30 18:56:11 +01:00
|
|
|
if (passesCheck(sender, perms.get(disguiseType), usedOptions)) {
|
2016-11-28 15:01:06 +01:00
|
|
|
boolean addMethods = true;
|
|
|
|
|
|
|
|
if (args.length > 2) {
|
|
|
|
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()) {
|
2017-06-19 11:23:02 +02:00
|
|
|
tabs.addAll(Arrays.asList(info.getEnums(origArgs[origArgs.length - 1])));
|
|
|
|
} else {
|
2016-11-28 15:01:06 +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 19:06:35 +02:00
|
|
|
for (Method method : ReflectionFlagWatchers
|
|
|
|
.getDisguiseWatcherMethods(disguiseType.getWatcherClass())) {
|
2016-11-28 15:01:06 +01:00
|
|
|
tabs.add(method.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return filterTabs(tabs, origArgs);
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:16:32 +02:00
|
|
|
/**
|
|
|
|
* 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) {
|
2016-06-18 17:16:32 +02:00
|
|
|
ArrayList<String> allowedDisguises = getAllowedDisguises(map);
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2017-06-19 19:06:35 +02:00
|
|
|
sender.sendMessage(LibsMsg.D_HELP1.get());
|
2017-06-19 19:19:46 +02:00
|
|
|
sender.sendMessage(LibsMsg.CAN_USE_DISGS
|
2017-06-19 19:06:35 +02:00
|
|
|
.get(ChatColor.GREEN + StringUtils.join(allowedDisguises, ChatColor.RED + ", " + ChatColor.GREEN)));
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (allowedDisguises.contains("player")) {
|
2017-06-19 19:06:35 +02:00
|
|
|
sender.sendMessage(LibsMsg.D_HELP3.get());
|
2016-06-18 17:16:32 +02:00
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2017-06-19 19:06:35 +02:00
|
|
|
sender.sendMessage(LibsMsg.D_HELP4.get());
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (allowedDisguises.contains("dropped_item") || allowedDisguises.contains("falling_block")) {
|
2017-06-19 19:06:35 +02:00
|
|
|
sender.sendMessage(LibsMsg.D_HELP5.get());
|
2016-06-18 17:16:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|