diff --git a/src/main/java/me/libraryaddict/disguise/disguisetypes/watchers/DroppedItemWatcher.java b/src/main/java/me/libraryaddict/disguise/disguisetypes/watchers/DroppedItemWatcher.java index 11c32a7d..33ff7d98 100644 --- a/src/main/java/me/libraryaddict/disguise/disguisetypes/watchers/DroppedItemWatcher.java +++ b/src/main/java/me/libraryaddict/disguise/disguisetypes/watchers/DroppedItemWatcher.java @@ -24,8 +24,8 @@ public class DroppedItemWatcher extends FlagWatcher { if (!getDisguise().isCustomDisguiseName()) { getDisguise().setDisguiseName(TranslateType.DISGUISES.get(DisguiseType.DROPPED_ITEM.toReadable()) + " " + - TranslateType.DISGUISE_OPTIONS_PARAMETERS - .get(ReflectionManager.toReadable((item == null ? Material.AIR : item.getType()).name()))); + TranslateType.DISGUISE_OPTIONS_PARAMETERS.get(ReflectionManager + .toReadable((item == null ? Material.AIR : item.getType()).name(), " "))); } } } diff --git a/src/main/java/me/libraryaddict/disguise/disguisetypes/watchers/FallingBlockWatcher.java b/src/main/java/me/libraryaddict/disguise/disguisetypes/watchers/FallingBlockWatcher.java index 27d1a291..f20b8631 100644 --- a/src/main/java/me/libraryaddict/disguise/disguisetypes/watchers/FallingBlockWatcher.java +++ b/src/main/java/me/libraryaddict/disguise/disguisetypes/watchers/FallingBlockWatcher.java @@ -75,8 +75,7 @@ public class FallingBlockWatcher extends FlagWatcher { ProtocolLibrary.getProtocolManager().sendServerPacket(player, relMove, isGridLocked()); } } - } - catch (InvocationTargetException e) { + } catch (InvocationTargetException e) { e.printStackTrace(); } } @@ -100,7 +99,7 @@ public class FallingBlockWatcher extends FlagWatcher { if (!getDisguise().isCustomDisguiseName()) { getDisguise().setDisguiseName(TranslateType.DISGUISE_OPTIONS_PARAMETERS.get("Block") + " " + TranslateType.DISGUISE_OPTIONS_PARAMETERS - .get(ReflectionManager.toReadable(block.getType().name()))); + .get(ReflectionManager.toReadable(block.getType().name(), " "))); } if (DisguiseAPI.isDisguiseInUse(getDisguise()) && getDisguise().getWatcher() == this) { @@ -130,7 +129,7 @@ public class FallingBlockWatcher extends FlagWatcher { if (!getDisguise().isCustomDisguiseName()) { getDisguise().setDisguiseName(TranslateType.DISGUISE_OPTIONS_PARAMETERS.get("Block") + " " + TranslateType.DISGUISE_OPTIONS_PARAMETERS - .get(ReflectionManager.toReadable(block.getType().name()))); + .get(ReflectionManager.toReadable(block.getType().name(), " "))); } if (DisguiseAPI.isDisguiseInUse(getDisguise()) && getDisguise().getWatcher() == this) { diff --git a/src/main/java/me/libraryaddict/disguise/utilities/parser/DisguiseParser.java b/src/main/java/me/libraryaddict/disguise/utilities/parser/DisguiseParser.java index f7322567..6b928686 100644 --- a/src/main/java/me/libraryaddict/disguise/utilities/parser/DisguiseParser.java +++ b/src/main/java/me/libraryaddict/disguise/utilities/parser/DisguiseParser.java @@ -114,8 +114,7 @@ public class DisguiseParser { addWatcherDefault(setMethod, getMethod, defaultValue); } } - } - catch (InstantiationException | IllegalAccessException | InvocationTargetException | NoSuchMethodException e) { + } catch (InstantiationException | IllegalAccessException | InvocationTargetException | NoSuchMethodException e) { e.printStackTrace(); } } @@ -224,8 +223,7 @@ public class DisguiseParser { } return stringBuilder.toString(); - } - catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) { + } catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) { e.printStackTrace(); } @@ -252,7 +250,7 @@ public class DisguiseParser { } private static void doCheck(CommandSender sender, DisguisePermissions permissions, DisguisePerm disguisePerm, - Collection usedOptions) throws DisguiseParseException { + Collection usedOptions) throws DisguiseParseException { if (!permissions.isAllowedDisguise(disguisePerm, usedOptions)) { throw new DisguiseParseException(LibsMsg.D_PARSE_NOPERM, @@ -261,7 +259,7 @@ public class DisguiseParser { } private static HashMap> getDisguiseOptions(CommandSender sender, String permNode, - DisguisePerm type) { + DisguisePerm type) { HashMap> returns = new HashMap<>(); // libsdisguises.options.... @@ -318,14 +316,16 @@ public class DisguiseParser { public static DisguisePerm getDisguisePerm(String name) { for (DisguisePerm perm : getDisguisePerms()) { - if (!perm.toReadable().replaceAll("[ |_]", "").equalsIgnoreCase(name.replaceAll("[ |_]", ""))) + if (!perm.toReadable().replaceAll("[ |_]", "").equalsIgnoreCase(name.replaceAll("[ |_]", ""))) { continue; + } return perm; } - if (name.equalsIgnoreCase("p")) + if (name.equalsIgnoreCase("p")) { return getDisguisePerm(DisguiseType.PLAYER.toReadable()); + } return null; } @@ -361,8 +361,7 @@ public class DisguiseParser { try { Float.parseFloat(string); return true; - } - catch (Exception ex) { + } catch (Exception ex) { return false; } } @@ -371,8 +370,7 @@ public class DisguiseParser { try { Integer.parseInt(string); return true; - } - catch (Exception ex) { + } catch (Exception ex) { return false; } } @@ -383,7 +381,7 @@ public class DisguiseParser { * Returns if command user can access the disguise creation permission type */ private static boolean hasPermissionOption(HashMap> disguiseOptions, String method, - String value) { + String value) { method = method.toLowerCase(); // If no permissions were defined, return true @@ -449,14 +447,14 @@ public class DisguiseParser { } public static String[] parsePlaceholders(String[] args, String userName, String userSkin, String targetName, - String targetSkin, EntityEquipment equip, EntityEquipment targetEquip) { + String targetSkin, EntityEquipment equip, EntityEquipment targetEquip) { return parsePlaceholders(args, userName, userName, userSkin, targetName, targetName, targetSkin, equip, targetEquip); } public static String[] parsePlaceholders(String[] args, String userName, String userDisplayname, String userSkin, - String targetName, String targetDisplayname, String targetSkin, EntityEquipment equip, - EntityEquipment targetEquip) { + String targetName, String targetDisplayname, String targetSkin, + EntityEquipment equip, EntityEquipment targetEquip) { for (int i = 0; i < args.length; i++) { String arg = args[i]; @@ -580,8 +578,8 @@ public class DisguiseParser { * @throws InvocationTargetException */ public static Disguise parseTestDisguise(CommandSender sender, String permNode, String[] args, - DisguisePermissions permissions) throws DisguiseParseException, IllegalAccessException, - InvocationTargetException { + DisguisePermissions permissions) + throws DisguiseParseException, IllegalAccessException, InvocationTargetException { // Clone array so original array isn't modified args = Arrays.copyOf(args, args.length); @@ -594,8 +592,8 @@ public class DisguiseParser { return parseDisguise(sender, null, permNode, args, permissions); } - public static void modifyDisguise(Disguise disguise, Entity target, - String[] params) throws IllegalAccessException, DisguiseParseException, InvocationTargetException { + public static void modifyDisguise(Disguise disguise, Entity target, String[] params) + throws IllegalAccessException, DisguiseParseException, InvocationTargetException { if (target != null) { params = DisguiseParser.parsePlaceholders(params, target, target); } @@ -605,28 +603,28 @@ public class DisguiseParser { new ArrayList<>(), params, "Disguise"); } - public static void modifyDisguise(Disguise disguise, - String[] params) throws IllegalAccessException, InvocationTargetException, DisguiseParseException { + public static void modifyDisguise(Disguise disguise, String[] params) + throws IllegalAccessException, InvocationTargetException, DisguiseParseException { modifyDisguise(disguise, null, params); } - public static void modifyDisguise(Disguise disguise, - String params) throws IllegalAccessException, DisguiseParseException, InvocationTargetException { + public static void modifyDisguise(Disguise disguise, String params) + throws IllegalAccessException, DisguiseParseException, InvocationTargetException { modifyDisguise(disguise, DisguiseUtilities.split(params)); } - public static void modifyDisguise(Disguise disguise, Entity target, - String params) throws IllegalAccessException, InvocationTargetException, DisguiseParseException { + public static void modifyDisguise(Disguise disguise, Entity target, String params) + throws IllegalAccessException, InvocationTargetException, DisguiseParseException { modifyDisguise(disguise, target, DisguiseUtilities.split(params)); } - public static Disguise parseDisguise( - String disguise) throws IllegalAccessException, InvocationTargetException, DisguiseParseException { + public static Disguise parseDisguise(String disguise) + throws IllegalAccessException, InvocationTargetException, DisguiseParseException { return parseDisguise(Bukkit.getConsoleSender(), null, disguise); } - public static Disguise parseDisguise(CommandSender sender, Entity target, - String disguise) throws IllegalAccessException, InvocationTargetException, DisguiseParseException { + public static Disguise parseDisguise(CommandSender sender, Entity target, String disguise) + throws IllegalAccessException, InvocationTargetException, DisguiseParseException { return parseDisguise(sender, target, "disguise", DisguiseUtilities.split(disguise), new DisguisePermissions(Bukkit.getConsoleSender(), "disguise")); } @@ -638,11 +636,10 @@ public class DisguiseParser { * disguise has been feed a proper disguisetype. */ public static Disguise parseDisguise(CommandSender sender, Entity target, String permNode, String[] args, - DisguisePermissions permissions) throws DisguiseParseException, IllegalAccessException, - InvocationTargetException { + DisguisePermissions permissions) + throws DisguiseParseException, IllegalAccessException, InvocationTargetException { if (!Bukkit.isPrimaryThread()) { - throw new IllegalStateException( - "DisguiseParser should not be called async!"); + throw new IllegalStateException("DisguiseParser should not be called async!"); } if (sender instanceof Player) { @@ -735,8 +732,8 @@ public class DisguiseParser { throw new DisguiseParseException(LibsMsg.NO_PERM_DISGUISE); } - HashMap> disguiseOptions = getDisguiseOptions(sender, permNode, - disguisePerm); + HashMap> disguiseOptions = + getDisguiseOptions(sender, permNode, disguisePerm); if (disguise == null) { if (disguisePerm.isPlayer()) { @@ -804,8 +801,8 @@ public class DisguiseParser { if (disguisePerm.getType() == DisguiseType.FALLING_BLOCK) { if (NmsVersion.v1_13.isSupported()) { info = ParamInfoManager.getParamInfo(BlockData.class); - blockData = info - .fromString(new ArrayList<>(Collections.singletonList(args[1]))); + blockData = info.fromString( + new ArrayList<>(Collections.singletonList(args[1]))); } else { info = ParamInfoManager.getParamInfoItemBlock(); @@ -818,8 +815,7 @@ public class DisguiseParser { itemStack = (ItemStack) info .fromString(new ArrayList<>(Collections.singletonList(args[1]))); } - } - catch (Exception ex) { + } catch (Exception ex) { break; } @@ -877,13 +873,13 @@ public class DisguiseParser { disguisePerm.getType() == DisguiseType.FALLING_BLOCK) { disguise = new MiscDisguise(disguisePerm.getType(), itemStack); - if (!customName) { - name = disguise.getDisguiseName(); - } - if (blockData != null && disguisePerm.getType() == DisguiseType.FALLING_BLOCK) { ((FallingBlockWatcher) disguise.getWatcher()).setBlockData((BlockData) blockData); } + + if (!customName) { + name = disguise.getDisguiseName(); + } } else { disguise = new MiscDisguise(disguisePerm.getType(), miscId); } @@ -905,9 +901,9 @@ public class DisguiseParser { } public static void callMethods(CommandSender sender, Disguise disguise, DisguisePermissions disguisePermission, - DisguisePerm disguisePerm, Collection usedOptions, String[] args, - String permNode) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, - DisguiseParseException { + DisguisePerm disguisePerm, Collection usedOptions, String[] args, + String permNode) + throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, DisguiseParseException { Method[] methods = ParamInfoManager.getDisguiseWatcherMethods(disguise.getWatcher().getClass()); List list = new ArrayList<>(Arrays.asList(args)); HashMap> disguiseOptions = getDisguiseOptions(sender, permNode, disguisePerm); @@ -950,14 +946,13 @@ public class DisguiseParser { methodToUse = method; // We've found a method which will accept a valid value, break break; - } - catch (DisguiseParseException ex) { + } catch (DisguiseParseException ex) { parseException = ex; - } - catch (Exception ignored) { - parseException = new DisguiseParseException(LibsMsg.PARSE_EXPECTED_RECEIVED, - paramInfo.getDescriptiveName(), list.isEmpty() ? null : list.get(0), - TranslateType.DISGUISE_OPTIONS.reverseGet(method.getName())); + } catch (Exception ignored) { + parseException = + new DisguiseParseException(LibsMsg.PARSE_EXPECTED_RECEIVED, paramInfo.getDescriptiveName(), + list.isEmpty() ? null : list.get(0), + TranslateType.DISGUISE_OPTIONS.reverseGet(method.getName())); } } diff --git a/src/main/java/me/libraryaddict/disguise/utilities/reflection/ReflectionManager.java b/src/main/java/me/libraryaddict/disguise/utilities/reflection/ReflectionManager.java index 39161606..76c53f5b 100644 --- a/src/main/java/me/libraryaddict/disguise/utilities/reflection/ReflectionManager.java +++ b/src/main/java/me/libraryaddict/disguise/utilities/reflection/ReflectionManager.java @@ -1965,6 +1965,10 @@ public class ReflectionManager { } public static String toReadable(String string) { - return StringUtils.join(splitReadable(string)); + return toReadable(string, ""); + } + + public static String toReadable(String string, String joiner) { + return StringUtils.join(splitReadable(string), joiner); } }