mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-11-23 18:45:34 +01:00
Updates BlockUtils to use MethodMapping
and ClassMapping
This commit is contained in:
parent
71fb43e6ff
commit
9b5eda60b3
@ -44,7 +44,9 @@ public enum ClassMapping {
|
|||||||
CRAFT_ITEM_STACK("inventory", "CraftItemStack"),
|
CRAFT_ITEM_STACK("inventory", "CraftItemStack"),
|
||||||
CRAFT_MAGIC_NUMBERS("util", "CraftMagicNumbers"),
|
CRAFT_MAGIC_NUMBERS("util", "CraftMagicNumbers"),
|
||||||
CRAFT_PLAYER("entity", "CraftPlayer"),
|
CRAFT_PLAYER("entity", "CraftPlayer"),
|
||||||
CRAFT_WORLD("CraftWorld");
|
CRAFT_WORLD("CraftWorld"),
|
||||||
|
|
||||||
|
MOJANGSON_PARSER("nbt", "MojangsonParser");
|
||||||
|
|
||||||
private final String packageName;
|
private final String packageName;
|
||||||
private final String className;
|
private final String className;
|
||||||
|
@ -5,7 +5,6 @@ import org.bukkit.inventory.ItemStack;
|
|||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
|
|
||||||
public enum MethodMapping {
|
public enum MethodMapping {
|
||||||
|
|
||||||
MC_ITEM_STACK__GET_TAG("getTag", "getTag", "s"),
|
MC_ITEM_STACK__GET_TAG("getTag", "getTag", "s"),
|
||||||
MC_ITEM_STACK__SET_TAG("setTag", "setTag", "c", ClassMapping.NBT_TAG_COMPOUND.getClazz()),
|
MC_ITEM_STACK__SET_TAG("setTag", "setTag", "c", ClassMapping.NBT_TAG_COMPOUND.getClazz()),
|
||||||
|
|
||||||
@ -14,17 +13,32 @@ public enum MethodMapping {
|
|||||||
MC_NBT_TAG_COMPOUND__SET_STRING("setString", "setString", "a", String.class, String.class),
|
MC_NBT_TAG_COMPOUND__SET_STRING("setString", "setString", "a", String.class, String.class),
|
||||||
MC_NBT_TAG_COMPOUND__REMOVE("remove", "remove", "r", String.class),
|
MC_NBT_TAG_COMPOUND__REMOVE("remove", "remove", "r", String.class),
|
||||||
|
|
||||||
CB_ITEM_STACK__AS_NMS_COPY("asNMSCopy", "asNMSCopy", ItemStack.class),
|
CB_ITEM_STACK__AS_NMS_COPY("asNMSCopy", ItemStack.class),
|
||||||
CB_ITEM_STACK__AS_CRAFT_MIRROR("asCraftMirror", "asCraftMirror", ClassMapping.ITEM_STACK.getClazz()),
|
CB_ITEM_STACK__AS_CRAFT_MIRROR("asCraftMirror", ClassMapping.ITEM_STACK.getClazz()),
|
||||||
|
|
||||||
MC_NBT_TAG_LIST__ADD("add", "a", "add", "add", ClassMapping.NBT_BASE.getClazz()),
|
MC_CHUNK__GET_WORLD("getWorld", "D"),
|
||||||
|
|
||||||
|
MC_NBT_TAG_LIST__ADD("add", "a", "add", "c", ClassMapping.NBT_BASE.getClazz()),
|
||||||
|
|
||||||
|
BLOCK__GET_BLOCK_DATA("getBlockData", "n"),
|
||||||
|
|
||||||
|
CHUNK__SET_BLOCK_STATE("setType", "setBlockState", ClassMapping.BLOCK_POSITION.getClazz(), ClassMapping.I_BLOCK_DATA.getClazz(), boolean.class, boolean.class),
|
||||||
|
|
||||||
|
ITEM_STACK__SAVE("save", "b", ClassMapping.NBT_TAG_COMPOUND.getClazz()),
|
||||||
|
ITEM_STACK__GET_ITEM("getItem","c"),
|
||||||
|
ITEM_STACK__GET_MAX_STACK_SIZE("getMaxStackSize","l"),
|
||||||
|
|
||||||
|
WORLD__UPDATE_ADJACENT_COMPARATORS("updateAdjacentComparators", "c", ClassMapping.BLOCK_POSITION.getClazz(), ClassMapping.BLOCK.getClazz()),
|
||||||
|
WORLD__GET_CHUNK_AT("getChunkAt", "d", int.class, int.class),
|
||||||
|
|
||||||
WORLD_BOARDER__SET_CENTER("setCenter", "setCenter", "setCenter", "c", double.class, double.class),
|
WORLD_BOARDER__SET_CENTER("setCenter", "setCenter", "setCenter", "c", double.class, double.class),
|
||||||
WORLD_BOARDER__SET_SIZE("setSize", "setSize", "setSize", "a", double.class),
|
WORLD_BOARDER__SET_SIZE("setSize", "setSize", "setSize", "a", double.class),
|
||||||
|
|
||||||
WORLD_BOARDER__SET_WARNING_TIME("setWarningTime", "setWarningTime", "setWarningTime", "b", int.class),
|
WORLD_BOARDER__SET_WARNING_TIME("setWarningTime", "setWarningTime", "setWarningTime", "b", int.class),
|
||||||
WORLD_BOARDER__SET_WARNING_DISTANCE("setWarningDistance", "setWarningDistance", "setWarningDistance", "c", int.class),
|
WORLD_BOARDER__SET_WARNING_DISTANCE("setWarningDistance", "setWarningDistance", "setWarningDistance", "c", int.class),
|
||||||
WORLD_BOARDER__TRANSITION_SIZE_BETWEEN("transitionSizeBetween", "transitionSizeBetween", "transitionSizeBetween", "a", double.class, double.class, long.class);
|
WORLD_BOARDER__TRANSITION_SIZE_BETWEEN("transitionSizeBetween", "transitionSizeBetween", "transitionSizeBetween", "a", double.class, double.class, long.class),
|
||||||
|
|
||||||
|
MOJANGSON_PARSER__PARSE("parse", "a", String.class);
|
||||||
|
|
||||||
private final String saneFallback;
|
private final String saneFallback;
|
||||||
private final String _1_14;
|
private final String _1_14;
|
||||||
@ -59,17 +73,30 @@ public enum MethodMapping {
|
|||||||
this.paramaters = paramaters;
|
this.paramaters = paramaters;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MethodMapping(String saneFallback, Class<?>... paramaters) {
|
||||||
|
this.saneFallback = saneFallback;
|
||||||
|
|
||||||
|
this._1_14 = null;
|
||||||
|
this._1_17 = null;
|
||||||
|
this._1_18 = null;
|
||||||
|
this.paramaters = paramaters;
|
||||||
|
}
|
||||||
|
|
||||||
public Method getMethod(Class<?> clazz) {
|
public Method getMethod(Class<?> clazz) {
|
||||||
try {
|
try {
|
||||||
String methodName = _1_18;
|
String methodName = _1_18;
|
||||||
switch (ServerVersion.getServerVersion()) {
|
switch (ServerVersion.getServerVersion()) {
|
||||||
case V1_14:
|
case V1_14:
|
||||||
if (_1_14 != null)
|
if (_1_14 != null) {
|
||||||
methodName = _1_14;
|
methodName = _1_14;
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case V1_17:
|
case V1_17:
|
||||||
if (_1_17 != null)
|
if (_1_17 != null) {
|
||||||
methodName = _1_17;
|
methodName = _1_17;
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,8 +105,8 @@ public enum MethodMapping {
|
|||||||
method.setAccessible(true);
|
method.setAccessible(true);
|
||||||
|
|
||||||
return method;
|
return method;
|
||||||
} catch (NoSuchMethodException ex) {
|
} catch (NullPointerException | NoSuchMethodException ex) {
|
||||||
if (saneFallback != null) {
|
if (saneFallback != null && !saneFallback.equals(methodName)) {
|
||||||
try {
|
try {
|
||||||
Method method = clazz.getDeclaredMethod(saneFallback, paramaters);
|
Method method = clazz.getDeclaredMethod(saneFallback, paramaters);
|
||||||
method.setAccessible(true);
|
method.setAccessible(true);
|
||||||
@ -89,6 +116,8 @@ public enum MethodMapping {
|
|||||||
ex.printStackTrace();
|
ex.printStackTrace();
|
||||||
innerEx.printStackTrace();
|
innerEx.printStackTrace();
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
ex.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
|
@ -2,6 +2,7 @@ package com.songoda.core.utils;
|
|||||||
|
|
||||||
import com.songoda.core.compatibility.ClassMapping;
|
import com.songoda.core.compatibility.ClassMapping;
|
||||||
import com.songoda.core.compatibility.CompatibleMaterial;
|
import com.songoda.core.compatibility.CompatibleMaterial;
|
||||||
|
import com.songoda.core.compatibility.MethodMapping;
|
||||||
import com.songoda.core.compatibility.ServerVersion;
|
import com.songoda.core.compatibility.ServerVersion;
|
||||||
import org.bukkit.Effect;
|
import org.bukkit.Effect;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
@ -347,20 +348,15 @@ public class BlockUtils {
|
|||||||
try {
|
try {
|
||||||
if (chunkToNmsChunk == null) {
|
if (chunkToNmsChunk == null) {
|
||||||
chunkToNmsChunk = loc.getChunk().getClass().getMethod("getHandle");
|
chunkToNmsChunk = loc.getChunk().getClass().getMethod("getHandle");
|
||||||
nmsChunkGetWorld = chunkToNmsChunk.getReturnType().getMethod("getWorld");
|
nmsChunkGetWorld = MethodMapping.MC_CHUNK__GET_WORLD.getMethod(chunkToNmsChunk.getReturnType());
|
||||||
|
|
||||||
Class<?> blockPositionClass;
|
|
||||||
try {
|
try {
|
||||||
craftBlockGetPosition = craftBlock.getClass().getMethod("getPosition");
|
craftBlockGetPosition = craftBlock.getClass().getMethod("getPosition");
|
||||||
|
|
||||||
blockPositionClass = craftBlockGetPosition.getReturnType();
|
|
||||||
} catch (NoSuchMethodException ignore) {
|
} catch (NoSuchMethodException ignore) {
|
||||||
blockPositionClass = ClassMapping.BLOCK_POSITION.getClazz();
|
blockPositionConstructor = ClassMapping.BLOCK_POSITION.getClazz().getConstructor(double.class, double.class, double.class);
|
||||||
|
|
||||||
blockPositionConstructor = blockPositionClass.getConstructor(double.class, double.class, double.class);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
nmsWorldUpdateAdjacentComparators = nmsChunkGetWorld.getReturnType().getMethod("updateAdjacentComparators", blockPositionClass, ClassMapping.BLOCK.getClazz());
|
nmsWorldUpdateAdjacentComparators = MethodMapping.WORLD__UPDATE_ADJACENT_COMPARATORS.getMethod(ClassMapping.WORLD.getClazz());
|
||||||
|
|
||||||
try {
|
try {
|
||||||
craftBlockBlockDataGetter = craftBlock.getClass().getMethod("getNMS");
|
craftBlockBlockDataGetter = craftBlock.getClass().getMethod("getNMS");
|
||||||
@ -419,11 +415,11 @@ public class BlockUtils {
|
|||||||
Class<?> clazzChunk = ClassMapping.CHUNK.getClazz();
|
Class<?> clazzChunk = ClassMapping.CHUNK.getClazz();
|
||||||
|
|
||||||
getHandle = clazzCraftWorld.getMethod("getHandle");
|
getHandle = clazzCraftWorld.getMethod("getHandle");
|
||||||
getChunkAt = clazzWorld.getMethod("getChunkAt", int.class, int.class);
|
getChunkAt = MethodMapping.WORLD__GET_CHUNK_AT.getMethod(clazzWorld);
|
||||||
|
|
||||||
if (ServerVersion.isServerVersionAtLeast(ServerVersion.V1_13)) {
|
if (ServerVersion.isServerVersionAtLeast(ServerVersion.V1_13)) {
|
||||||
getBlockData = clazzBlock.getMethod("getBlockData");
|
getBlockData = MethodMapping.BLOCK__GET_BLOCK_DATA.getMethod(ClassMapping.BLOCK.getClazz());
|
||||||
setType = clazzChunk.getMethod("setType", clazzBlockPosition, clazzIBlockData, boolean.class);
|
setType = MethodMapping.CHUNK__SET_BLOCK_STATE.getMethod(ClassMapping.CHUNK.getClazz());
|
||||||
} else {
|
} else {
|
||||||
getByCombinedId = clazzBlock.getMethod("getByCombinedId", int.class);
|
getByCombinedId = clazzBlock.getMethod("getByCombinedId", int.class);
|
||||||
setType = clazzChunk.getMethod("a", clazzBlockPosition, clazzIBlockData);
|
setType = clazzChunk.getMethod("a", clazzBlockPosition, clazzIBlockData);
|
||||||
|
Loading…
Reference in New Issue
Block a user