| package us.myles.ViaVersion; |
| |
| import io.netty.buffer.ByteBuf; |
| import io.netty.channel.ChannelFuture; |
| import io.netty.channel.ChannelHandler; |
| import io.netty.channel.ChannelInitializer; |
| import io.netty.channel.ChannelPipeline; |
| import io.netty.channel.socket.SocketChannel; |
| import org.bukkit.Bukkit; |
| import org.bukkit.entity.Player; |
| import org.bukkit.event.EventHandler; |
| import org.bukkit.event.Listener; |
| import org.bukkit.event.player.PlayerQuitEvent; |
| import org.bukkit.inventory.ItemStack; |
| import org.bukkit.plugin.java.JavaPlugin; |
| import us.myles.ViaVersion.api.ViaVersion; |
| import us.myles.ViaVersion.api.ViaVersionAPI; |
| import us.myles.ViaVersion.armor.ArmorListener; |
| import us.myles.ViaVersion.commands.ViaVersionCommand; |
| import us.myles.ViaVersion.handlers.ViaVersionInitializer; |
| import us.myles.ViaVersion.listeners.CommandBlockListener; |
| import us.myles.ViaVersion.update.UpdateListener; |
| import us.myles.ViaVersion.update.UpdateUtil; |
| import us.myles.ViaVersion.util.ReflectionUtil; |
| |
| import java.lang.reflect.Field; |
| import java.util.List; |
| import java.util.Map; |
| import java.util.UUID; |
| import java.util.concurrent.Callable; |
| import java.util.concurrent.ConcurrentHashMap; |
| import java.util.concurrent.Future; |
| import java.util.concurrent.TimeUnit; |
| |
| public class ViaVersionPlugin extends JavaPlugin implements ViaVersionAPI { |
| |
| private final Map<UUID, ConnectionInfo> portedPlayers = new ConcurrentHashMap<UUID, ConnectionInfo>(); |
| private boolean debug = false; |
| |
| @Override |
| public void onEnable() { |
| ViaVersion.setInstance(this); |
| saveDefaultConfig(); |
| if (System.getProperty("ViaVersion") != null) { |
| getLogger().severe("ViaVersion is already loaded, we don't support reloads. Please reboot if you wish to update."); |
| getLogger().severe("Some features may not work."); |
| return; |
| } |
| |
| getLogger().info("ViaVersion " + getDescription().getVersion() + " is now enabled, injecting. (Allows 1.8 to be accessed via 1.9)"); |
| try { |
| injectPacketHandler(); |
| System.setProperty("ViaVersion", getDescription().getVersion()); |
| } catch (Exception e) { |
| getLogger().severe("Unable to inject handlers, are you on 1.8? "); |
| e.printStackTrace(); |
| } |
| if (getConfig().getBoolean("checkforupdates")) |
| UpdateUtil.sendUpdateMessage(this); |
| |
| Bukkit.getPluginManager().registerEvents(new Listener() { |
| @EventHandler |
| public void onPlayerQuit(PlayerQuitEvent e) { |
| removePortedClient(e.getPlayer().getUniqueId()); |
| } |
| }, this); |
| |
| Bukkit.getPluginManager().registerEvents(new ArmorListener(this), this); |
| Bukkit.getPluginManager().registerEvents(new CommandBlockListener(this), this); |
| Bukkit.getPluginManager().registerEvents(new UpdateListener(this), this); |
| |
| getCommand("viaversion").setExecutor(new ViaVersionCommand(this)); |
| } |
| |
| public void injectPacketHandler() throws Exception { |
| Class<?> serverClazz = ReflectionUtil.nms("MinecraftServer"); |
| Object server = ReflectionUtil.invokeStatic(serverClazz, "getServer"); |
| Object connection = serverClazz.getDeclaredMethod("getServerConnection").invoke(server); |
| // loop through all fields checking if list |
| boolean injected = false; |
| for (Field field : connection.getClass().getDeclaredFields()) { |
| field.setAccessible(true); |
| Object value = field.get(connection); |
| if (value instanceof List) { |
| for (Object o : (List) value) { |
| if (o instanceof ChannelFuture) { |
| ChannelFuture future = (ChannelFuture) o; |
| ChannelPipeline pipeline = future.channel().pipeline(); |
| ChannelHandler bootstrapAcceptor = pipeline.first(); |
| ChannelInitializer<SocketChannel> oldInit = ReflectionUtil.get(bootstrapAcceptor, "childHandler", ChannelInitializer.class); |
| ChannelInitializer newInit = new ViaVersionInitializer(oldInit); |
| ReflectionUtil.set(bootstrapAcceptor, "childHandler", newInit); |
| injected = true; |
| } else { |
| break; // not the right list. |
| } |
| } |
| } |
| } |
| if (!injected) { |
| throw new Exception("Could not find server to inject (Please ensure late-bind in your spigot.yml is false)"); |
| } |
| } |
| |
| @Override |
| public boolean isPorted(Player player) { |
| return portedPlayers.containsKey(player.getUniqueId()); |
| } |
| |
| @Override |
| public String getVersion() { |
| return getDescription().getVersion(); |
| } |
| |
| public void sendRawPacket(Player player, ByteBuf packet) throws IllegalArgumentException { |
| if (!isPorted(player)) throw new IllegalArgumentException("This player is not on 1.9"); |
| ConnectionInfo ci = portedPlayers.get(player.getUniqueId()); |
| ci.sendRawPacket(packet); |
| } |
| |
| @Override |
| public boolean isDebug() { |
| return this.debug; |
| } |
| |
| @Override |
| public boolean isSyncedChunks() { |
| return getConfig().getBoolean("sync-chunks", true); |
| } |
| |
| public void setDebug(boolean value) { |
| this.debug = value; |
| } |
| |
| public void addPortedClient(ConnectionInfo info) { |
| portedPlayers.put(info.getUUID(), info); |
| } |
| |
| public void removePortedClient(UUID clientID) { |
| portedPlayers.remove(clientID); |
| } |
| |
| public static ItemStack getHandItem(final ConnectionInfo info) { |
| try { |
| return Bukkit.getScheduler().callSyncMethod(Bukkit.getPluginManager().getPlugin("ViaVersion"), new Callable<ItemStack>() { |
| @Override |
| public ItemStack call() throws Exception { |
| if (info.getPlayer() != null) { |
| return info.getPlayer().getItemInHand(); |
| } |
| return null; |
| } |
| }).get(10, TimeUnit.SECONDS); |
| } catch (Exception e) { |
| System.out.println("Error fetching hand item "); |
| e.printStackTrace(); |
| return null; |
| } |
| } |
| |
| public void run(final Runnable runnable, boolean wait) { |
| try { |
| Future f = Bukkit.getScheduler().callSyncMethod(Bukkit.getPluginManager().getPlugin("ViaVersion"), new Callable<Boolean>() { |
| @Override |
| public Boolean call() throws Exception { |
| runnable.run(); |
| return true; |
| } |
| }); |
| if(wait){ |
| f.get(10, TimeUnit.SECONDS); |
| } |
| } catch (Exception e) { |
| System.out.println("Failed to run task."); |
| e.printStackTrace(); |
| } |
| } |
| } |