Package net.minecraftforge.network
Class VanillaPacketSplitter
java.lang.Object
net.minecraftforge.network.VanillaPacketSplitter
A custom payload channel that allows sending vanilla server-to-client packets, even if they would normally
be too large for the vanilla protocol. This is achieved by splitting them into multiple custom payload packets.
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprivate static ResourceLocation
private static org.apache.logging.log4j.Logger
private static int
private static int
private static int
private static List<FriendlyByteBuf>
private static byte
private static byte
private static String
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
appendPackets(ConnectionProtocol protocol, PacketFlow direction, Packet<?> packet, List<? super Packet<?>> out)
Append the given packet to the given list.getRemoteCompatibility(Connection manager)
private static boolean
heuristicIsDefinitelySmallEnough(Packet<?> packet)
static boolean
isRemoteCompatible(Connection manager)
private static void
static void
register()
-
Field Details
-
LOGGER
private static final org.apache.logging.log4j.Logger LOGGER -
CHANNEL
-
VERSION
- See Also:
- Constant Field Values
-
PROTOCOL_MAX
private static final int PROTOCOL_MAX- See Also:
- Constant Field Values
-
PAYLOAD_TO_CLIENT_MAX
private static final int PAYLOAD_TO_CLIENT_MAX- See Also:
- Constant Field Values
-
PART_SIZE
private static final int PART_SIZE- See Also:
- Constant Field Values
-
STATE_FIRST
private static final byte STATE_FIRST- See Also:
- Constant Field Values
-
STATE_LAST
private static final byte STATE_LAST- See Also:
- Constant Field Values
-
receivedBuffers
-
-
Constructor Details
-
VanillaPacketSplitter
public VanillaPacketSplitter()
-
-
Method Details
-
register
public static void register() -
appendPackets
public static void appendPackets(ConnectionProtocol protocol, PacketFlow direction, Packet<?> packet, List<? super Packet<?>> out)Append the given packet to the given list. If the packet needs to be split, multiple packets will be appened. Otherwise only the packet itself. -
heuristicIsDefinitelySmallEnough
-
onClientPacket
-
getRemoteCompatibility
-
isRemoteCompatible
-