Class XReflection
Caches the packet related methods and is asynchronous.
This class does not handle null checks as most of the requests are from the other utility classes that already handle null checks.
Clientbound Packets are considered fake updates to the client without changing the actual data. Since all the data is handled by the server.
A useful resource used to compare mappings is Mini's Mapping Viewer Another one is Cephx.
- Version:
- 11.0.0
- Author:
- Crypto Morin
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringMojang remapped their NMS in 1.17: Spigot Threadstatic final intstatic final intThe raw minor version number.static final StringMojang remapped their NMS in 1.17: Spigot Threadstatic final StringWe use reflection mainly to avoid writing a new class for version barrier.static final intThe raw patch version number.static final MinecraftMapping -
Method Summary
Modifier and TypeMethodDescriptionstatic <T,H extends Handle<T>>
AggregateHandle<T,H> any(H... handles) static <T,H extends Handle<T>>
AggregateHandle<T,H> static DynamicClassHandlestatic <T> T[]concatenate(T[] a, T[] b) static Stringstatic Class<?>getCraftClass(String name) Deprecated.static IntegergetLatestPatchNumberOf(int minorVersion) Gets the latest known patch number of the given minor version.static Class<?>getNMSClass(String name) Deprecated.useofMinecraft()static Class<?>getNMSClass(String packageName, String name) Deprecated.useofMinecraft()instead.static StringGets the full version information of the server.static ReflectiveNamespacestatic StaticClassHandlestatic MinecraftClassHandlestatic <T extends Throwable>
Tstatic <T> CompletableFuture<T>stacktrace(CompletableFuture<T> completableFuture) static booleansupports(int minorNumber) Checks whether the server version is equal or greater than the given version.static booleansupports(int minorNumber, int patchNumber) Checks whether the server version is equal or greater than the given version.static booleansupports(int majorNumber, int minorNumber, int patchNumber) A more friendly version ofsupports(int, int)for people with OCD.static booleansupportsPatch(int patchNumber) Deprecated.static RuntimeExceptionthrowCheckedException(Throwable exception) static Class<?>toArrayClass(Class<?> clazz) Gives an array version of a class.static <T> VersionHandle<T>static <T> VersionHandle<T>v(int version, int patch, T handle) static <T> VersionHandle<T>static <T> VersionHandle<T>v(int version, T handle) Gives thehandleobject if the server version is equal or greater than the given version.
-
Field Details
-
NMS_VERSION
We use reflection mainly to avoid writing a new class for version barrier. The version barrier is for NMS that uses the Minecraft version as the main package name.E.g. EntityPlayer in 1.15 is in the class
net.minecraft.server.v1_15_R1but in 1.14 it's innet.minecraft.server.v1_14_R1In order to maintain cross-version compatibility we cannot import these classes.Performance is not a concern for these specific statically initialized values.
This will no longer work because of Paper no-relocation strategy.
-
MAJOR_NUMBER
public static final int MAJOR_NUMBER -
MINOR_NUMBER
public static final int MINOR_NUMBERThe raw minor version number. E.g.v1_17_R1to17- Since:
- 4.0.0
- See Also:
-
PATCH_NUMBER
public static final int PATCH_NUMBERThe raw patch version number. Refers to the major.minor.patch version scheme. E.g.v1.20.4to4v1.18.2to2v1.19.1to1
I'd not recommend developers to support individual patches at all. You should always support the latest patch. For example, between v1.14.0, v1.14.1, v1.14.2, v1.14.3 and v1.14.4 you should only support v1.14.4
This can be used to warn server owners when your plugin will break on older patches.
- Since:
- 7.0.0
- See Also:
-
CRAFTBUKKIT_PACKAGE
Mojang remapped their NMS in 1.17: Spigot Thread -
NMS_PACKAGE
Mojang remapped their NMS in 1.17: Spigot Thread -
SUPPORTED_MAPPING
-
-
Method Details
-
findNMSVersionString
-
getVersionInformation
Gets the full version information of the server. Useful for including in errors.- Since:
- 7.0.0
-
getLatestPatchNumberOf
Gets the latest known patch number of the given minor version. For example: 1.14 -> 4, 1.17 -> 10 The latest version is expected to get newer patches, so make sure to account for unexpected results.- Parameters:
minorVersion- the minor version to get the patch number of.- Returns:
- the patch number of the given minor version if recognized, otherwise null.
- Since:
- 7.0.0
-
v
Gives thehandleobject if the server version is equal or greater than the given version. This method is purely for readability and should be always used withVersionHandle.orElse(Object).- Since:
- 5.0.0
- See Also:
-
v
- Since:
- 9.5.0
-
v
-
v
-
supports
public static boolean supports(int minorNumber) Checks whether the server version is equal or greater than the given version.- Parameters:
minorNumber- the version to compare the server version with.- Returns:
- true if the version is equal or newer, otherwise false.
- Since:
- 4.0.0
- See Also:
-
supports
public static boolean supports(int majorNumber, int minorNumber, int patchNumber) A more friendly version ofsupports(int, int)for people with OCD. -
supports
public static boolean supports(int minorNumber, int patchNumber) Checks whether the server version is equal or greater than the given version.- Parameters:
minorNumber- the minor version to compare the server version with.patchNumber- the patch number to compare the server version with.- Returns:
- true if the version is equal or newer, otherwise false.
- Since:
- 7.1.0
- See Also:
-
supportsPatch
Deprecated.Checks whether the server version is equal or greater than the given version.- Parameters:
patchNumber- the version to compare the server version with.- Returns:
- true if the version is equal or newer, otherwise false.
- Since:
- 7.0.0
- See Also:
-
getNMSClass
@Nonnull @Deprecated public static Class<?> getNMSClass(@Nullable String packageName, @Nonnull String name) Deprecated.useofMinecraft()instead.Get a NMS (net.minecraft.server) class which accepts a package for 1.17 compatibility.- Parameters:
packageName- the 1.17+ package name of this class.name- the name of the class.- Returns:
- the NMS class or null if not found.
- Throws:
RuntimeException- if the class could not be found.- Since:
- 4.0.0
- See Also:
-
getNMSClass
Deprecated.useofMinecraft()Get a NMSNMS_PACKAGEclass.- Parameters:
name- the name of the class.- Returns:
- the NMS class or null if not found.
- Throws:
RuntimeException- if the class could not be found.- Since:
- 1.0.0
- See Also:
-
getCraftClass
Deprecated.useofMinecraft()instead.Get a CraftBukkit (org.bukkit.craftbukkit) class.- Parameters:
name- the name of the class to load.- Returns:
- the CraftBukkit class or null if not found.
- Throws:
RuntimeException- if the class could not be found.- Since:
- 1.0.0
-
toArrayClass
Gives an array version of a class. For example if you wantedEntityPlayer[]you'd use:Class EntityPlayer = ReflectionUtils.getNMSClass("...", "EntityPlayer"); Class EntityPlayerArray = ReflectionUtils.toArrayClass(EntityPlayer);- Parameters:
clazz- the class to get the array version of. You could use for multi-dimensions arrays too.- Throws:
RuntimeException- if the class could not be found.
-
ofMinecraft
- Since:
- v9.0.0
-
classHandle
- Since:
- v9.0.0
-
of
- Since:
- v11.0.0
-
namespaced
- Since:
- v11.0.0
-
any
- Since:
- v9.0.0
-
anyOf
@SafeVarargs public static <T,H extends Handle<T>> AggregateHandle<T,H> anyOf(Callable<H>... handles) - Since:
- v9.0.0
-
relativizeSuppressedExceptions
-
throwCheckedException
-
stacktrace
-
concatenate
@Internal public static <T> T[] concatenate(T[] a, T[] b)
-
ofMinecraft()instead.