cn.nukkit.network.protocol.PacketViolationWarningPacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.network.protocol;
import cn.nukkit.api.Since;
import lombok.ToString;
@Since("1.3.0.0-PN")
@ToString
public class PacketViolationWarningPacket extends DataPacket {
public static final byte NETWORK_ID = ProtocolInfo.PACKET_VIOLATION_WARNING_PACKET;
@Since("1.3.0.0-PN") public PacketViolationType type;
@Since("1.3.0.0-PN") public PacketViolationSeverity severity;
@Since("1.3.0.0-PN") public int packetId;
@Since("1.3.0.0-PN") public String context;
@Override
public byte pid() {
return NETWORK_ID;
}
@Override
public void decode() {
this.type = PacketViolationType.values()[this.getVarInt() + 1];
this.severity = PacketViolationSeverity.values()[this.getVarInt()];
this.packetId = this.getVarInt();
this.context = this.getString();
}
@Override
public void encode() {
this.reset();
this.putVarInt(this.type.ordinal() - 1);
this.putVarInt(this.severity.ordinal());
this.putVarInt(this.packetId);
this.putString(this.context);
}
@Since("1.3.0.0-PN")
public enum PacketViolationType {
UNKNOWN,
MALFORMED_PACKET
}
@Since("1.3.0.0-PN")
public enum PacketViolationSeverity {
UNKNOWN,
WARNING,
FINAL_WARNING,
TERMINATING_CONNECTION
}
}