/* * This file is part of ViaVersion - https://github.com/ViaVersion/ViaVersion * Copyright (C) 2016-2021 ViaVersion and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package com.viaversion.viaversion.protocols.protocol1_13_1to1_13; import com.viaversion.viaversion.api.connection.UserConnection; import com.viaversion.viaversion.api.data.MappingData; import com.viaversion.viaversion.api.data.MappingDataBase; import com.viaversion.viaversion.api.minecraft.item.Item; import com.viaversion.viaversion.api.protocol.AbstractProtocol; import com.viaversion.viaversion.api.protocol.packet.PacketWrapper; import com.viaversion.viaversion.api.protocol.remapper.PacketHandler; import com.viaversion.viaversion.api.protocol.remapper.PacketRemapper; import com.viaversion.viaversion.api.protocol.remapper.ValueTransformer; import com.viaversion.viaversion.api.type.Type; import com.viaversion.viaversion.protocols.protocol1_13_1to1_13.metadata.MetadataRewriter1_13_1To1_13; import com.viaversion.viaversion.protocols.protocol1_13_1to1_13.packets.EntityPackets; import com.viaversion.viaversion.protocols.protocol1_13_1to1_13.packets.InventoryPackets; import com.viaversion.viaversion.protocols.protocol1_13_1to1_13.packets.WorldPackets; import com.viaversion.viaversion.protocols.protocol1_13to1_12_2.ClientboundPackets1_13; import com.viaversion.viaversion.protocols.protocol1_13to1_12_2.ServerboundPackets1_13; import com.viaversion.viaversion.protocols.protocol1_13to1_12_2.storage.EntityTracker1_13; import com.viaversion.viaversion.protocols.protocol1_9_3to1_9_1_2.storage.ClientWorld; import com.viaversion.viaversion.rewriter.RegistryType; import com.viaversion.viaversion.rewriter.StatisticsRewriter; import com.viaversion.viaversion.rewriter.TagRewriter; public class Protocol1_13_1To1_13 extends AbstractProtocol { public static final MappingData MAPPINGS = new MappingDataBase("1.13", "1.13.2", true); public Protocol1_13_1To1_13() { super(ClientboundPackets1_13.class, ClientboundPackets1_13.class, ServerboundPackets1_13.class, ServerboundPackets1_13.class); } @Override protected void registerPackets() { new MetadataRewriter1_13_1To1_13(this); EntityPackets.register(this); InventoryPackets.register(this); WorldPackets.register(this); registerIncoming(ServerboundPackets1_13.TAB_COMPLETE, new PacketRemapper() { @Override public void registerMap() { map(Type.VAR_INT); map(Type.STRING, new ValueTransformer(Type.STRING) { @Override public String transform(PacketWrapper wrapper, String inputValue) { // 1.13 starts sending slash at start, so we remove it for compatibility return inputValue.startsWith("/") ? inputValue.substring(1) : inputValue; } }); } }); registerIncoming(ServerboundPackets1_13.EDIT_BOOK, new PacketRemapper() { @Override public void registerMap() { map(Type.FLAT_ITEM); map(Type.BOOLEAN); handler(new PacketHandler() { @Override public void handle(PacketWrapper wrapper) throws Exception { Item item = wrapper.get(Type.FLAT_ITEM, 0); InventoryPackets.toServer(item); } }); handler(new PacketHandler() { @Override public void handle(PacketWrapper wrapper) throws Exception { int hand = wrapper.read(Type.VAR_INT); if (hand == 1) { wrapper.cancel(); } } }); } }); registerOutgoing(ClientboundPackets1_13.TAB_COMPLETE, new PacketRemapper() { @Override public void registerMap() { map(Type.VAR_INT); // Transaction id map(Type.VAR_INT); // Start map(Type.VAR_INT); // Length map(Type.VAR_INT); // Count handler(new PacketHandler() { @Override public void handle(PacketWrapper wrapper) throws Exception { int start = wrapper.get(Type.VAR_INT, 1); wrapper.set(Type.VAR_INT, 1, start + 1); // Offset by +1 to take into account / at beginning // Passthrough suggestions int count = wrapper.get(Type.VAR_INT, 3); for (int i = 0; i < count; i++) { wrapper.passthrough(Type.STRING); boolean hasTooltip = wrapper.passthrough(Type.BOOLEAN); if (hasTooltip) { wrapper.passthrough(Type.STRING); // JSON Tooltip } } } }); } }); registerOutgoing(ClientboundPackets1_13.BOSSBAR, new PacketRemapper() { @Override public void registerMap() { map(Type.UUID); map(Type.VAR_INT); handler(new PacketHandler() { @Override public void handle(PacketWrapper wrapper) throws Exception { int action = wrapper.get(Type.VAR_INT, 0); if (action == 0) { wrapper.passthrough(Type.COMPONENT); wrapper.passthrough(Type.FLOAT); wrapper.passthrough(Type.VAR_INT); wrapper.passthrough(Type.VAR_INT); short flags = wrapper.read(Type.BYTE); if ((flags & 0x02) != 0) flags |= 0x04; wrapper.write(Type.UNSIGNED_BYTE, flags); } } }); } }); new TagRewriter(this, null).register(ClientboundPackets1_13.TAGS, RegistryType.ITEM); new StatisticsRewriter(this, null).register(ClientboundPackets1_13.STATISTICS); } @Override public void init(UserConnection userConnection) { userConnection.put(new EntityTracker1_13(userConnection)); if (!userConnection.has(ClientWorld.class)) { userConnection.put(new ClientWorld(userConnection)); } } @Override public MappingData getMappingData() { return MAPPINGS; } }