LibsDisguises/src/me/libraryaddict/disguise/utilities/ReflectionManager.java

1052 lines
31 KiB
Java
Raw Normal View History

package me.libraryaddict.disguise.utilities;
2013-11-18 04:24:25 +01:00
2016-05-09 17:28:38 +02:00
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.Map;
import java.util.UUID;
import org.apache.commons.lang3.tuple.ImmutablePair;
import org.apache.commons.lang3.tuple.Pair;
import org.bukkit.Art;
import org.bukkit.Bukkit;
import org.bukkit.Location;
2016-03-15 02:53:25 +01:00
import org.bukkit.Material;
import org.bukkit.Sound;
import org.bukkit.World;
import org.bukkit.entity.Entity;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Player;
import org.bukkit.inventory.EntityEquipment;
import org.bukkit.inventory.EquipmentSlot;
import org.bukkit.inventory.ItemStack;
import org.bukkit.potion.PotionEffect;
2016-05-09 17:28:38 +02:00
import com.comphenix.protocol.wrappers.MinecraftKey;
import com.comphenix.protocol.wrappers.WrappedDataWatcher.Registry;
import com.comphenix.protocol.wrappers.WrappedDataWatcher.Serializer;
import com.comphenix.protocol.wrappers.WrappedDataWatcher.WrappedDataWatcherObject;
import com.comphenix.protocol.wrappers.WrappedGameProfile;
import com.google.common.collect.ImmutableMap;
import com.mojang.authlib.GameProfile;
import me.libraryaddict.disguise.disguisetypes.DisguiseType;
import org.bukkit.entity.*;
2013-11-18 04:24:25 +01:00
2016-05-09 17:28:38 +02:00
public class ReflectionManager
{
2014-06-15 01:06:02 +02:00
private static final String bukkitVersion = Bukkit.getServer().getClass().getName().split("\\.")[3];
2014-06-15 09:35:47 +02:00
private static final Class<?> craftItemClass;
private static Method damageAndIdleSoundMethod;
private static final Field entitiesField;
private static final Constructor<?> boundingBoxConstructor;
private static final Method setBoundingBoxMethod;
2014-06-15 09:35:47 +02:00
private static final Method ihmGet;
private static final Field pingField;
private static Map<Class<?>, String> primitiveTypes;
private static final Field trackerField;
public static final Field entityCountField;
/*
* This portion of code is originally Copyright (C) 2014-2014 Kane York.
*
* In addition to the implicit license granted to libraryaddict to redistribuite the code, the
* code is also licensed to the public under the BSD 2-clause license.
*
* The publicly licensed version may be viewed here: https://gist.github.com/riking/2f330f831c30e2276df7
*/
2016-05-09 17:28:38 +02:00
static
{
primitiveTypes = ImmutableMap.<Class<?>, String> builder().put(boolean.class, "Z").put(byte.class, "B")
2014-06-15 09:35:47 +02:00
.put(char.class, "C").put(short.class, "S").put(int.class, "I").put(long.class, "J").put(float.class, "F")
.put(double.class, "D").put(void.class, "V").build();
2014-06-15 05:19:56 +02:00
}
2014-06-14 23:58:49 +02:00
2016-05-09 17:28:38 +02:00
static
{
for (Method method : getNmsClass("EntityLiving").getDeclaredMethods())
{
try
{
if (method.getReturnType() == float.class && Modifier.isProtected(method.getModifiers())
2016-05-09 17:28:38 +02:00
&& method.getParameterTypes().length == 0)
{
Object entity = createEntityInstance("Cow");
2016-05-09 17:28:38 +02:00
method.setAccessible(true);
float value = (Float) method.invoke(entity);
2016-05-09 17:28:38 +02:00
if (value == 0.4F)
{
damageAndIdleSoundMethod = method;
break;
}
}
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
}
2016-05-09 17:28:38 +02:00
2014-06-15 05:19:56 +02:00
craftItemClass = getCraftClass("inventory.CraftItemStack");
2016-05-09 17:28:38 +02:00
2014-06-15 05:19:56 +02:00
pingField = getNmsField("EntityPlayer", "ping");
2016-05-09 17:28:38 +02:00
2014-06-15 05:19:56 +02:00
trackerField = getNmsField("WorldServer", "tracker");
2016-05-09 17:28:38 +02:00
2014-06-15 05:19:56 +02:00
entitiesField = getNmsField("EntityTracker", "trackedEntities");
2016-05-09 17:28:38 +02:00
2014-06-15 05:19:56 +02:00
ihmGet = getNmsMethod("IntHashMap", "get", int.class);
2016-05-09 17:28:38 +02:00
boundingBoxConstructor = getNmsConstructor("AxisAlignedBB", double.class, double.class, double.class, double.class,
double.class, double.class);
setBoundingBoxMethod = getNmsMethod("Entity", "a", getNmsClass("AxisAlignedBB"));
2016-05-09 17:28:38 +02:00
entityCountField = getNmsField("Entity", "entityCount");
2016-05-09 17:28:38 +02:00
entityCountField.setAccessible(true);
}
2016-05-09 17:28:38 +02:00
public static Object createEntityInstance(String entityName)
{
try
{
2014-06-15 01:06:02 +02:00
Class<?> entityClass = getNmsClass("Entity" + entityName);
2013-12-22 01:03:47 +01:00
Object entityObject;
Object world = getWorldServer(Bukkit.getWorlds().get(0));
2016-05-09 17:28:38 +02:00
switch (entityName)
{
case "Player":
Object minecraftServer = getNmsMethod("MinecraftServer", "getServer").invoke(null);
Object playerinteractmanager = getNmsClass("PlayerInteractManager").getDeclaredConstructor(getNmsClass("World"))
.newInstance(world);
WrappedGameProfile gameProfile = getGameProfile(null, "Steve");
entityObject = entityClass
.getDeclaredConstructor(getNmsClass("MinecraftServer"), getNmsClass("WorldServer"),
gameProfile.getHandleType(), playerinteractmanager.getClass())
.newInstance(minecraftServer, world, gameProfile.getHandle(), playerinteractmanager);
break;
case "EnderPearl":
entityObject = entityClass.getDeclaredConstructor(getNmsClass("World"), getNmsClass("EntityLiving"))
.newInstance(world, createEntityInstance("Cow"));
break;
case "Potion":
entityObject = entityClass
.getDeclaredConstructor(getNmsClass("World"), Double.TYPE, Double.TYPE, Double.TYPE,
getNmsClass("ItemStack"))
.newInstance(world, 0d, 0d, 0d, getNmsItem(new ItemStack(Material.SPLASH_POTION)));
break;
default:
entityObject = entityClass.getDeclaredConstructor(getNmsClass("World")).newInstance(world);
2016-03-15 02:53:25 +01:00
break;
2013-12-22 01:03:47 +01:00
}
2016-05-09 17:28:38 +02:00
2013-12-22 01:03:47 +01:00
return entityObject;
2016-05-09 17:28:38 +02:00
}
catch (Exception e)
{
e.printStackTrace(System.out);
2013-12-22 01:03:47 +01:00
}
2016-05-09 17:28:38 +02:00
2013-12-22 01:03:47 +01:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Object getMobEffectList(int id)
{
Method nmsMethod = getNmsMethod("MobEffectList", "fromId", Integer.TYPE);
2016-05-09 17:28:38 +02:00
try
{
return nmsMethod.invoke(null, id);
2016-05-09 17:28:38 +02:00
}
catch (IllegalAccessException | InvocationTargetException e)
{
e.printStackTrace();
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Object createMobEffect(PotionEffect effect)
{
return createMobEffect(effect.getType().getId(), effect.getDuration(), effect.getAmplifier(), effect.isAmbient(),
effect.hasParticles());
}
2016-05-09 17:28:38 +02:00
public static Object createMobEffect(int id, int duration, int amplification, boolean ambient, boolean particles)
{
try
{
return getNmsClass("MobEffect")
.getDeclaredConstructor(getNmsClass("MobEffectList"), Integer.TYPE, Integer.TYPE, Boolean.TYPE, Boolean.TYPE)
.newInstance(getMobEffectList(id), duration, amplification, ambient, particles);
2016-05-09 17:28:38 +02:00
}
catch (Exception e)
{
e.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
private static String dir2fqn(String s)
{
2014-06-15 09:35:47 +02:00
return s.replaceAll("/", ".");
}
2016-05-09 17:28:38 +02:00
public static FakeBoundingBox getBoundingBox(Entity entity)
{
try
{
Object boundingBox = getNmsMethod("Entity", "getBoundingBox").invoke(getNmsEntity(entity));
2016-05-09 17:28:38 +02:00
2013-12-22 04:58:49 +01:00
double x = 0, y = 0, z = 0;
int stage = 0;
2016-05-09 17:28:38 +02:00
for (Field field : boundingBox.getClass().getDeclaredFields())
{
if (field.getType().getSimpleName().equals("double"))
{
2013-12-22 04:58:49 +01:00
stage++;
2016-05-09 17:28:38 +02:00
switch (stage)
{
case 1:
x -= field.getDouble(boundingBox);
break;
case 2:
y -= field.getDouble(boundingBox);
break;
case 3:
z -= field.getDouble(boundingBox);
break;
case 4:
x += field.getDouble(boundingBox);
break;
case 5:
y += field.getDouble(boundingBox);
break;
case 6:
z += field.getDouble(boundingBox);
break;
default:
throw new Exception("Error while setting the bounding box, more doubles than I thought??");
2013-12-22 04:58:49 +01:00
}
}
}
2016-05-09 17:28:38 +02:00
return new FakeBoundingBox(x, y, z);
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Entity getBukkitEntity(Object nmsEntity)
{
try
{
2014-06-15 07:38:16 +02:00
return (Entity) getNmsMethod("Entity", "getBukkitEntity").invoke(nmsEntity);
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
2013-11-27 04:55:03 +01:00
}
2016-05-09 17:28:38 +02:00
2013-11-27 04:55:03 +01:00
return null;
}
2016-05-09 17:28:38 +02:00
public static ItemStack getBukkitItem(Object nmsItem)
{
try
{
2014-06-15 01:06:02 +02:00
return (ItemStack) craftItemClass.getMethod("asBukkitCopy", getNmsClass("ItemStack")).invoke(null, nmsItem);
2016-05-09 17:28:38 +02:00
}
catch (Exception e)
{
e.printStackTrace(System.out);
2013-11-18 04:24:25 +01:00
}
2016-05-09 17:28:38 +02:00
2013-11-18 04:24:25 +01:00
return null;
}
2016-05-09 17:28:38 +02:00
public static String getBukkitVersion()
{
return bukkitVersion;
}
2016-05-09 17:28:38 +02:00
public static Class<?> getCraftClass(String className)
{
try
{
return Class.forName("org.bukkit.craftbukkit." + getBukkitVersion() + "." + className);
2016-05-09 17:28:38 +02:00
}
catch (Exception e)
{
e.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Constructor getCraftConstructor(Class clazz, Class<?>... parameters)
{
try
{
Constructor declaredConstructor = clazz.getDeclaredConstructor(parameters);
declaredConstructor.setAccessible(true);
return declaredConstructor;
2016-05-09 17:28:38 +02:00
}
catch (NoSuchMethodException e)
{
e.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Constructor getCraftConstructor(String className, Class<?>... parameters)
{
return getCraftConstructor(getCraftClass(className), parameters);
}
2016-05-09 17:28:38 +02:00
public static String getCraftSound(Sound sound)
{
try
{
2014-06-15 07:38:16 +02:00
return (String) getCraftClass("CraftSound").getMethod("getSound", Sound.class).invoke(null, sound);
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
2013-11-18 04:24:25 +01:00
}
2016-05-09 17:28:38 +02:00
2013-11-18 04:24:25 +01:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Object getEntityTrackerEntry(Entity target) throws Exception
{
Object world = getWorldServer(target.getWorld());
2014-06-15 09:35:47 +02:00
Object tracker = trackerField.get(world);
Object trackedEntities = entitiesField.get(tracker);
2016-05-09 17:28:38 +02:00
2014-06-15 09:35:47 +02:00
return ihmGet.invoke(trackedEntities, target.getEntityId());
}
2016-05-09 17:28:38 +02:00
public static Object getMinecraftServer()
{
try
{
return getCraftMethod("CraftServer", "getServer").invoke(Bukkit.getServer());
2016-05-09 17:28:38 +02:00
}
catch (IllegalAccessException | InvocationTargetException e)
{
e.printStackTrace();
}
return null;
}
2016-05-09 17:28:38 +02:00
public static String getEnumArt(Art art)
{
try
{
2014-06-15 07:38:16 +02:00
Object enumArt = getCraftClass("CraftArt").getMethod("BukkitToNotch", Art.class).invoke(null, art);
2016-05-09 17:28:38 +02:00
for (Field field : enumArt.getClass().getDeclaredFields())
{
if (field.getType() == String.class)
{
return (String) field.get(enumArt);
}
}
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Object getBlockPosition(int x, int y, int z)
{
try
{
return getNmsClass("BlockPosition").getDeclaredConstructor(int.class, int.class, int.class).newInstance(x, y, z);
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Enum getEnumDirection(int direction)
{
try
{
return (Enum) getNmsMethod("EnumDirection", "fromType2", int.class).invoke(null, direction);
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Enum getEnumPlayerInfoAction(int action)
{
try
{
return (Enum) getNmsClass("PacketPlayOutPlayerInfo$EnumPlayerInfoAction").getEnumConstants()[action];
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Object getPlayerInfoData(Object playerInfoPacket, WrappedGameProfile gameProfile)
{
try
{
Object playerListName = getNmsClass("ChatComponentText").getDeclaredConstructor(String.class)
.newInstance(gameProfile.getName());
2016-05-09 17:28:38 +02:00
return getNmsClass("PacketPlayOutPlayerInfo$PlayerInfoData")
.getDeclaredConstructor(getNmsClass("PacketPlayOutPlayerInfo"), gameProfile.getHandleType(), int.class,
getNmsClass("WorldSettings$EnumGamemode"), getNmsClass("IChatBaseComponent"))
.newInstance(playerInfoPacket, gameProfile.getHandle(), 0,
getNmsClass("WorldSettings$EnumGamemode").getEnumConstants()[1], playerListName);
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static WrappedGameProfile getGameProfile(Player player)
{
return WrappedGameProfile.fromPlayer(player);
}
2016-05-09 17:28:38 +02:00
public static WrappedGameProfile getGameProfile(UUID uuid, String playerName)
{
try
{
return new WrappedGameProfile(uuid != null ? uuid : UUID.randomUUID(), playerName);
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
return null;
}
2016-05-09 17:28:38 +02:00
public static WrappedGameProfile getGameProfileWithThisSkin(UUID uuid, String playerName, WrappedGameProfile profileWithSkin)
{
try
{
WrappedGameProfile gameProfile = new WrappedGameProfile(uuid != null ? uuid : UUID.randomUUID(), playerName);
gameProfile.getProperties().putAll(profileWithSkin.getProperties());
return gameProfile;
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Class getNmsClass(String className)
{
try
{
return Class.forName("net.minecraft.server." + getBukkitVersion() + "." + className);
2016-05-09 17:28:38 +02:00
}
catch (Exception e)
{
e.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Constructor getNmsConstructor(Class clazz, Class<?>... parameters)
{
try
{
Constructor declaredConstructor = clazz.getDeclaredConstructor(parameters);
declaredConstructor.setAccessible(true);
return declaredConstructor;
2016-05-09 17:28:38 +02:00
}
catch (NoSuchMethodException e)
{
e.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Constructor getNmsConstructor(String className, Class<?>... parameters)
{
return getNmsConstructor(getNmsClass(className), parameters);
}
2016-05-09 17:28:38 +02:00
public static Object getNmsEntity(Entity entity)
{
try
{
return getCraftClass("entity.CraftEntity").getMethod("getHandle").invoke(entity);
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
2013-11-18 04:24:25 +01:00
}
2016-05-09 17:28:38 +02:00
2013-11-18 04:24:25 +01:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Field getNmsField(Class clazz, String fieldName)
{
try
{
Field declaredField = clazz.getDeclaredField(fieldName);
declaredField.setAccessible(true);
2016-05-09 17:28:38 +02:00
return declaredField;
2016-05-09 17:28:38 +02:00
}
catch (NoSuchFieldException e)
{
e.printStackTrace(System.out);
2014-06-14 23:58:49 +02:00
}
2016-05-09 17:28:38 +02:00
2014-06-14 23:58:49 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Field getNmsField(String className, String fieldName)
{
2014-06-15 09:35:47 +02:00
return getNmsField(getNmsClass(className), fieldName);
2014-06-14 23:58:49 +02:00
}
2016-05-09 17:28:38 +02:00
public static Object getNmsItem(ItemStack itemstack)
{
try
{
return craftItemClass.getDeclaredMethod("asNMSCopy", ItemStack.class).invoke(null, itemstack);
2016-05-09 17:28:38 +02:00
}
catch (Exception e)
{
e.printStackTrace(System.out);
2014-06-15 07:38:16 +02:00
}
2016-05-09 17:28:38 +02:00
2014-06-15 09:35:47 +02:00
return null;
2014-06-15 07:38:16 +02:00
}
2016-05-09 17:28:38 +02:00
public static Method getCraftMethod(String className, String methodName, Class<?>... parameters)
{
return getCraftMethod(getCraftClass(className), methodName, parameters);
}
2016-05-09 17:28:38 +02:00
public static Method getCraftMethod(Class<?> clazz, String methodName, Class<?>... parameters)
{
try
{
Method declaredMethod = clazz.getDeclaredMethod(methodName, parameters);
declaredMethod.setAccessible(true);
2016-05-09 17:28:38 +02:00
return declaredMethod;
2016-05-09 17:28:38 +02:00
}
catch (NoSuchMethodException e)
{
e.printStackTrace(System.out);
2014-06-15 07:38:16 +02:00
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Method getNmsMethod(Class<?> clazz, String methodName, Class<?>... parameters)
{
try
{
Method declaredMethod = clazz.getDeclaredMethod(methodName, parameters);
declaredMethod.setAccessible(true);
2016-05-09 17:28:38 +02:00
return declaredMethod;
2016-05-09 17:28:38 +02:00
}
catch (NoSuchMethodException e)
{
e.printStackTrace(System.out);
2014-06-14 23:58:49 +02:00
}
2016-05-09 17:28:38 +02:00
2014-06-14 23:58:49 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Method getNmsMethod(String className, String methodName, Class<?>... parameters)
{
2014-06-15 09:35:47 +02:00
return getNmsMethod(getNmsClass(className), methodName, parameters);
}
2016-05-09 17:28:38 +02:00
public static double getPing(Player player)
{
try
{
return (double) pingField.getInt(ReflectionManager.getNmsEntity(player));
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return 0;
}
2016-05-09 17:28:38 +02:00
public static float[] getSize(Entity entity)
{
try
{
2014-06-14 23:58:49 +02:00
float length = getNmsField("Entity", "length").getFloat(getNmsEntity(entity));
2014-06-15 01:06:02 +02:00
float width = getNmsField("Entity", "width").getFloat(getNmsEntity(entity));
2016-05-09 17:28:38 +02:00
float height = (Float) getNmsMethod("Entity", "getHeadHeight").invoke(getNmsEntity(entity));
2016-05-09 17:28:38 +02:00
return new float[]
{
length, width, height
};
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
2013-12-22 05:35:57 +01:00
}
2016-05-09 17:28:38 +02:00
2013-12-22 05:35:57 +01:00
return null;
}
2016-05-09 17:28:38 +02:00
public static WrappedGameProfile getSkullBlob(WrappedGameProfile gameProfile)
{
try
{
2014-06-15 01:06:02 +02:00
Object minecraftServer = getNmsMethod("MinecraftServer", "getServer").invoke(null);
2016-05-09 17:28:38 +02:00
for (Method method : getNmsClass("MinecraftServer").getDeclaredMethods())
{
if (method.getReturnType().getSimpleName().equals("MinecraftSessionService"))
{
Object session = method.invoke(minecraftServer);
2016-05-09 17:28:38 +02:00
return WrappedGameProfile.fromHandle(session.getClass()
.getDeclaredMethod("fillProfileProperties", gameProfile.getHandleType(), boolean.class)
.invoke(session, gameProfile.getHandle(), true));
}
}
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Float getSoundModifier(Object entity)
{
try
{
damageAndIdleSoundMethod.setAccessible(true);
2016-05-09 17:28:38 +02:00
return (Float) damageAndIdleSoundMethod.invoke(entity);
2016-05-09 17:28:38 +02:00
}
catch (Exception ignored)
{
}
return null;
}
2016-05-09 17:28:38 +02:00
public static WrappedGameProfile grabProfileAddUUID(String playername)
{
try
{
2014-06-15 07:38:16 +02:00
Object minecraftServer = getNmsMethod("MinecraftServer", "getServer").invoke(null);
2016-05-09 17:28:38 +02:00
for (Method method : getNmsClass("MinecraftServer").getDeclaredMethods())
{
if (method.getReturnType().getSimpleName().equals("GameProfileRepository"))
{
Object profileRepo = method.invoke(minecraftServer);
2016-05-09 17:28:38 +02:00
Object agent = Class.forName("com.mojang.authlib.Agent").getDeclaredField("MINECRAFT").get(null);
2016-05-09 17:28:38 +02:00
LibsProfileLookupCaller callback = new LibsProfileLookupCaller();
2016-05-09 17:28:38 +02:00
profileRepo.getClass().getDeclaredMethod("findProfilesByNames", String[].class, agent.getClass(),
Class.forName("com.mojang.authlib.ProfileLookupCallback")).invoke(profileRepo, new String[]
{
playername
}, agent, callback);
if (callback.getGameProfile() != null)
{
return callback.getGameProfile();
}
2016-05-09 17:28:38 +02:00
return getGameProfile(null, playername);
}
}
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
private static String methodSignaturePart(Class<?> param)
{
if (param.isArray())
{
2014-06-15 09:35:47 +02:00
return "[" + methodSignaturePart(param.getComponentType());
2016-05-09 17:28:38 +02:00
}
else if (param.isPrimitive())
{
2014-06-15 09:35:47 +02:00
return primitiveTypes.get(param);
2016-05-09 17:28:38 +02:00
}
else
{
2014-06-15 09:35:47 +02:00
return "L" + param.getName().replaceAll("\\.", "/") + ";";
}
2014-09-26 06:50:57 +02:00
}
2016-05-09 17:28:38 +02:00
public static void removePlayer(Player player)
{
// Some future remove code if needed
}
2016-05-09 17:28:38 +02:00
public static void setBoundingBox(Entity entity, FakeBoundingBox newBox)
{
try
{
Location loc = entity.getLocation();
2016-05-09 17:28:38 +02:00
Object boundingBox = boundingBoxConstructor.newInstance(loc.getX() - newBox.getX(), loc.getY() - newBox.getY(),
2016-05-09 17:28:38 +02:00
loc.getZ() - newBox.getZ(), loc.getX() + newBox.getX(), loc.getY() + newBox.getY(),
loc.getZ() + newBox.getZ());
setBoundingBoxMethod.invoke(getNmsEntity(entity), boundingBox);
2016-05-09 17:28:38 +02:00
}
catch (Exception ex)
{
ex.printStackTrace(System.out);
}
}
2016-05-09 17:28:38 +02:00
public static Enum getSoundCategory(String category)
{
Method method = getNmsMethod("SoundCategory", "a", String.class);
2016-05-09 17:28:38 +02:00
try
{
Enum invoke = (Enum) method.invoke(null, category.toLowerCase());
2016-05-09 17:28:38 +02:00
if (invoke == null)
{
Class<?> clazz = getNmsClass("SoundCategory");
Enum[] enums = clazz != null ? (Enum[]) clazz.getEnumConstants() : null;
2016-05-09 17:28:38 +02:00
for (Enum anEnum : enums != null ? enums : new Enum[0])
{
if (anEnum.name().equals(category.toUpperCase()))
2016-05-09 17:28:38 +02:00
return anEnum;
}
}
return invoke;
2016-05-09 17:28:38 +02:00
}
catch (Exception e)
{
e.printStackTrace();
}
2016-05-09 17:28:38 +02:00
return null;
}
public static Enum getSoundCategory(DisguiseType disguiseType)
{
if (disguiseType == DisguiseType.PLAYER)
return getSoundCategory("player");
Class<? extends Entity> entityClass = disguiseType.getEntityType().getEntityClass();
if (Monster.class.isAssignableFrom(entityClass))
return getSoundCategory("hostile");
if (Ambient.class.isAssignableFrom(entityClass))
return getSoundCategory("ambient");
return getSoundCategory("neutral");
}
/**
* Creates the NMS object EnumItemSlot from an EquipmentSlot.
*
* @param slot
* @return null if the equipment slot is null
*/
2016-05-09 17:28:38 +02:00
public static Enum createEnumItemSlot(EquipmentSlot slot)
{
Class<?> clazz = getNmsClass("EnumItemSlot");
2016-05-09 17:28:38 +02:00
Object[] enums = clazz != null ? clazz.getEnumConstants() : null;
2016-05-09 17:28:38 +02:00
if (enums == null)
return null;
switch (slot)
{
case HAND:
return (Enum) enums[0];
case OFF_HAND:
return (Enum) enums[1];
case FEET:
return (Enum) enums[2];
case LEGS:
return (Enum) enums[3];
case CHEST:
return (Enum) enums[4];
case HEAD:
return (Enum) enums[5];
default:
return null;
}
}
/**
* Creates the Bukkit object EquipmentSlot from an EnumItemSlot object.
*
* @return null if the object isn't an nms EnumItemSlot
*/
2016-05-09 17:28:38 +02:00
public static EquipmentSlot createEquipmentSlot(Object enumItemSlot)
{
try
{
Enum nmsSlot = (Enum) enumItemSlot;
2016-05-09 17:28:38 +02:00
switch (nmsSlot.name())
{
case "MAINHAND":
return EquipmentSlot.HAND;
case "OFFHAND":
return EquipmentSlot.OFF_HAND;
case "FEET":
return EquipmentSlot.FEET;
case "LEGS":
return EquipmentSlot.LEGS;
case "CHEST":
return EquipmentSlot.CHEST;
case "HEAD":
return EquipmentSlot.HAND;
}
}
2016-05-09 17:28:38 +02:00
catch (Exception e)
{
}
return null;
}
/**
* Gets equipment from this entity based on the slot given.
*
* @param slot
* @return null if the disguisedEntity is not an instance of a living entity
*/
2016-05-09 17:28:38 +02:00
public static ItemStack getEquipment(EquipmentSlot slot, Entity disguisedEntity)
{
if (!(disguisedEntity instanceof LivingEntity))
return null;
switch (slot)
{
case HAND:
return ((LivingEntity) disguisedEntity).getEquipment().getItemInMainHand();
case OFF_HAND:
return ((LivingEntity) disguisedEntity).getEquipment().getItemInOffHand();
case FEET:
return ((LivingEntity) disguisedEntity).getEquipment().getBoots();
case LEGS:
return ((LivingEntity) disguisedEntity).getEquipment().getLeggings();
case CHEST:
return ((LivingEntity) disguisedEntity).getEquipment().getChestplate();
case HEAD:
return ((LivingEntity) disguisedEntity).getEquipment().getHelmet();
default:
return null;
}
}
/**
* Necessary for 1.9
*
* @return
*/
2016-05-09 17:28:38 +02:00
public static String convertSoundEffectToString(Object soundEffect)
{
try
{
Field f_getMinecraftKey = getNmsField("SoundEffect", "b");
f_getMinecraftKey.setAccessible(true);
MinecraftKey key = MinecraftKey.fromHandle(f_getMinecraftKey.get(soundEffect));
2016-05-09 17:28:38 +02:00
return key.getKey();
2016-05-09 17:28:38 +02:00
}
catch (IllegalAccessException e)
{
e.printStackTrace();
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Object getCraftSoundEffect(String sound)
{
try
{
return getCraftMethod("CraftSound", "getSoundEffect", String.class).invoke(null, sound);
2016-05-09 17:28:38 +02:00
}
catch (IllegalAccessException | InvocationTargetException e)
{
e.printStackTrace();
}
2016-05-09 17:28:38 +02:00
return null;
}
/**
* This creates a DataWatcherItem usable with WrappedWatchableObject
*
* @param id
* @param value
* @return
*/
2016-05-09 17:28:38 +02:00
public static Object createDataWatcherItem(int id, Object value)
{
if (value == null)
return null;
Serializer serializer = Registry.get(value.getClass());
2016-05-09 17:28:38 +02:00
WrappedDataWatcherObject watcherObject = new WrappedDataWatcherObject(id, serializer);
2016-05-09 17:28:38 +02:00
Constructor construct = getNmsConstructor("DataWatcher$Item", getNmsClass("DataWatcherObject"), Object.class);
2016-05-09 17:28:38 +02:00
try
{
return construct.newInstance(watcherObject.getHandle(), value);
2016-05-09 17:28:38 +02:00
}
catch (InstantiationException | IllegalAccessException | InvocationTargetException e)
{
e.printStackTrace();
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static EntityEquipment createEntityEquipment(Entity entity)
{
if (!(entity instanceof LivingEntity))
return null;
Constructor construct = getCraftConstructor("inventory.CraftEntityEquipment", getCraftClass("entity.CraftLivingEntity"));
try
{
return (EntityEquipment) construct.newInstance((LivingEntity) entity);
2016-05-09 17:28:38 +02:00
}
catch (InstantiationException | IllegalAccessException | InvocationTargetException | ClassCastException e)
{
e.printStackTrace();
2013-12-22 01:03:47 +01:00
}
2016-05-09 17:28:38 +02:00
return null;
2013-12-22 01:03:47 +01:00
}
2016-05-09 17:28:38 +02:00
public static int getCombinedId(int id, int data)
{
return id + (data << 12);
}
2016-05-09 17:28:38 +02:00
public static Pair<Integer, Integer> getFromCombinedId(int combinedId)
{
int j = combinedId & 4095;
int k = combinedId >> 12 & 15;
2016-05-09 17:28:38 +02:00
return new ImmutablePair<>(j, k);
}
2016-05-09 17:28:38 +02:00
public static Object getWorldServer(World w)
{
try
{
return getCraftMethod("CraftWorld", "getHandle").invoke(w);
2016-05-09 17:28:38 +02:00
}
catch (IllegalAccessException | InvocationTargetException e)
{
e.printStackTrace();
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Object getPlayerInteractManager(World w)
{
Object worldServer = getWorldServer(w);
2016-05-09 17:28:38 +02:00
try
{
return getNmsConstructor("PlayerInteractManager", getNmsClass("World")).newInstance(worldServer);
2016-05-09 17:28:38 +02:00
}
catch (InstantiationException | InvocationTargetException | IllegalAccessException e)
{
e.printStackTrace();
}
2016-05-09 17:28:38 +02:00
return null;
}
2016-05-09 17:28:38 +02:00
public static Object createEntityPlayer(World w, WrappedGameProfile profile)
{
Object entityPlayer = null;
2016-05-09 17:28:38 +02:00
try
{
entityPlayer = getNmsConstructor("EntityPlayer", getNmsClass("MinecraftServer"), getNmsClass("WorldServer"),
GameProfile.class, getNmsClass("PlayerInteractManager")).newInstance(getMinecraftServer(), getWorldServer(w),
profile.getHandle(), getPlayerInteractManager(w));
}
catch (InstantiationException | IllegalAccessException | InvocationTargetException e)
{
e.printStackTrace();
}
2016-05-09 17:28:38 +02:00
return entityPlayer;
}
2013-11-18 04:24:25 +01:00
}