Package com.cryptomorin.xseries
Class ReflectionUtils
java.lang.Object
com.cryptomorin.xseries.ReflectionUtils
ReflectionUtils - Reflection handler for NMS and CraftBukkit.
Caches the packet related methods and is asynchronous.
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
- Version:
- 5.0.0
- Author:
- Crypto Morin
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
static final class
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Mojang remapped their NMS in 1.17 https://www.spigotmc.org/threads/spigot-bungeecord-1-17.510208/#post-4184317static final String
Mojang remapped their NMS in 1.17 https://www.spigotmc.org/threads/spigot-bungeecord-1-17.510208/#post-4184317static final int
The raw minor version number.static final String
We use reflection mainly to avoid writing a new class for version barrier. -
Method Summary
Modifier and TypeMethodDescriptionstatic Class<?>
getArrayClass
(String clazz, boolean nms) static Object
getConnection
(org.bukkit.entity.Player player) static Class<?>
getCraftClass
(String name) Get a CraftBukkit (org.bukkit.craftbukkit) class.static Object
getHandle
(org.bukkit.entity.Player player) static Class<?>
getNMSClass
(String name) Get a NMS (net.minecraft.server) class.static Class<?>
getNMSClass
(String newPackage, String name) Get a NMS (net.minecraft.server) class which accepts a package for 1.17 compatibility.static CompletableFuture<Void>
sendPacket
(org.bukkit.entity.Player player, Object... packets) Sends a packet to the player asynchronously if they're online.static void
sendPacketSync
(org.bukkit.entity.Player player, Object... packets) Sends a packet to the player synchronously if they're online.static boolean
supports
(int version) Checks whether the server version is equal or greater than the given version.static Class<?>
toArrayClass
(Class<?> clazz) static <T> ReflectionUtils.CallableVersionHandler<T>
static <T> ReflectionUtils.VersionHandler<T>
v
(int version, T handle) This method is purely for readability.
-
Field Details
-
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_R1
but in 1.14 it's innet.minecraft.server.v1_14_R1
In order to maintain cross-version compatibility we cannot import these classes.Performance is not a concern for these specific statically initialized values.
-
VER
public static final int VERThe raw minor version number. E.g.v1_17_R1
to17
- Since:
- 4.0.0
-
CRAFTBUKKIT
Mojang remapped their NMS in 1.17 https://www.spigotmc.org/threads/spigot-bungeecord-1-17.510208/#post-4184317 -
NMS
Mojang remapped their NMS in 1.17 https://www.spigotmc.org/threads/spigot-bungeecord-1-17.510208/#post-4184317
-
-
Method Details
-
v
This method is purely for readability. No performance is gained.- Since:
- 5.0.0
-
v
-
supports
public static boolean supports(int version) Checks whether the server version is equal or greater than the given version.- Parameters:
version
- the version to compare the server version with.- Returns:
- true if the version is equal or newer, otherwise false.
- Since:
- 4.0.0
-
getNMSClass
Get a NMS (net.minecraft.server) class which accepts a package for 1.17 compatibility.- Parameters:
newPackage
- the 1.17 package name.name
- the name of the class.- Returns:
- the NMS class or null if not found.
- Since:
- 4.0.0
-
getNMSClass
Get a NMS (net.minecraft.server) class.- Parameters:
name
- the name of the class.- Returns:
- the NMS class or null if not found.
- Since:
- 1.0.0
-
sendPacket
@Nonnull public static CompletableFuture<Void> sendPacket(@Nonnull org.bukkit.entity.Player player, @Nonnull Object... packets) Sends a packet to the player asynchronously if they're online. Packets are thread-safe.- Parameters:
player
- the player to send the packet to.packets
- the packets to send.- Returns:
- the async thread handling the packet.
- Since:
- 1.0.0
- See Also:
-
sendPacketSync
public static void sendPacketSync(@Nonnull org.bukkit.entity.Player player, @Nonnull Object... packets) Sends a packet to the player synchronously if they're online.- Parameters:
player
- the player to send the packet to.packets
- the packets to send.- Since:
- 2.0.0
- See Also:
-
getHandle
-
getConnection
-
getCraftClass
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.
- Since:
- 1.0.0
-
getArrayClass
-
toArrayClass
-