Added a way to selectively disguise only certain entities with disguise radius. Also changed the coloring of the help
This commit is contained in:
parent
92172f91af
commit
71f15dff77
@ -1,12 +1,14 @@
|
|||||||
package me.libraryaddict.disguise.commands;
|
package me.libraryaddict.disguise.commands;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
|
||||||
import me.libraryaddict.disguise.DisguiseAPI;
|
import me.libraryaddict.disguise.DisguiseAPI;
|
||||||
import me.libraryaddict.disguise.DisguiseConfig;
|
import me.libraryaddict.disguise.DisguiseConfig;
|
||||||
import me.libraryaddict.disguise.disguisetypes.Disguise;
|
import me.libraryaddict.disguise.disguisetypes.Disguise;
|
||||||
import me.libraryaddict.disguise.disguisetypes.watchers.LivingWatcher;
|
import me.libraryaddict.disguise.disguisetypes.watchers.LivingWatcher;
|
||||||
import me.libraryaddict.disguise.utilities.BaseDisguiseCommand;
|
import me.libraryaddict.disguise.utilities.BaseDisguiseCommand;
|
||||||
|
import me.libraryaddict.disguise.utilities.ClassGetter;
|
||||||
|
|
||||||
import org.apache.commons.lang.StringUtils;
|
import org.apache.commons.lang.StringUtils;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
@ -18,9 +20,15 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
public class DisguiseRadiusCommand extends BaseDisguiseCommand {
|
public class DisguiseRadiusCommand extends BaseDisguiseCommand {
|
||||||
private int maxRadius = 30;
|
private int maxRadius = 30;
|
||||||
|
private ArrayList<Class> validClasses = new ArrayList<Class>();
|
||||||
|
|
||||||
public DisguiseRadiusCommand(int maxRadius) {
|
public DisguiseRadiusCommand(int maxRadius) {
|
||||||
this.maxRadius = maxRadius;
|
this.maxRadius = maxRadius;
|
||||||
|
for (Class c : ClassGetter.getClassesForPackage("org.bukkit.entity")) {
|
||||||
|
if (c.getAnnotation(Deprecated.class) == null && Entity.class.isAssignableFrom(c)) {
|
||||||
|
validClasses.add(c);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -38,22 +46,49 @@ public class DisguiseRadiusCommand extends BaseDisguiseCommand {
|
|||||||
sendCommandUsage(sender);
|
sendCommandUsage(sender);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (args.length == 1) {
|
if (args[0].equalsIgnoreCase("entitytypes")) {
|
||||||
sender.sendMessage(ChatColor.RED + "You need to supply a disguise as well as the radius");
|
ArrayList<String> classes = new ArrayList<String>();
|
||||||
|
for (Class c : validClasses) {
|
||||||
|
classes.add(c.getSimpleName());
|
||||||
|
}
|
||||||
|
Collections.sort(classes);
|
||||||
|
sender.sendMessage(ChatColor.DARK_GREEN + "EntityTypes usable are: " + ChatColor.GREEN
|
||||||
|
+ StringUtils.join(classes, ChatColor.DARK_GREEN + ", " + ChatColor.GREEN) + ChatColor.DARK_GREEN + ".");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (!isNumeric(args[0])) {
|
Class entityClass = Entity.class;
|
||||||
sender.sendMessage(ChatColor.RED + args[0] + " is not a number");
|
int starting = 0;
|
||||||
|
try {
|
||||||
|
for (Class c : validClasses) {
|
||||||
|
if (c.getSimpleName().equalsIgnoreCase(args[0])) {
|
||||||
|
entityClass = c;
|
||||||
|
starting = 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception ex) {
|
||||||
|
}
|
||||||
|
if (starting == 0 && !isNumeric(args[0])) {
|
||||||
|
sender.sendMessage(ChatColor.RED + "Unrecognised EntityType " + args[0]);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
int radius = Integer.parseInt(args[0]);
|
if (args.length == starting + 1) {
|
||||||
|
sender.sendMessage(ChatColor.RED + "You need to supply a disguise as well as the radius"
|
||||||
|
+ (starting != 0 ? " and EntityType" : ""));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (!isNumeric(args[starting])) {
|
||||||
|
sender.sendMessage(ChatColor.RED + args[starting] + " is not a number");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
int radius = Integer.parseInt(args[starting]);
|
||||||
if (radius > maxRadius) {
|
if (radius > maxRadius) {
|
||||||
sender.sendMessage(ChatColor.RED + "Limited radius to " + maxRadius + "! Don't want to make too much lag right?");
|
sender.sendMessage(ChatColor.RED + "Limited radius to " + maxRadius + "! Don't want to make too much lag right?");
|
||||||
radius = maxRadius;
|
radius = maxRadius;
|
||||||
}
|
}
|
||||||
String[] newArgs = new String[args.length - 1];
|
String[] newArgs = new String[args.length - (starting + 1)];
|
||||||
for (int i = 0; i < newArgs.length; i++) {
|
for (int i = 0; i < newArgs.length; i++) {
|
||||||
newArgs[i] = args[i + 1];
|
newArgs[i] = args[i + (starting + 1)];
|
||||||
}
|
}
|
||||||
Disguise disguise;
|
Disguise disguise;
|
||||||
try {
|
try {
|
||||||
@ -71,21 +106,24 @@ public class DisguiseRadiusCommand extends BaseDisguiseCommand {
|
|||||||
for (Entity entity : ((Player) sender).getNearbyEntities(radius, radius, radius)) {
|
for (Entity entity : ((Player) sender).getNearbyEntities(radius, radius, radius)) {
|
||||||
if (entity == sender)
|
if (entity == sender)
|
||||||
continue;
|
continue;
|
||||||
if (disguise.isMiscDisguise() && !DisguiseConfig.isMiscDisguisesForLivingEnabled() && entity instanceof LivingEntity) {
|
if (entityClass.isAssignableFrom(entity.getClass())) {
|
||||||
miscDisguises++;
|
if (disguise.isMiscDisguise() && !DisguiseConfig.isMiscDisguisesForLivingEnabled()
|
||||||
continue;
|
&& entity instanceof LivingEntity) {
|
||||||
}
|
miscDisguises++;
|
||||||
disguise = disguise.clone();
|
continue;
|
||||||
if (entity instanceof Player && DisguiseConfig.isNameOfPlayerShownAboveDisguise()) {
|
}
|
||||||
if (disguise.getWatcher() instanceof LivingWatcher) {
|
disguise = disguise.clone();
|
||||||
((LivingWatcher) disguise.getWatcher()).setCustomName(((Player) entity).getDisplayName());
|
if (entity instanceof Player && DisguiseConfig.isNameOfPlayerShownAboveDisguise()) {
|
||||||
if (DisguiseConfig.isNameAboveHeadAlwaysVisible()) {
|
if (disguise.getWatcher() instanceof LivingWatcher) {
|
||||||
((LivingWatcher) disguise.getWatcher()).setCustomNameVisible(true);
|
((LivingWatcher) disguise.getWatcher()).setCustomName(((Player) entity).getDisplayName());
|
||||||
|
if (DisguiseConfig.isNameAboveHeadAlwaysVisible()) {
|
||||||
|
((LivingWatcher) disguise.getWatcher()).setCustomNameVisible(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
DisguiseAPI.disguiseToAll(entity, disguise);
|
||||||
|
disguisedEntitys++;
|
||||||
}
|
}
|
||||||
DisguiseAPI.disguiseToAll(entity, disguise);
|
|
||||||
disguisedEntitys++;
|
|
||||||
}
|
}
|
||||||
if (disguisedEntitys > 0) {
|
if (disguisedEntitys > 0) {
|
||||||
sender.sendMessage(ChatColor.RED + "Successfully disguised " + disguisedEntitys + " entities!");
|
sender.sendMessage(ChatColor.RED + "Successfully disguised " + disguisedEntitys + " entities!");
|
||||||
@ -107,10 +145,20 @@ public class DisguiseRadiusCommand extends BaseDisguiseCommand {
|
|||||||
sender.sendMessage(ChatColor.DARK_GREEN + "Disguise all entities in a radius! Caps at 30 blocks!");
|
sender.sendMessage(ChatColor.DARK_GREEN + "Disguise all entities in a radius! Caps at 30 blocks!");
|
||||||
sender.sendMessage(ChatColor.DARK_GREEN + "You can use the disguises: " + ChatColor.GREEN
|
sender.sendMessage(ChatColor.DARK_GREEN + "You can use the disguises: " + ChatColor.GREEN
|
||||||
+ StringUtils.join(allowedDisguises, ChatColor.RED + ", " + ChatColor.GREEN));
|
+ StringUtils.join(allowedDisguises, ChatColor.RED + ", " + ChatColor.GREEN));
|
||||||
if (allowedDisguises.contains("player"))
|
String optional = ChatColor.DARK_GREEN + "(" + ChatColor.GREEN + "Optional" + ChatColor.DARK_GREEN + ")";
|
||||||
sender.sendMessage(ChatColor.DARK_GREEN + "/disguiseradius <Radius> player <Name>");
|
if (allowedDisguises.contains("player")) {
|
||||||
sender.sendMessage(ChatColor.DARK_GREEN + "/disguiseradius <Radius> <DisguiseType> <Baby>");
|
sender.sendMessage((ChatColor.DARK_GREEN + "/disguiseradius <EntityType" + optional + "> <Radius> player <Name>")
|
||||||
if (allowedDisguises.contains("dropped_item") || allowedDisguises.contains("falling_block"))
|
.replace("<", "<" + ChatColor.GREEN).replace(">", ChatColor.DARK_GREEN + ">"));
|
||||||
sender.sendMessage(ChatColor.DARK_GREEN + "/disguiseradius <Radius> <Dropped_Item/Falling_Block> <Id> <Durability>");
|
}
|
||||||
|
sender.sendMessage((ChatColor.DARK_GREEN + "/disguiseradius <EntityType" + optional + "> <Radius> <DisguiseType> <Baby"
|
||||||
|
+ optional + ">").replace("<", "<" + ChatColor.GREEN).replace(">", ChatColor.DARK_GREEN + ">"));
|
||||||
|
if (allowedDisguises.contains("dropped_item") || allowedDisguises.contains("falling_block")) {
|
||||||
|
sender.sendMessage((ChatColor.DARK_GREEN + "/disguiseradius <EntityType" + optional
|
||||||
|
+ "> <Radius> <Dropped_Item/Falling_Block> <Id> <Durability" + optional + ">").replace("<",
|
||||||
|
"<" + ChatColor.GREEN).replace(">", ChatColor.DARK_GREEN + ">"));
|
||||||
|
}
|
||||||
|
sender.sendMessage(ChatColor.DARK_GREEN + "See the EntityType's usable by " + ChatColor.GREEN
|
||||||
|
+ "/disguiseradius EntityTypes");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -58,8 +58,8 @@ public class PacketsManager {
|
|||||||
private static LibsDisguises libsDisguises;
|
private static LibsDisguises libsDisguises;
|
||||||
private static PacketListener mainListener;
|
private static PacketListener mainListener;
|
||||||
private static PacketListener soundsListener;
|
private static PacketListener soundsListener;
|
||||||
private static PacketListener useEntityListener;
|
|
||||||
private static boolean soundsListenerEnabled;
|
private static boolean soundsListenerEnabled;
|
||||||
|
private static PacketListener clientInteractEntityListener;
|
||||||
private static PacketListener viewDisguisesListener;
|
private static PacketListener viewDisguisesListener;
|
||||||
private static boolean viewDisguisesListenerEnabled;
|
private static boolean viewDisguisesListenerEnabled;
|
||||||
|
|
||||||
@ -67,7 +67,7 @@ public class PacketsManager {
|
|||||||
// Add a client listener to cancel them interacting with uninteractable disguised entitys.
|
// Add a client listener to cancel them interacting with uninteractable disguised entitys.
|
||||||
// You ain't supposed to be allowed to 'interact' with a item that cannot be clicked.
|
// You ain't supposed to be allowed to 'interact' with a item that cannot be clicked.
|
||||||
// Because it kicks you for hacking.
|
// Because it kicks you for hacking.
|
||||||
useEntityListener = new PacketAdapter(libsDisguises, ListenerPriority.NORMAL, PacketType.Play.Client.USE_ENTITY) {
|
clientInteractEntityListener = new PacketAdapter(libsDisguises, ListenerPriority.NORMAL, PacketType.Play.Client.USE_ENTITY) {
|
||||||
@Override
|
@Override
|
||||||
public void onPacketReceiving(PacketEvent event) {
|
public void onPacketReceiving(PacketEvent event) {
|
||||||
try {
|
try {
|
||||||
@ -83,7 +83,7 @@ public class PacketsManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
ProtocolLibrary.getProtocolManager().addPacketListener(useEntityListener);
|
ProtocolLibrary.getProtocolManager().addPacketListener(clientInteractEntityListener);
|
||||||
// Now I call this and the main listener is registered!
|
// Now I call this and the main listener is registered!
|
||||||
setupMainPacketsListener();
|
setupMainPacketsListener();
|
||||||
}
|
}
|
||||||
@ -1052,7 +1052,7 @@ public class PacketsManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void setupMainPacketsListener() {
|
public static void setupMainPacketsListener() {
|
||||||
if (useEntityListener != null) {
|
if (clientInteractEntityListener != null) {
|
||||||
if (mainListener != null) {
|
if (mainListener != null) {
|
||||||
ProtocolLibrary.getProtocolManager().removePacketListener(mainListener);
|
ProtocolLibrary.getProtocolManager().removePacketListener(mainListener);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user