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;
|
2018-10-25 15:03:00 +02:00
|
|
|
import me.libraryaddict.disguise.utilities.DisguiseUtilities;
|
2019-02-18 06:52:54 +01:00
|
|
|
import me.libraryaddict.disguise.utilities.parser.DisguiseParseException;
|
|
|
|
import me.libraryaddict.disguise.utilities.parser.DisguiseParser;
|
|
|
|
import me.libraryaddict.disguise.utilities.parser.DisguisePermissions;
|
2019-02-03 01:45:42 +01:00
|
|
|
import me.libraryaddict.disguise.utilities.translations.LibsMsg;
|
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;
|
|
|
|
|
2018-09-07 04:35:38 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.UUID;
|
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) {
|
2018-10-23 23:13:13 +02:00
|
|
|
DisguisePermissions permissions = getPermissions(sender);
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2018-10-23 23:13:13 +02:00
|
|
|
if (!permissions.hasPermissions()) {
|
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) {
|
2018-10-23 23:13:13 +02:00
|
|
|
sendCommandUsage(sender, permissions);
|
2016-06-18 17:16:32 +02:00
|
|
|
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
|
|
|
|
2019-03-05 05:46:47 +01:00
|
|
|
Entity entityTarget = Bukkit.getPlayer(args[0]);
|
2017-10-07 04:12:55 +02:00
|
|
|
|
2019-03-05 05:46:47 +01:00
|
|
|
if (entityTarget == null) {
|
2017-10-07 04:12:55 +02:00
|
|
|
if (args[0].contains("-")) {
|
|
|
|
try {
|
2019-03-05 05:46:47 +01:00
|
|
|
entityTarget = Bukkit.getEntity(UUID.fromString(args[0]));
|
2017-10-07 04:12:55 +02:00
|
|
|
}
|
|
|
|
catch (Exception ignored) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2019-03-05 05:46:47 +01:00
|
|
|
if (entityTarget == 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) {
|
2018-10-23 23:13:13 +02:00
|
|
|
sendCommandUsage(sender, permissions);
|
2016-11-30 18:38:43 +01:00
|
|
|
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 {
|
2019-03-05 05:46:47 +01:00
|
|
|
disguise = DisguiseParser.parseDisguise(sender, entityTarget, getPermNode(),
|
|
|
|
DisguiseUtilities.split(StringUtils.join(newArgs, " ")), permissions);
|
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) {
|
2019-03-05 05:46:47 +01:00
|
|
|
disguise.getWatcher().setCustomName(getDisplayName(entityTarget));
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (DisguiseConfig.isNameAboveHeadAlwaysVisible()) {
|
2016-06-18 17:16:32 +02:00
|
|
|
disguise.getWatcher().setCustomNameVisible(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-05 05:46:47 +01:00
|
|
|
|
|
|
|
disguise.setEntity(entityTarget);
|
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()) {
|
2019-03-05 05:46:47 +01:00
|
|
|
sender.sendMessage(LibsMsg.DISG_PLAYER_AS_DISG.get(entityTarget instanceof Player ? entityTarget.getName() :
|
|
|
|
DisguiseType.getType(entityTarget).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
|
2019-03-05 05:46:47 +01:00
|
|
|
.get(entityTarget instanceof Player ? entityTarget.getName() :
|
|
|
|
DisguiseType.getType(entityTarget).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<>();
|
2019-02-18 06:52:54 +01:00
|
|
|
String[] args = getPreviousArgs(origArgs);
|
2016-11-28 15:01:06 +01:00
|
|
|
|
2018-10-23 23:13:13 +02:00
|
|
|
DisguisePermissions perms = getPermissions(sender);
|
2016-11-28 15:01:06 +01:00
|
|
|
|
|
|
|
if (args.length == 0) {
|
|
|
|
for (Player player : Bukkit.getOnlinePlayers()) {
|
2019-02-03 01:45:42 +01:00
|
|
|
// If command user cannot see player online, don't tab-complete name
|
|
|
|
if (sender instanceof Player && !((Player) sender).canSee(player)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-11-28 15:01:06 +01:00
|
|
|
tabs.add(player.getName());
|
|
|
|
}
|
2017-06-19 11:23:02 +02:00
|
|
|
} else {
|
2019-02-18 06:52:54 +01:00
|
|
|
tabs.addAll(getTabDisguiseTypes(sender, perms, args, 1, getCurrentArg(origArgs)));
|
2016-11-28 15:01:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return filterTabs(tabs, origArgs);
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:16:32 +02:00
|
|
|
/**
|
|
|
|
* Send the player the information
|
|
|
|
*/
|
|
|
|
@Override
|
2018-10-23 23:13:13 +02:00
|
|
|
protected void sendCommandUsage(CommandSender sender, DisguisePermissions permissions) {
|
|
|
|
ArrayList<String> allowedDisguises = getAllowedDisguises(permissions);
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|