Search in sources :

Example 16 with ProtocolInfo

use of com.viaversion.viaversion.api.connection.ProtocolInfo in project ViaFabric by ViaVersion.

the class MixinDebugHud method getLeftText.

@Inject(at = @At("RETURN"), method = "getLeftText")
protected void getLeftText(CallbackInfoReturnable<List<String>> info) {
    String line = "[ViaFabric] I: " + Via.getManager().getConnectionManager().getConnections().size() + " (F: " + Via.getManager().getConnectionManager().getConnectedClients().size() + ")";
    @SuppressWarnings("ConstantConditions") ChannelHandler viaDecoder = ((MixinClientConnectionAccessor) MinecraftClient.getInstance().getNetworkHandler().getConnection()).getChannel().pipeline().get(CommonTransformer.HANDLER_DECODER_NAME);
    if (viaDecoder instanceof FabricDecodeHandler) {
        ProtocolInfo protocol = ((FabricDecodeHandler) viaDecoder).getInfo().getProtocolInfo();
        if (protocol != null) {
            ProtocolVersion serverVer = ProtocolVersion.getProtocol(protocol.getServerProtocolVersion());
            ProtocolVersion clientVer = ProtocolVersion.getProtocol(protocol.getProtocolVersion());
            line += " / C: " + clientVer + " S: " + serverVer + " A: " + protocol.getUser().isActive();
        }
    }
    info.getReturnValue().add(line);
}
Also used : FabricDecodeHandler(com.viaversion.fabric.common.handler.FabricDecodeHandler) ProtocolInfo(com.viaversion.viaversion.api.connection.ProtocolInfo) ChannelHandler(io.netty.channel.ChannelHandler) ProtocolVersion(com.viaversion.viaversion.api.protocol.version.ProtocolVersion) Inject(org.spongepowered.asm.mixin.injection.Inject)

Example 17 with ProtocolInfo

use of com.viaversion.viaversion.api.connection.ProtocolInfo in project ViaVersion by ViaVersion.

the class BukkitInventoryQuickMoveProvider method registerQuickMoveAction.

@Override
public boolean registerQuickMoveAction(short windowId, short slotId, short actionId, UserConnection userConnection) {
    if (!supported) {
        return false;
    }
    if (slotId < 0) {
        // clicked out of inv slot
        return false;
    }
    if (windowId == 0) {
        // This has almost definitely something to do with the offhand slot.
        if (slotId >= 36 && slotId <= 45) {
            int protocolId = Via.getAPI().getServerVersion().lowestSupportedVersion();
            // this seems to be working just fine.
            if (protocolId == ProtocolVersion.v1_8.getVersion()) {
                return false;
            }
        }
    }
    ProtocolInfo info = userConnection.getProtocolInfo();
    UUID uuid = info.getUuid();
    BukkitInventoryUpdateTask updateTask = updateTasks.get(uuid);
    final boolean registered = updateTask != null;
    if (!registered) {
        updateTask = new BukkitInventoryUpdateTask(this, uuid);
        updateTasks.put(uuid, updateTask);
    }
    // http://wiki.vg/index.php?title=Protocol&oldid=13223#Click_Window
    updateTask.addItem(windowId, slotId, actionId);
    if (!registered && Via.getPlatform().isPluginEnabled()) {
        Via.getPlatform().runSync(updateTask);
    }
    return true;
}
Also used : ProtocolInfo(com.viaversion.viaversion.api.connection.ProtocolInfo) UUID(java.util.UUID) BukkitInventoryUpdateTask(com.viaversion.viaversion.bukkit.tasks.protocol1_12to1_11_1.BukkitInventoryUpdateTask)

Aggregations

ProtocolInfo (com.viaversion.viaversion.api.connection.ProtocolInfo)17 ProtocolVersion (com.viaversion.viaversion.api.protocol.version.ProtocolVersion)9 FabricDecodeHandler (com.viaversion.fabric.common.handler.FabricDecodeHandler)7 ChannelHandler (io.netty.channel.ChannelHandler)7 Inject (org.spongepowered.asm.mixin.injection.Inject)7 UserConnection (com.viaversion.viaversion.api.connection.UserConnection)3 PacketWrapper (com.viaversion.viaversion.api.protocol.packet.PacketWrapper)3 ProtocolPathEntry (com.viaversion.viaversion.api.protocol.ProtocolPathEntry)2 InvocationTargetException (java.lang.reflect.InvocationTargetException)2 UUID (java.util.UUID)2 ProxiedPlayer (net.md_5.bungee.api.connection.ProxiedPlayer)2 ProtocolStorage (com.github.dirtpowered.dirtmv.data.user.ProtocolStorage)1 UserData (com.github.dirtpowered.dirtmv.data.user.UserData)1 PlayerMovementTracker (com.github.dirtpowered.dirtmv.network.versions.Release47To5.entity.PlayerMovementTracker)1 JsonElement (com.google.gson.JsonElement)1 JsonObject (com.google.gson.JsonObject)1 JsonParseException (com.google.gson.JsonParseException)1 AddressParser (com.viaversion.fabric.common.AddressParser)1 NativeVersionProvider (com.viaversion.fabric.common.platform.NativeVersionProvider)1 StorableObject (com.viaversion.viaversion.api.connection.StorableObject)1