-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support 1.9 using ProtocolLib (#1199)
Signed-off-by: Christopher White <[email protected]>
- Loading branch information
1 parent
7fa2a4d
commit 51ac791
Showing
33 changed files
with
2,027 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
package tc.oc.pgm.util.bukkit; | ||
|
||
import java.lang.reflect.Constructor; | ||
import java.lang.reflect.InvocationTargetException; | ||
import org.bukkit.Bukkit; | ||
import tc.oc.pgm.util.ClassLogger; | ||
import tc.oc.pgm.util.nms.NMSHacksNoOp; | ||
import tc.oc.pgm.util.nms.NMSHacksPlatform; | ||
import tc.oc.pgm.util.nms.v1_8.NMSHacksSportPaper; | ||
import tc.oc.pgm.util.nms.v1_9.NMSHacks1_9; | ||
import tc.oc.pgm.util.reflect.ReflectionUtils; | ||
|
||
public enum Platform { | ||
UNKNOWN("UNKNOWN", "UNKNOWN", NMSHacksNoOp.class, false), | ||
SPORTPAPER_1_8("SportPaper", "1.8", NMSHacksSportPaper.class, false), | ||
SPIGOT_1_8( | ||
"Spigot", | ||
"1.8", // NMSHacks1_8 causes issues with other versions, get it dynamically | ||
(Class<? extends NMSHacksPlatform>) | ||
ReflectionUtils.getClassFromName("tc.oc.pgm.util.nms.v1_8.NMSHacks1_8"), | ||
false), | ||
PAPER_1_8( | ||
"Paper", | ||
"1.8", // NMSHacks1_8 causes issues with other versions, get it dynamically | ||
(Class<? extends NMSHacksPlatform>) | ||
ReflectionUtils.getClassFromName("tc.oc.pgm.util.nms.v1_8.NMSHacks1_8"), | ||
false), | ||
SPIGOT_1_9("Spigot", "1.9", NMSHacks1_9.class, true), | ||
PAPER_1_9("Paper", "1.9", NMSHacks1_9.class, true); | ||
|
||
private static ClassLogger logger = ClassLogger.get(Platform.class);; | ||
public static Platform SERVER_PLATFORM = computeServerPlatform(); | ||
|
||
private static Platform computeServerPlatform() { | ||
String versionString = Bukkit.getServer().getVersion(); | ||
for (Platform platform : Platform.values()) { | ||
if (versionString.contains(platform.variant) | ||
&& versionString.contains("MC: " + platform.majorVersion)) { | ||
return platform; | ||
} | ||
} | ||
return UNKNOWN; | ||
} | ||
|
||
private final String variant; | ||
private final String majorVersion; | ||
private final Class<? extends NMSHacksPlatform> nmsHacksClass; | ||
private final boolean requiresProtocolLib; | ||
|
||
Platform( | ||
String variant, | ||
String majorVersion, | ||
Class<? extends NMSHacksPlatform> nmsHacksClass, | ||
boolean requiresProtocolLib) { | ||
this.variant = variant; | ||
this.majorVersion = majorVersion; | ||
this.nmsHacksClass = nmsHacksClass; | ||
this.requiresProtocolLib = requiresProtocolLib; | ||
} | ||
|
||
public NMSHacksPlatform getNMSHacks() { | ||
if (this == UNKNOWN) { | ||
Bukkit.getServer().getPluginManager().disablePlugin(BukkitUtils.getPlugin()); | ||
throw new UnsupportedOperationException("UNKNOWN Platform!"); | ||
} | ||
if (this.requiresProtocolLib | ||
&& !Bukkit.getServer().getPluginManager().isPluginEnabled("ProtocolLib")) { | ||
Bukkit.getServer().getPluginManager().disablePlugin(BukkitUtils.getPlugin()); | ||
throw new UnsupportedOperationException( | ||
"ProtocolLib is required for PGM to run on " + this.toString()); | ||
} | ||
if (this == SERVER_PLATFORM) { | ||
try { | ||
logger.info("Detected server: " + this.toString()); | ||
Constructor<? extends NMSHacksPlatform> constructor = nmsHacksClass.getConstructor(); | ||
constructor.setAccessible(true); | ||
return constructor.newInstance(); | ||
} catch (InvocationTargetException | ||
| InstantiationException | ||
| IllegalAccessException | ||
| NoSuchMethodException e) { | ||
Bukkit.getServer().getPluginManager().disablePlugin(BukkitUtils.getPlugin()); | ||
throw new RuntimeException(e); | ||
} | ||
} else { | ||
Bukkit.getServer().getPluginManager().disablePlugin(BukkitUtils.getPlugin()); | ||
throw new UnsupportedOperationException("getNMSHacks called for incorrect platform!"); | ||
} | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return this.variant + " (" + this.majorVersion + ")"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.