ViaVersion/common/src/main/java/com/viaversion/viaversion/protocols/protocol1_11to1_10/packets/InventoryPackets.java

92 lines
4.0 KiB
Java
Raw Normal View History

/*
* This file is part of ViaVersion - https://github.com/ViaVersion/ViaVersion
2024-01-01 12:39:45 +01:00
* Copyright (C) 2016-2024 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 <http://www.gnu.org/licenses/>.
*/
package com.viaversion.viaversion.protocols.protocol1_11to1_10.packets;
2016-08-10 20:12:27 +02:00
import com.viaversion.viaversion.api.minecraft.item.Item;
import com.viaversion.viaversion.api.protocol.remapper.PacketHandlers;
import com.viaversion.viaversion.api.type.Type;
import com.viaversion.viaversion.protocols.protocol1_11to1_10.EntityIdRewriter;
import com.viaversion.viaversion.protocols.protocol1_11to1_10.Protocol1_11To1_10;
import com.viaversion.viaversion.protocols.protocol1_9_3to1_9_1_2.ClientboundPackets1_9_3;
import com.viaversion.viaversion.protocols.protocol1_9_3to1_9_1_2.ServerboundPackets1_9_3;
import com.viaversion.viaversion.rewriter.ItemRewriter;
2016-08-10 20:12:27 +02:00
public class InventoryPackets extends ItemRewriter<ClientboundPackets1_9_3, ServerboundPackets1_9_3, Protocol1_11To1_10> {
2019-10-04 13:01:33 +02:00
public InventoryPackets(Protocol1_11To1_10 protocol) {
super(protocol, Type.ITEM1_8, Type.ITEM1_8_SHORT_ARRAY);
}
2016-08-10 20:12:27 +02:00
@Override
public void registerPackets() {
registerSetSlot(ClientboundPackets1_9_3.SET_SLOT);
registerWindowItems(ClientboundPackets1_9_3.WINDOW_ITEMS);
registerEntityEquipment(ClientboundPackets1_9_3.ENTITY_EQUIPMENT);
2016-08-10 20:12:27 +02:00
// Plugin message Packet -> Trading
protocol.registerClientbound(ClientboundPackets1_9_3.PLUGIN_MESSAGE, new PacketHandlers() {
2016-08-10 20:12:27 +02:00
@Override
public void register() {
2016-08-10 20:12:27 +02:00
map(Type.STRING); // 0 - Channel
handler(wrapper -> {
if (wrapper.get(Type.STRING, 0).equalsIgnoreCase("MC|TrList")) {
wrapper.passthrough(Type.INT); // Passthrough Window ID
2016-08-10 20:12:27 +02:00
int size = wrapper.passthrough(Type.UNSIGNED_BYTE);
for (int i = 0; i < size; i++) {
2023-10-19 01:28:12 +02:00
EntityIdRewriter.toClientItem(wrapper.passthrough(Type.ITEM1_8)); // Input Item
EntityIdRewriter.toClientItem(wrapper.passthrough(Type.ITEM1_8)); // Output Item
2016-08-10 20:12:27 +02:00
boolean secondItem = wrapper.passthrough(Type.BOOLEAN); // Has second item
if (secondItem)
2023-10-19 01:28:12 +02:00
EntityIdRewriter.toClientItem(wrapper.passthrough(Type.ITEM1_8)); // Second Item
2016-08-10 20:12:27 +02:00
wrapper.passthrough(Type.BOOLEAN); // Trade disabled
wrapper.passthrough(Type.INT); // Number of tools uses
wrapper.passthrough(Type.INT); // Maximum number of trade uses
2016-08-10 20:12:27 +02:00
}
}
});
}
});
registerClickWindow(ServerboundPackets1_9_3.CLICK_WINDOW);
registerCreativeInvAction(ServerboundPackets1_9_3.CREATIVE_INVENTORY_ACTION);
}
@Override
public Item handleItemToClient(Item item) {
EntityIdRewriter.toClientItem(item);
return item;
2016-08-10 20:12:27 +02:00
}
@Override
public Item handleItemToServer(Item item) {
EntityIdRewriter.toServerItem(item);
if (item == null) return null;
boolean newItem = item.identifier() >= 218 && item.identifier() <= 234;
newItem |= item.identifier() == 449 || item.identifier() == 450;
if (newItem) { // Replace server-side unknown items
item.setIdentifier(1);
item.setData((short) 0);
}
return item;
}
2016-08-10 20:12:27 +02:00
}