2013-05-17 23:05:19 +02:00
|
|
|
package me.libraryaddict.disguise;
|
|
|
|
|
2013-08-05 14:04:01 +02:00
|
|
|
import java.io.File;
|
2013-10-01 12:51:21 +02:00
|
|
|
import java.io.IOException;
|
2013-07-29 01:21:25 +02:00
|
|
|
import java.lang.reflect.Field;
|
2013-09-25 16:49:24 +02:00
|
|
|
import me.libraryaddict.disguise.commands.*;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.Disguise;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.DisguiseType;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.FlagWatcher;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.watchers.AgeableWatcher;
|
2013-11-22 20:22:06 +01:00
|
|
|
import me.libraryaddict.disguise.disguisetypes.watchers.HorseWatcher;
|
2013-09-25 16:49:24 +02:00
|
|
|
import me.libraryaddict.disguise.disguisetypes.watchers.LivingWatcher;
|
2013-11-22 20:22:06 +01:00
|
|
|
import me.libraryaddict.disguise.disguisetypes.watchers.MinecartWatcher;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.watchers.SlimeWatcher;
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.watchers.ZombieWatcher;
|
2013-11-22 21:10:20 +01:00
|
|
|
import me.libraryaddict.disguise.utilities.DisguiseSound;
|
|
|
|
import me.libraryaddict.disguise.utilities.DisguiseUtilities;
|
|
|
|
import me.libraryaddict.disguise.utilities.PacketsManager;
|
|
|
|
import me.libraryaddict.disguise.utilities.ReflectionManager;
|
|
|
|
import me.libraryaddict.disguise.utilities.DisguiseValues;
|
2013-05-29 16:25:00 +02:00
|
|
|
|
|
|
|
import org.bukkit.Bukkit;
|
2013-10-01 12:51:21 +02:00
|
|
|
import org.bukkit.configuration.file.FileConfiguration;
|
2013-08-05 14:04:01 +02:00
|
|
|
import org.bukkit.configuration.file.YamlConfiguration;
|
2013-07-28 01:00:29 +02:00
|
|
|
import org.bukkit.entity.Ageable;
|
2013-11-18 04:24:25 +01:00
|
|
|
import org.bukkit.entity.Entity;
|
2013-11-27 04:38:51 +01:00
|
|
|
import org.bukkit.entity.EntityType;
|
2013-07-28 01:00:29 +02:00
|
|
|
import org.bukkit.entity.LivingEntity;
|
2013-05-17 23:05:19 +02:00
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
|
2013-11-18 04:24:25 +01:00
|
|
|
import com.comphenix.protocol.wrappers.WrappedDataWatcher;
|
|
|
|
import com.comphenix.protocol.wrappers.WrappedWatchableObject;
|
2013-07-11 20:38:07 +02:00
|
|
|
|
2013-11-18 04:24:25 +01:00
|
|
|
public class LibsDisguises extends JavaPlugin {
|
2013-07-11 20:38:07 +02:00
|
|
|
|
2013-07-21 05:14:59 +02:00
|
|
|
@Override
|
|
|
|
public void onEnable() {
|
2013-07-31 07:46:24 +02:00
|
|
|
saveDefaultConfig();
|
2013-10-01 12:51:21 +02:00
|
|
|
FileConfiguration config = YamlConfiguration.loadConfiguration(new File(getDataFolder(), "config.yml"));
|
2013-11-23 19:29:13 +01:00
|
|
|
boolean needToSaveConfig = false;
|
2013-10-01 12:51:21 +02:00
|
|
|
try {
|
2013-11-23 19:29:13 +01:00
|
|
|
for (String option : YamlConfiguration.loadConfiguration(getClassLoader().getResource("config.yml").openStream())
|
|
|
|
.getKeys(false)) {
|
2013-10-01 12:51:21 +02:00
|
|
|
if (!config.contains(option)) {
|
|
|
|
config.set(option, getConfig().get(option));
|
2013-11-23 19:29:13 +01:00
|
|
|
needToSaveConfig = true;
|
2013-10-01 12:51:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
2013-11-23 19:29:13 +01:00
|
|
|
if (needToSaveConfig) {
|
2013-11-05 18:05:10 +01:00
|
|
|
try {
|
|
|
|
config.save(new File(getDataFolder(), "config.yml"));
|
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
2013-10-01 12:51:21 +02:00
|
|
|
}
|
2013-08-13 05:19:50 +02:00
|
|
|
PacketsManager.init(this);
|
2013-11-22 21:04:31 +01:00
|
|
|
DisguiseUtilities.init(this);
|
2013-08-13 05:19:50 +02:00
|
|
|
DisguiseAPI.setSoundsEnabled(getConfig().getBoolean("DisguiseSounds"));
|
2013-07-31 07:46:24 +02:00
|
|
|
DisguiseAPI.setVelocitySent(getConfig().getBoolean("SendVelocity"));
|
2013-11-05 18:01:52 +01:00
|
|
|
DisguiseAPI.setViewDisguises(getConfig().getBoolean("ViewSelfDisguises"));
|
2013-07-31 07:46:24 +02:00
|
|
|
DisguiseAPI.setHearSelfDisguise(getConfig().getBoolean("HearSelfDisguise"));
|
2013-10-18 01:53:56 +02:00
|
|
|
DisguiseAPI.setHideArmorFromSelf(getConfig().getBoolean("RemoveArmor"));
|
|
|
|
DisguiseAPI.setHideHeldItemFromSelf(getConfig().getBoolean("RemoveHeldItem"));
|
2013-11-23 22:05:08 +01:00
|
|
|
DisguiseAPI.setAddEntityAnimations(getConfig().getBoolean("AddEntityAnimations"));
|
2013-10-01 12:51:21 +02:00
|
|
|
if (DisguiseAPI.isHidingArmorFromSelf() || DisguiseAPI.isHidingHeldItemFromSelf()) {
|
|
|
|
DisguiseAPI.setInventoryListenerEnabled(true);
|
|
|
|
}
|
2013-07-29 01:21:25 +02:00
|
|
|
try {
|
|
|
|
// Here I use reflection to set the plugin for Disguise..
|
2013-11-22 21:04:31 +01:00
|
|
|
// Kind of stupid but I don't want open API calls for a commonly used object.
|
2013-07-29 01:21:25 +02:00
|
|
|
Field field = Disguise.class.getDeclaredField("plugin");
|
|
|
|
field.setAccessible(true);
|
|
|
|
field.set(null, this);
|
|
|
|
} catch (Exception ex) {
|
|
|
|
ex.printStackTrace();
|
|
|
|
}
|
2013-08-13 05:19:50 +02:00
|
|
|
PacketsManager.addPacketListeners(this);
|
2013-07-16 07:23:11 +02:00
|
|
|
DisguiseListener listener = new DisguiseListener(this);
|
|
|
|
Bukkit.getPluginManager().registerEvents(listener, this);
|
2013-05-21 04:23:58 +02:00
|
|
|
getCommand("disguise").setExecutor(new DisguiseCommand());
|
|
|
|
getCommand("undisguise").setExecutor(new UndisguiseCommand());
|
2013-05-29 00:44:55 +02:00
|
|
|
getCommand("disguiseplayer").setExecutor(new DisguisePlayerCommand());
|
|
|
|
getCommand("undisguiseplayer").setExecutor(new UndisguisePlayerCommand());
|
2013-07-16 07:23:11 +02:00
|
|
|
getCommand("undisguiseentity").setExecutor(new UndisguiseEntityCommand(listener));
|
|
|
|
getCommand("disguiseentity").setExecutor(new DisguiseEntityCommand(listener));
|
2013-07-16 08:53:39 +02:00
|
|
|
getCommand("disguiseradius").setExecutor(new DisguiseRadiusCommand(getConfig().getInt("DisguiseRadiusMax")));
|
|
|
|
getCommand("undisguiseradius").setExecutor(new UndisguiseRadiusCommand(getConfig().getInt("UndisguiseRadiusMax")));
|
2013-11-05 16:16:46 +01:00
|
|
|
getCommand("disguisehelp").setExecutor(new DisguiseHelpCommand());
|
2013-07-11 20:38:07 +02:00
|
|
|
registerValues();
|
|
|
|
}
|
|
|
|
|
2013-11-22 21:04:31 +01:00
|
|
|
/**
|
|
|
|
* Here we create a nms entity for each disguise. Then grab their default values in their datawatcher. Then their sound volume
|
|
|
|
* for mob noises. As well as setting their watcher class and entity size.
|
|
|
|
*/
|
2013-07-11 20:38:07 +02:00
|
|
|
private void registerValues() {
|
2013-11-27 04:38:51 +01:00
|
|
|
try {
|
|
|
|
DisguiseValues disguiseValues = new DisguiseValues((Enum) Class.forName("org.bukkit.entity.EntityType")
|
|
|
|
.getField("ITEM_FRAME").get(null), null, 0);
|
|
|
|
for (WrappedWatchableObject watch : WrappedDataWatcher.getEntityWatcher(
|
|
|
|
ReflectionManager.getBukkitEntity(ReflectionManager.createEntityInstance("ItemFrame"))).getWatchableObjects())
|
|
|
|
disguiseValues.setMetaValue(watch.getIndex(), watch.getValue());
|
|
|
|
} catch (Exception ex) {
|
|
|
|
ex.printStackTrace();
|
|
|
|
}
|
2013-07-11 20:38:07 +02:00
|
|
|
for (DisguiseType disguiseType : DisguiseType.values()) {
|
2013-11-22 15:15:07 +01:00
|
|
|
if (disguiseType.getEntityType() == null) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-07-28 01:00:29 +02:00
|
|
|
Class watcherClass = null;
|
|
|
|
try {
|
|
|
|
switch (disguiseType) {
|
|
|
|
case MINECART_FURNACE:
|
|
|
|
case MINECART_HOPPER:
|
|
|
|
case MINECART_MOB_SPAWNER:
|
|
|
|
case MINECART_TNT:
|
|
|
|
case MINECART_CHEST:
|
2013-11-22 20:22:06 +01:00
|
|
|
watcherClass = MinecartWatcher.class;
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
case DONKEY:
|
|
|
|
case MULE:
|
|
|
|
case UNDEAD_HORSE:
|
|
|
|
case SKELETON_HORSE:
|
2013-11-22 20:22:06 +01:00
|
|
|
watcherClass = HorseWatcher.class;
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
case ZOMBIE_VILLAGER:
|
|
|
|
case PIG_ZOMBIE:
|
2013-11-22 20:22:06 +01:00
|
|
|
watcherClass = ZombieWatcher.class;
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
case MAGMA_CUBE:
|
2013-11-22 20:22:06 +01:00
|
|
|
watcherClass = SlimeWatcher.class;
|
2013-08-05 14:08:53 +02:00
|
|
|
break;
|
2013-07-28 01:00:29 +02:00
|
|
|
default:
|
2013-11-22 20:22:06 +01:00
|
|
|
watcherClass = Class.forName("me.libraryaddict.disguise.disguisetypes.watchers."
|
|
|
|
+ toReadable(disguiseType.name()) + "Watcher");
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
}
|
2013-11-22 20:22:06 +01:00
|
|
|
} catch (ClassNotFoundException ex) {
|
2013-11-22 20:52:15 +01:00
|
|
|
// There is no explicit watcher for this entity.
|
|
|
|
Class entityClass = disguiseType.getEntityType().getEntityClass();
|
|
|
|
if (Ageable.class.isAssignableFrom(entityClass)) {
|
2013-11-22 15:15:07 +01:00
|
|
|
watcherClass = AgeableWatcher.class;
|
2013-11-22 20:52:15 +01:00
|
|
|
} else if (LivingEntity.class.isAssignableFrom(entityClass)) {
|
2013-11-22 15:15:07 +01:00
|
|
|
watcherClass = LivingWatcher.class;
|
|
|
|
} else {
|
|
|
|
watcherClass = FlagWatcher.class;
|
2013-07-28 01:00:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
disguiseType.setWatcherClass(watcherClass);
|
2013-11-22 21:04:31 +01:00
|
|
|
String nmsEntityName = toReadable(disguiseType.name());
|
2013-07-28 01:00:29 +02:00
|
|
|
switch (disguiseType) {
|
|
|
|
case WITHER_SKELETON:
|
|
|
|
case ZOMBIE_VILLAGER:
|
|
|
|
case DONKEY:
|
|
|
|
case MULE:
|
|
|
|
case UNDEAD_HORSE:
|
|
|
|
case SKELETON_HORSE:
|
2013-08-05 14:21:47 +02:00
|
|
|
continue;
|
2013-07-28 01:00:29 +02:00
|
|
|
case PRIMED_TNT:
|
2013-11-22 21:04:31 +01:00
|
|
|
nmsEntityName = "TNTPrimed";
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
case MINECART_TNT:
|
2013-11-22 21:04:31 +01:00
|
|
|
nmsEntityName = "MinecartTNT";
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
case MINECART:
|
2013-11-22 21:04:31 +01:00
|
|
|
nmsEntityName = "MinecartRideable";
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
case FIREWORK:
|
2013-11-22 21:04:31 +01:00
|
|
|
nmsEntityName = "Fireworks";
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
case SPLASH_POTION:
|
2013-11-22 21:04:31 +01:00
|
|
|
nmsEntityName = "Potion";
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
case GIANT:
|
2013-11-22 21:04:31 +01:00
|
|
|
nmsEntityName = "GiantZombie";
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
case DROPPED_ITEM:
|
2013-11-22 21:04:31 +01:00
|
|
|
nmsEntityName = "Item";
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
|
|
|
case FIREBALL:
|
2013-11-22 21:04:31 +01:00
|
|
|
nmsEntityName = "LargeFireball";
|
2013-07-28 01:00:29 +02:00
|
|
|
break;
|
2013-11-07 21:29:32 +01:00
|
|
|
case LEASH_HITCH:
|
2013-11-22 21:04:31 +01:00
|
|
|
nmsEntityName = "Leash";
|
2013-11-07 21:29:32 +01:00
|
|
|
break;
|
2013-07-28 01:00:29 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2013-11-27 04:38:51 +01:00
|
|
|
if (DisguiseValues.getDisguiseValues(disguiseType) != null) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-07-11 20:38:07 +02:00
|
|
|
try {
|
2013-11-22 21:04:31 +01:00
|
|
|
Object nmsEntity = ReflectionManager.createEntityInstance(nmsEntityName);
|
2013-11-27 04:38:51 +01:00
|
|
|
Entity bukkitEntity = ReflectionManager.getBukkitEntity(nmsEntity);
|
2013-11-22 21:04:31 +01:00
|
|
|
int entitySize = 0;
|
2013-11-18 04:24:25 +01:00
|
|
|
for (Field field : ReflectionManager.getNmsClass("Entity").getFields()) {
|
|
|
|
if (field.getType().getName().equals("EnumEntitySize")) {
|
2013-11-22 21:04:31 +01:00
|
|
|
Enum enumEntitySize = (Enum) field.get(nmsEntity);
|
|
|
|
entitySize = enumEntitySize.ordinal();
|
2013-11-18 04:24:25 +01:00
|
|
|
break;
|
|
|
|
}
|
2013-07-11 20:38:07 +02:00
|
|
|
}
|
2013-11-22 21:10:20 +01:00
|
|
|
DisguiseValues disguiseValues = new DisguiseValues(disguiseType, nmsEntity.getClass(), entitySize);
|
2013-11-23 19:29:13 +01:00
|
|
|
for (WrappedWatchableObject watch : WrappedDataWatcher.getEntityWatcher(bukkitEntity).getWatchableObjects())
|
2013-11-22 20:52:15 +01:00
|
|
|
disguiseValues.setMetaValue(watch.getIndex(), watch.getValue());
|
2013-07-22 15:32:05 +02:00
|
|
|
DisguiseSound sound = DisguiseSound.getType(disguiseType.name());
|
|
|
|
if (sound != null) {
|
2013-11-22 21:04:31 +01:00
|
|
|
Float soundStrength = ReflectionManager.getSoundModifier(nmsEntity);
|
2013-11-18 04:24:25 +01:00
|
|
|
if (soundStrength != null) {
|
|
|
|
sound.setDamageSoundVolume((Float) soundStrength);
|
|
|
|
}
|
2013-07-22 15:32:05 +02:00
|
|
|
}
|
2013-11-18 13:30:39 +01:00
|
|
|
} catch (Exception ex) {
|
2013-11-22 21:39:36 +01:00
|
|
|
System.out.print("[LibsDisguises] Trouble while making values for disguise " + disguiseType.name() + ": "
|
2013-11-22 21:04:31 +01:00
|
|
|
+ ex.getMessage());
|
2013-07-11 20:38:07 +02:00
|
|
|
System.out.print("[LibsDisguises] Please report this to LibsDisguises author");
|
2013-11-18 13:30:39 +01:00
|
|
|
ex.printStackTrace();
|
2013-07-11 20:38:07 +02:00
|
|
|
}
|
|
|
|
}
|
2013-05-31 10:55:55 +02:00
|
|
|
}
|
|
|
|
|
2013-07-11 20:38:38 +02:00
|
|
|
private String toReadable(String string) {
|
2013-07-28 01:00:29 +02:00
|
|
|
StringBuilder builder = new StringBuilder();
|
|
|
|
for (String s : string.split("_")) {
|
|
|
|
builder.append(s.substring(0, 1) + s.substring(1).toLowerCase());
|
|
|
|
}
|
|
|
|
return builder.toString();
|
2013-05-17 23:05:19 +02:00
|
|
|
}
|
2013-08-01 10:29:04 +02:00
|
|
|
|
2013-11-14 06:36:53 +01:00
|
|
|
}
|