ViaLegacy/src/main/java/net/raphimc/vialegacy/protocols/beta/protocolb1_2_0_2tob1_1_2/ServerboundPacketsb1_1.java

107 lines
3.5 KiB
Java

/*
* This file is part of ViaLegacy - https://github.com/RaphiMC/ViaLegacy
* Copyright (C) 2020-2024 RK_01/RaphiMC 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 net.raphimc.vialegacy.protocols.beta.protocolb1_2_0_2tob1_1_2;
import com.viaversion.viaversion.api.connection.UserConnection;
import com.viaversion.viaversion.api.protocol.packet.ServerboundPacketType;
import io.netty.buffer.ByteBuf;
import net.raphimc.vialegacy.api.splitter.PreNettyPacketType;
import java.util.function.BiConsumer;
import static net.raphimc.vialegacy.api.splitter.PreNettyTypes.readItemStackb1_1;
import static net.raphimc.vialegacy.api.splitter.PreNettyTypes.readUTF;
public enum ServerboundPacketsb1_1 implements ServerboundPacketType, PreNettyPacketType {
KEEP_ALIVE(0, (user, buf) -> {
}),
LOGIN(1, (user, buf) -> {
buf.skipBytes(4);
readUTF(buf);
readUTF(buf);
buf.skipBytes(9);
}),
HANDSHAKE(2, (user, buf) -> readUTF(buf)),
CHAT_MESSAGE(3, (user, buf) -> readUTF(buf)),
INTERACT_ENTITY(7, (user, buf) -> buf.skipBytes(9)),
RESPAWN(9, (user, buf) -> {
}),
PLAYER_MOVEMENT(10, (user, buf) -> buf.skipBytes(1)),
PLAYER_POSITION(11, (user, buf) -> buf.skipBytes(33)),
PLAYER_ROTATION(12, (user, buf) -> buf.skipBytes(9)),
PLAYER_POSITION_AND_ROTATION(13, (user, buf) -> buf.skipBytes(41)),
PLAYER_DIGGING(14, (user, buf) -> buf.skipBytes(11)),
PLAYER_BLOCK_PLACEMENT(15, (user, buf) -> {
buf.skipBytes(10);
readItemStackb1_1(buf);
}),
HELD_ITEM_CHANGE(16, (user, buf) -> buf.skipBytes(2)),
ANIMATION(18, (user, buf) -> buf.skipBytes(5)),
CLOSE_WINDOW(101, (user, buf) -> buf.skipBytes(1)),
CLICK_WINDOW(102, (user, buf) -> {
buf.skipBytes(6);
readItemStackb1_1(buf);
}),
WINDOW_CONFIRMATION(106, (user, buf) -> buf.skipBytes(4)),
UPDATE_SIGN(130, (user, buf) -> {
buf.skipBytes(10);
readUTF(buf);
readUTF(buf);
readUTF(buf);
readUTF(buf);
}),
DISCONNECT(255, (user, buf) -> readUTF(buf));
private static final ServerboundPacketsb1_1[] REGISTRY = new ServerboundPacketsb1_1[256];
static {
for (ServerboundPacketsb1_1 packet : values()) {
REGISTRY[packet.id] = packet;
}
}
public static ServerboundPacketsb1_1 getPacket(final int id) {
return REGISTRY[id];
}
private final int id;
private final BiConsumer<UserConnection, ByteBuf> packetReader;
ServerboundPacketsb1_1(final int id, final BiConsumer<UserConnection, ByteBuf> packetReader) {
this.id = id;
this.packetReader = packetReader;
}
@Override
public int getId() {
return this.id;
}
@Override
public String getName() {
return name();
}
@Override
public BiConsumer<UserConnection, ByteBuf> getPacketReader() {
return this.packetReader;
}
}