mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
hypixel book fixes
This commit is contained in:
parent
61c2cbf7c3
commit
e744ff206b
7 changed files with 302 additions and 38 deletions
|
|
@ -3435,7 +3435,8 @@ namespace MinecraftClient
|
||||||
if (!String.IsNullOrWhiteSpace(bandString))
|
if (!String.IsNullOrWhiteSpace(bandString))
|
||||||
handler.SendBrandInfo(bandString.Trim());
|
handler.SendBrandInfo(bandString.Trim());
|
||||||
|
|
||||||
if (Config.MCSettings.Enabled)
|
// 1.20.2+ expects ClientInformation during configuration; older servers still want it here.
|
||||||
|
if (Config.MCSettings.Enabled && protocolversion < Protocol18Handler.MC_1_20_2_Version)
|
||||||
handler.SendClientSettings(
|
handler.SendClientSettings(
|
||||||
Config.MCSettings.Locale,
|
Config.MCSettings.Locale,
|
||||||
Config.MCSettings.RenderDistance,
|
Config.MCSettings.RenderDistance,
|
||||||
|
|
|
||||||
|
|
@ -1424,17 +1424,24 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
{
|
{
|
||||||
if (protocolversion >= Protocol18Handler.MC_1_20_4_Version)
|
if (protocolversion >= Protocol18Handler.MC_1_20_4_Version)
|
||||||
{
|
{
|
||||||
// Read as NBT
|
// Vanilla 1.20.4+ uses NBT here, but Hypixel exposed a JSON-string fallback on the same path.
|
||||||
var r = ReadNextNbt(cache);
|
Queue<byte> fallbackCache = new(cache);
|
||||||
var msg = ChatParser.ParseText(r);
|
try
|
||||||
return msg;
|
{
|
||||||
}
|
var r = ReadNextNbt(cache);
|
||||||
else
|
return ChatParser.ParseText(r);
|
||||||
{
|
}
|
||||||
// Read as String
|
catch (System.IO.InvalidDataException)
|
||||||
var json = ReadNextString(cache);
|
{
|
||||||
return ChatParser.ParseText(json);
|
cache.Clear();
|
||||||
|
foreach (var b in fallbackCache)
|
||||||
|
cache.Enqueue(b);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Read as String
|
||||||
|
var json = ReadNextString(cache);
|
||||||
|
return ChatParser.ParseText(json);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
|
|
@ -288,6 +288,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
private void Updater(object? o)
|
private void Updater(object? o)
|
||||||
{
|
{
|
||||||
var cancelToken = (CancellationToken)o!;
|
var cancelToken = (CancellationToken)o!;
|
||||||
|
var exitReason = Translations.debug_packet_loop_reason_queue_completed;
|
||||||
|
|
||||||
if (cancelToken.IsCancellationRequested)
|
if (cancelToken.IsCancellationRequested)
|
||||||
return;
|
return;
|
||||||
|
|
@ -322,23 +323,29 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
}
|
}
|
||||||
catch (ObjectDisposedException)
|
catch (ObjectDisposedException)
|
||||||
{
|
{
|
||||||
|
exitReason = nameof(ObjectDisposedException);
|
||||||
}
|
}
|
||||||
catch (OperationCanceledException)
|
catch (OperationCanceledException)
|
||||||
{
|
{
|
||||||
|
exitReason = nameof(OperationCanceledException);
|
||||||
}
|
}
|
||||||
catch (NullReferenceException)
|
catch (NullReferenceException)
|
||||||
{
|
{
|
||||||
|
exitReason = nameof(NullReferenceException);
|
||||||
}
|
}
|
||||||
catch (SocketException)
|
catch (SocketException)
|
||||||
{
|
{
|
||||||
|
exitReason = nameof(SocketException);
|
||||||
}
|
}
|
||||||
catch (System.IO.IOException)
|
catch (System.IO.IOException)
|
||||||
{
|
{
|
||||||
|
exitReason = nameof(System.IO.IOException);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cancelToken.IsCancellationRequested)
|
if (cancelToken.IsCancellationRequested)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
LogNetworkLoopExit(nameof(Updater), exitReason);
|
||||||
handler.OnConnectionLost(ChatBot.DisconnectReason.ConnectionLost, "");
|
handler.OnConnectionLost(ChatBot.DisconnectReason.ConnectionLost, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -348,6 +355,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
internal void PacketReader(object? o)
|
internal void PacketReader(object? o)
|
||||||
{
|
{
|
||||||
var cancelToken = (CancellationToken)o!;
|
var cancelToken = (CancellationToken)o!;
|
||||||
|
var exitReason = Translations.debug_packet_loop_reason_socket_closed;
|
||||||
while (socketWrapper.IsConnected() && !cancelToken.IsCancellationRequested)
|
while (socketWrapper.IsConnected() && !cancelToken.IsCancellationRequested)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|
@ -362,31 +370,43 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
}
|
}
|
||||||
catch (OperationCanceledException)
|
catch (OperationCanceledException)
|
||||||
{
|
{
|
||||||
|
exitReason = nameof(OperationCanceledException);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
catch (System.IO.IOException)
|
catch (System.IO.IOException)
|
||||||
{
|
{
|
||||||
|
exitReason = nameof(System.IO.IOException);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
catch (SocketException)
|
catch (SocketException)
|
||||||
{
|
{
|
||||||
|
exitReason = nameof(SocketException);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
catch (NullReferenceException)
|
catch (NullReferenceException)
|
||||||
{
|
{
|
||||||
|
exitReason = nameof(NullReferenceException);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
catch (System.IO.InvalidDataException)
|
catch (System.IO.InvalidDataException)
|
||||||
{
|
{
|
||||||
|
exitReason = nameof(System.IO.InvalidDataException);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cancelToken.IsCancellationRequested)
|
if (cancelToken.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
exitReason = Translations.debug_packet_loop_reason_cancelled;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
Thread.Sleep(10);
|
Thread.Sleep(10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (cancelToken.IsCancellationRequested)
|
||||||
|
exitReason = Translations.debug_packet_loop_reason_cancelled;
|
||||||
|
|
||||||
|
LogNetworkLoopExit(nameof(PacketReader), exitReason);
|
||||||
packetQueue.CompleteAdding();
|
packetQueue.CompleteAdding();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -399,21 +419,25 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
{
|
{
|
||||||
var size = dataTypes.ReadNextVarIntRAW(socketWrapper); //Packet size
|
var size = dataTypes.ReadNextVarIntRAW(socketWrapper); //Packet size
|
||||||
Queue<byte> packetData = new(socketWrapper.ReadDataRAW(size)); //Packet contents
|
Queue<byte> packetData = new(socketWrapper.ReadDataRAW(size)); //Packet contents
|
||||||
|
var compressed = false;
|
||||||
|
var sizeUncompressed = 0;
|
||||||
|
|
||||||
//Handle packet decompression
|
//Handle packet decompression
|
||||||
if (protocolVersion >= MC_1_8_Version
|
if (protocolVersion >= MC_1_8_Version
|
||||||
&& compression_treshold >= 0)
|
&& compression_treshold >= 0)
|
||||||
{
|
{
|
||||||
var sizeUncompressed = dataTypes.ReadNextVarInt(packetData);
|
sizeUncompressed = dataTypes.ReadNextVarInt(packetData);
|
||||||
if (sizeUncompressed != 0) // != 0 means compressed, let's decompress
|
if (sizeUncompressed != 0) // != 0 means compressed, let's decompress
|
||||||
{
|
{
|
||||||
var toDecompress = packetData.ToArray();
|
var toDecompress = packetData.ToArray();
|
||||||
var uncompressed = ZlibUtils.Decompress(toDecompress, sizeUncompressed);
|
var uncompressed = ZlibUtils.Decompress(toDecompress, sizeUncompressed);
|
||||||
packetData = new Queue<byte>(uncompressed);
|
packetData = new Queue<byte>(uncompressed);
|
||||||
|
compressed = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var packetId = dataTypes.ReadNextVarInt(packetData); // Packet ID
|
var packetId = dataTypes.ReadNextVarInt(packetData); // Packet ID
|
||||||
|
LogIncomingPacket(packetId, packetData.Count, size, compressed, sizeUncompressed);
|
||||||
if (handler.GetNetworkPacketCaptureEnabled())
|
if (handler.GetNetworkPacketCaptureEnabled())
|
||||||
handler.OnNetworkPacket(packetId, packetData.ToList(), currentState == CurrentState.Login, true);
|
handler.OnNetworkPacket(packetId, packetData.ToList(), currentState == CurrentState.Login, true);
|
||||||
|
|
||||||
|
|
@ -476,7 +500,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
{
|
{
|
||||||
if (packetPalette.GetMappingIn().ContainsKey(packetId))
|
if (packetPalette.GetMappingIn().ContainsKey(packetId))
|
||||||
{
|
{
|
||||||
currentState = CurrentState.Play;
|
SetCurrentState(CurrentState.Play);
|
||||||
return HandlePlayPackets(packetId, packetData);
|
return HandlePlayPackets(packetId, packetData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -499,7 +523,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
case ConfigurationPacketTypesIn.FinishConfiguration:
|
case ConfigurationPacketTypesIn.FinishConfiguration:
|
||||||
currentState = CurrentState.Play;
|
SetCurrentState(CurrentState.Play);
|
||||||
SendPacket(ConfigurationPacketTypesOut.FinishConfiguration, new List<byte>());
|
SendPacket(ConfigurationPacketTypesOut.FinishConfiguration, new List<byte>());
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
@ -1260,7 +1284,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
chunkBatchStartTime = GetNanos();
|
chunkBatchStartTime = GetNanos();
|
||||||
break;
|
break;
|
||||||
case PacketTypesIn.StartConfiguration:
|
case PacketTypesIn.StartConfiguration:
|
||||||
currentState = CurrentState.Configuration;
|
SetCurrentState(CurrentState.Configuration);
|
||||||
SendAcknowledgeConfiguration();
|
SendAcknowledgeConfiguration();
|
||||||
break;
|
break;
|
||||||
case PacketTypesIn.HideMessage:
|
case PacketTypesIn.HideMessage:
|
||||||
|
|
@ -4017,7 +4041,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
/// <param name="packetData">packet Data</param>
|
/// <param name="packetData">packet Data</param>
|
||||||
private void SendPacket(PacketTypesOut packet, IEnumerable<byte> packetData)
|
private void SendPacket(PacketTypesOut packet, IEnumerable<byte> packetData)
|
||||||
{
|
{
|
||||||
SendPacket(packetPalette.GetOutgoingIdByType(packet), packetData);
|
SendPacket(packetPalette.GetOutgoingIdByType(packet), packetData, packet.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ProcessChunkBlockEntityData(int chunkX, int chunkZ, Queue<byte> packetData)
|
private void ProcessChunkBlockEntityData(int chunkX, int chunkZ, Queue<byte> packetData)
|
||||||
|
|
@ -4060,7 +4084,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
/// <param name="packetData">packet Data</param>
|
/// <param name="packetData">packet Data</param>
|
||||||
private void SendPacket(ConfigurationPacketTypesOut packet, IEnumerable<byte> packetData)
|
private void SendPacket(ConfigurationPacketTypesOut packet, IEnumerable<byte> packetData)
|
||||||
{
|
{
|
||||||
SendPacket(packetPalette.GetOutgoingIdByTypeConfiguration(packet), packetData);
|
SendPacket(packetPalette.GetOutgoingIdByTypeConfiguration(packet), packetData, packet.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -4068,9 +4092,10 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="packetId">packet ID</param>
|
/// <param name="packetId">packet ID</param>
|
||||||
/// <param name="packetData">packet Data</param>
|
/// <param name="packetData">packet Data</param>
|
||||||
private void SendPacket(int packetId, IEnumerable<byte> packetData)
|
private void SendPacket(int packetId, IEnumerable<byte> packetData, string? packetType = null)
|
||||||
{
|
{
|
||||||
byte[] payload = packetData as byte[] ?? packetData.ToArray();
|
byte[] payload = packetData as byte[] ?? packetData.ToArray();
|
||||||
|
LogOutgoingPacket(packetId, payload.Length, packetType);
|
||||||
|
|
||||||
if (handler.GetNetworkPacketCaptureEnabled())
|
if (handler.GetNetworkPacketCaptureEnabled())
|
||||||
{
|
{
|
||||||
|
|
@ -4108,6 +4133,109 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
socketWrapper.SendDataRAW(fullPacket);
|
socketWrapper.SendDataRAW(fullPacket);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void SetCurrentState(CurrentState newState)
|
||||||
|
{
|
||||||
|
if (currentState == newState)
|
||||||
|
return;
|
||||||
|
|
||||||
|
var previousState = currentState;
|
||||||
|
currentState = newState;
|
||||||
|
|
||||||
|
if (!log.DebugEnabled)
|
||||||
|
return;
|
||||||
|
|
||||||
|
log.Debug(string.Format(Translations.debug_packet_state_change, previousState, newState));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LogIncomingPacket(int packetId, int payloadLength, int frameLength, bool compressed, int uncompressedLength)
|
||||||
|
{
|
||||||
|
if (!log.DebugEnabled)
|
||||||
|
return;
|
||||||
|
|
||||||
|
var packetType = ResolveIncomingPacketType(packetId);
|
||||||
|
var compressionInfo = compression_treshold < 0
|
||||||
|
? Translations.debug_packet_compression_disabled
|
||||||
|
: compressed
|
||||||
|
? string.Format(Translations.debug_packet_compression_compressed, uncompressedLength)
|
||||||
|
: Translations.debug_packet_compression_uncompressed;
|
||||||
|
|
||||||
|
log.Debug(string.Format(Translations.debug_packet_incoming,
|
||||||
|
currentState,
|
||||||
|
packetId,
|
||||||
|
packetType,
|
||||||
|
payloadLength,
|
||||||
|
frameLength,
|
||||||
|
compressionInfo));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LogOutgoingPacket(int packetId, int payloadLength, string? packetType)
|
||||||
|
{
|
||||||
|
if (!log.DebugEnabled)
|
||||||
|
return;
|
||||||
|
|
||||||
|
log.Debug(string.Format(Translations.debug_packet_outgoing,
|
||||||
|
currentState,
|
||||||
|
packetId,
|
||||||
|
packetType ?? ResolveOutgoingPacketType(packetId),
|
||||||
|
payloadLength,
|
||||||
|
compression_treshold));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LogNetworkLoopExit(string loopName, string reason)
|
||||||
|
{
|
||||||
|
if (!log.DebugEnabled)
|
||||||
|
return;
|
||||||
|
|
||||||
|
log.Debug(string.Format(Translations.debug_packet_loop_exit,
|
||||||
|
loopName,
|
||||||
|
reason,
|
||||||
|
currentState,
|
||||||
|
socketWrapper.IsConnected()));
|
||||||
|
}
|
||||||
|
|
||||||
|
private string ResolveIncomingPacketType(int packetId)
|
||||||
|
{
|
||||||
|
return currentState switch
|
||||||
|
{
|
||||||
|
CurrentState.Login => packetId switch
|
||||||
|
{
|
||||||
|
0x00 => "Disconnect",
|
||||||
|
0x01 => "EncryptionRequest",
|
||||||
|
0x02 => "LoginSuccess",
|
||||||
|
0x03 => "SetCompression",
|
||||||
|
0x04 => "LoginPluginRequest",
|
||||||
|
0x05 => "CookieRequest",
|
||||||
|
_ => string.Format(Translations.debug_packet_unknown_type, packetId)
|
||||||
|
},
|
||||||
|
CurrentState.Configuration when packetPalette.GetMappingInConfiguration().TryGetValue(packetId, out var configurationPacket) =>
|
||||||
|
configurationPacket.ToString(),
|
||||||
|
CurrentState.Play when packetPalette.GetMappingIn().TryGetValue(packetId, out var playPacket) =>
|
||||||
|
playPacket.ToString(),
|
||||||
|
_ => string.Format(Translations.debug_packet_unknown_type, packetId)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private string ResolveOutgoingPacketType(int packetId)
|
||||||
|
{
|
||||||
|
return currentState switch
|
||||||
|
{
|
||||||
|
CurrentState.Login => packetId switch
|
||||||
|
{
|
||||||
|
0x00 => "LoginStart",
|
||||||
|
0x01 => "EncryptionResponse",
|
||||||
|
0x02 => "LoginPluginResponse",
|
||||||
|
0x03 => "LoginAcknowledged",
|
||||||
|
0x04 => "CookieResponse",
|
||||||
|
_ => string.Format(Translations.debug_packet_unknown_type, packetId)
|
||||||
|
},
|
||||||
|
CurrentState.Configuration when packetPalette.GetMappingOutConfiguration().TryGetValue(packetId, out var configurationPacket) =>
|
||||||
|
configurationPacket.ToString(),
|
||||||
|
CurrentState.Play when packetPalette.GetMappingOut().TryGetValue(packetId, out var playPacket) =>
|
||||||
|
playPacket.ToString(),
|
||||||
|
_ => string.Format(Translations.debug_packet_unknown_type, packetId)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Do the Minecraft login.
|
/// Do the Minecraft login.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -4131,7 +4259,8 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
dataTypes.GetUShort((ushort)handler.GetServerPort()),
|
dataTypes.GetUShort((ushort)handler.GetServerPort()),
|
||||||
|
|
||||||
// Next State
|
// Next State
|
||||||
DataTypes.GetVarInt(nextState)) // 2 is Login, 3 is Transfer
|
DataTypes.GetVarInt(nextState)), // 2 is Login, 3 is Transfer
|
||||||
|
"Handshake"
|
||||||
);
|
);
|
||||||
|
|
||||||
// 2. Send the Login Start packet
|
// 2. Send the Login Start packet
|
||||||
|
|
@ -4186,7 +4315,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
SendPacket(0x00, fullLoginPacket);
|
SendPacket(0x00, fullLoginPacket, "LoginStart");
|
||||||
|
|
||||||
// 3. Encryption Request - 9. Login Acknowledged
|
// 3. Encryption Request - 9. Login Acknowledged
|
||||||
while (true)
|
while (true)
|
||||||
|
|
@ -4223,12 +4352,16 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
case 0x02:
|
case 0x02:
|
||||||
{
|
{
|
||||||
log.Info($"§8{Translations.mcc_server_offline}");
|
log.Info($"§8{Translations.mcc_server_offline}");
|
||||||
currentState = protocolVersion < MC_1_20_2_Version
|
SetCurrentState(protocolVersion < MC_1_20_2_Version
|
||||||
? CurrentState.Play
|
? CurrentState.Play
|
||||||
: CurrentState.Configuration;
|
: CurrentState.Configuration);
|
||||||
|
|
||||||
if (protocolVersion >= MC_1_20_2_Version)
|
if (protocolVersion >= MC_1_20_2_Version)
|
||||||
SendPacket(0x03, new List<byte>());
|
{
|
||||||
|
// Hypixel and other 1.20.2+ servers stay in configuration until ClientInformation is sent.
|
||||||
|
SendPacket(0x03, new List<byte>(), "LoginAcknowledged");
|
||||||
|
SendConfiguredClientSettings();
|
||||||
|
}
|
||||||
|
|
||||||
if (!pForge.CompleteForgeHandshake())
|
if (!pForge.CompleteForgeHandshake())
|
||||||
{
|
{
|
||||||
|
|
@ -4371,12 +4504,16 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
if (protocolVersion >= MC_1_20_6_Version && protocolVersion < MC_1_21_2_Version)
|
if (protocolVersion >= MC_1_20_6_Version && protocolVersion < MC_1_21_2_Version)
|
||||||
dataTypes.ReadNextBool(packetData);
|
dataTypes.ReadNextBool(packetData);
|
||||||
|
|
||||||
currentState = protocolVersion < MC_1_20_2_Version
|
SetCurrentState(protocolVersion < MC_1_20_2_Version
|
||||||
? CurrentState.Play
|
? CurrentState.Play
|
||||||
: CurrentState.Configuration;
|
: CurrentState.Configuration);
|
||||||
|
|
||||||
if (protocolVersion >= MC_1_20_2_Version)
|
if (protocolVersion >= MC_1_20_2_Version)
|
||||||
SendPacket(0x03, new List<byte>());
|
{
|
||||||
|
// Hypixel and other 1.20.2+ servers stay in configuration until ClientInformation is sent.
|
||||||
|
SendPacket(0x03, new List<byte>(), "LoginAcknowledged");
|
||||||
|
SendConfiguredClientSettings();
|
||||||
|
}
|
||||||
|
|
||||||
handler.OnLoginSuccess(uuidReceived, userName, playerProperty);
|
handler.OnLoginSuccess(uuidReceived, userName, playerProperty);
|
||||||
|
|
||||||
|
|
@ -5082,7 +5219,13 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
|
|
||||||
if (protocolVersion >= MC_1_21_2_Version)
|
if (protocolVersion >= MC_1_21_2_Version)
|
||||||
fields.AddRange(DataTypes.GetVarInt(0)); // 1.21.2+ Particle status: 0=All, 1=Decreased, 2=Minimal
|
fields.AddRange(DataTypes.GetVarInt(0)); // 1.21.2+ Particle status: 0=All, 1=Decreased, 2=Minimal
|
||||||
SendPacket(PacketTypesOut.ClientSettings, fields);
|
|
||||||
|
if (currentState == CurrentState.Configuration)
|
||||||
|
SendPacket(ConfigurationPacketTypesOut.ClientInformation, fields);
|
||||||
|
else
|
||||||
|
SendPacket(PacketTypesOut.ClientSettings, fields);
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
catch (SocketException)
|
catch (SocketException)
|
||||||
{
|
{
|
||||||
|
|
@ -5099,6 +5242,22 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private bool SendConfiguredClientSettings()
|
||||||
|
{
|
||||||
|
if (!Config.MCSettings.Enabled)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
// Keep the configuration-phase send separate so modern servers receive ClientInformation, not play-era ClientSettings.
|
||||||
|
return SendClientSettings(
|
||||||
|
Config.MCSettings.Locale,
|
||||||
|
Config.MCSettings.RenderDistance,
|
||||||
|
(byte)Config.MCSettings.Difficulty,
|
||||||
|
(byte)Config.MCSettings.ChatMode,
|
||||||
|
Config.MCSettings.ChatColors,
|
||||||
|
Config.MCSettings.Skin.GetByte(),
|
||||||
|
(byte)Config.MCSettings.MainHand);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Send a location update to the server
|
/// Send a location update to the server
|
||||||
|
|
@ -5350,7 +5509,8 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
SendPacket(0x02,
|
SendPacket(0x02,
|
||||||
dataTypes.ConcatBytes(DataTypes.GetVarInt(messageId), dataTypes.GetBool(understood), data));
|
dataTypes.ConcatBytes(DataTypes.GetVarInt(messageId), dataTypes.GetBool(understood), data),
|
||||||
|
"LoginPluginResponse");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
catch (SocketException)
|
catch (SocketException)
|
||||||
|
|
@ -6318,7 +6478,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
switch (currentState)
|
switch (currentState)
|
||||||
{
|
{
|
||||||
case CurrentState.Login:
|
case CurrentState.Login:
|
||||||
SendPacket(0x04, packet);
|
SendPacket(0x04, packet, "CookieResponse");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CurrentState.Configuration:
|
case CurrentState.Configuration:
|
||||||
|
|
|
||||||
|
|
@ -32,17 +32,13 @@ public class WrittenBlookContentComponent(DataTypes dataTypes, ItemPalette itemP
|
||||||
|
|
||||||
for (var i = 0; i < NumberOfPages; i++)
|
for (var i = 0; i < NumberOfPages; i++)
|
||||||
{
|
{
|
||||||
var rawContentNbt = DataTypes.ReadNextNbt(data);
|
var (rawContent, rawContentNbt) = ReadPageComponent(data);
|
||||||
var rawContent = ChatParser.ParseText(rawContentNbt);
|
|
||||||
var hasFilteredContent = DataTypes.ReadNextBool(data);
|
var hasFilteredContent = DataTypes.ReadNextBool(data);
|
||||||
Dictionary<string, object>? filteredContentNbt = null;
|
Dictionary<string, object>? filteredContentNbt = null;
|
||||||
string? filteredContent = null;
|
string? filteredContent = null;
|
||||||
|
|
||||||
if (hasFilteredContent)
|
if (hasFilteredContent)
|
||||||
{
|
(filteredContent, filteredContentNbt) = ReadPageComponent(data);
|
||||||
filteredContentNbt = DataTypes.ReadNextNbt(data);
|
|
||||||
filteredContent = ChatParser.ParseText(filteredContentNbt);
|
|
||||||
}
|
|
||||||
|
|
||||||
Pages.Add(new BookPage(rawContent, hasFilteredContent, filteredContent, rawContentNbt, filteredContentNbt));
|
Pages.Add(new BookPage(rawContent, hasFilteredContent, filteredContent, rawContentNbt, filteredContentNbt));
|
||||||
}
|
}
|
||||||
|
|
@ -50,6 +46,28 @@ public class WrittenBlookContentComponent(DataTypes dataTypes, ItemPalette itemP
|
||||||
Resolved = DataTypes.ReadNextBool(data);
|
Resolved = DataTypes.ReadNextBool(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private (string Content, Dictionary<string, object> Nbt) ReadPageComponent(Queue<byte> data)
|
||||||
|
{
|
||||||
|
// Hypixel sent page payloads in the string-shaped form on this structured-book path,
|
||||||
|
// so keep the parser tolerant while still preserving the raw data for serialization.
|
||||||
|
Queue<byte> fallbackData = new(data);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var nbt = DataTypes.ReadNextNbt(data);
|
||||||
|
return (ChatParser.ParseText(nbt), nbt);
|
||||||
|
}
|
||||||
|
catch (System.IO.InvalidDataException)
|
||||||
|
{
|
||||||
|
data.Clear();
|
||||||
|
foreach (var b in fallbackData)
|
||||||
|
data.Enqueue(b);
|
||||||
|
|
||||||
|
var json = DataTypes.ReadNextString(data);
|
||||||
|
return (ChatParser.ParseText(json), new Dictionary<string, object> { [""] = json });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public override Queue<byte> Serialize()
|
public override Queue<byte> Serialize()
|
||||||
{
|
{
|
||||||
var data = new List<byte>();
|
var data = new List<byte>();
|
||||||
|
|
@ -80,4 +98,4 @@ public class WrittenBlookContentComponent(DataTypes dataTypes, ItemPalette itemP
|
||||||
data.AddRange(DataTypes.GetBool(Resolved));
|
data.AddRange(DataTypes.GetBool(Resolved));
|
||||||
return new Queue<byte>(data);
|
return new Queue<byte>(data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ using MinecraftClient.Protocol.Handlers.StructuredComponents.Components._1_21_5;
|
||||||
using MinecraftClient.Protocol.Handlers.StructuredComponents.Components._1_21_8;
|
using MinecraftClient.Protocol.Handlers.StructuredComponents.Components._1_21_8;
|
||||||
using MinecraftClient.Protocol.Handlers.StructuredComponents.Components._1_21_9;
|
using MinecraftClient.Protocol.Handlers.StructuredComponents.Components._1_21_9;
|
||||||
using MinecraftClient.Protocol.Handlers.StructuredComponents.Components._1_21_11;
|
using MinecraftClient.Protocol.Handlers.StructuredComponents.Components._1_21_11;
|
||||||
|
using MinecraftClient.Protocol.Handlers.StructuredComponents.Components._26_1;
|
||||||
using MinecraftClient.Protocol.Handlers.StructuredComponents.Core;
|
using MinecraftClient.Protocol.Handlers.StructuredComponents.Core;
|
||||||
|
|
||||||
namespace MinecraftClient.Protocol.Handlers.StructuredComponents.Registries;
|
namespace MinecraftClient.Protocol.Handlers.StructuredComponents.Registries;
|
||||||
|
|
@ -72,9 +73,9 @@ public class StructuredComponentsRegistry12111 : StructuredComponentRegistry
|
||||||
RegisterComponent<WrittenBlookContentComponent>(53, "minecraft:written_book_content");
|
RegisterComponent<WrittenBlookContentComponent>(53, "minecraft:written_book_content");
|
||||||
RegisterComponent<TrimComponent1215>(54, "minecraft:trim");
|
RegisterComponent<TrimComponent1215>(54, "minecraft:trim");
|
||||||
RegisterComponent<DebugStickStateComponent>(55, "minecraft:debug_stick_state");
|
RegisterComponent<DebugStickStateComponent>(55, "minecraft:debug_stick_state");
|
||||||
RegisterComponent<EntityDataComponent>(56, "minecraft:entity_data");
|
RegisterComponent<TypedEntityDataComponent261>(56, "minecraft:entity_data");
|
||||||
RegisterComponent<BucketEntityDataComponent>(57, "minecraft:bucket_entity_data");
|
RegisterComponent<BucketEntityDataComponent>(57, "minecraft:bucket_entity_data");
|
||||||
RegisterComponent<BlockEntityDataComponent>(58, "minecraft:block_entity_data");
|
RegisterComponent<BlockEntityDataComponent261>(58, "minecraft:block_entity_data");
|
||||||
RegisterComponent<InstrumentComponent1215>(59, "minecraft:instrument");
|
RegisterComponent<InstrumentComponent1215>(59, "minecraft:instrument");
|
||||||
RegisterComponent<ProvidesTrimMaterialComponent>(60, "minecraft:provides_trim_material");
|
RegisterComponent<ProvidesTrimMaterialComponent>(60, "minecraft:provides_trim_material");
|
||||||
RegisterComponent<OmniousBottleAmplifierComponent>(61, "minecraft:ominous_bottle_amplifier");
|
RegisterComponent<OmniousBottleAmplifierComponent>(61, "minecraft:ominous_bottle_amplifier");
|
||||||
|
|
|
||||||
|
|
@ -7757,5 +7757,49 @@ namespace MinecraftClient {
|
||||||
get { return ResourceManager.GetString("tui.book.page_shortcut_tip", resourceCulture); }
|
get { return ResourceManager.GetString("tui.book.page_shortcut_tip", resourceCulture); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_incoming {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.incoming", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_outgoing {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.outgoing", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_state_change {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.state_change", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_unknown_type {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.unknown_type", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_compression_disabled {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.compression.disabled", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_compression_uncompressed {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.compression.uncompressed", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_compression_compressed {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.compression.compressed", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_loop_exit {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.loop_exit", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_loop_reason_queue_completed {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.loop_reason.queue_completed", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_loop_reason_socket_closed {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.loop_reason.socket_closed", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static string debug_packet_loop_reason_cancelled {
|
||||||
|
get { return ResourceManager.GetString("debug.packet.loop_reason.cancelled", resourceCulture); }
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2794,4 +2794,37 @@ see item details.</value>
|
||||||
<data name="tui.book.page_shortcut_tip" xml:space="preserve">
|
<data name="tui.book.page_shortcut_tip" xml:space="preserve">
|
||||||
<value>PageUp/PageDown: previous/next page</value>
|
<value>PageUp/PageDown: previous/next page</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="debug.packet.incoming" xml:space="preserve">
|
||||||
|
<value>[S -> C] state={0} id=0x{1:X2} type={2} payload={3} frame={4} compression={5}</value>
|
||||||
|
</data>
|
||||||
|
<data name="debug.packet.outgoing" xml:space="preserve">
|
||||||
|
<value>[C -> S] state={0} id=0x{1:X2} type={2} payload={3} compression_threshold={4}</value>
|
||||||
|
</data>
|
||||||
|
<data name="debug.packet.state_change" xml:space="preserve">
|
||||||
|
<value>Protocol state changed: {0} -> {1}</value>
|
||||||
|
</data>
|
||||||
|
<data name="debug.packet.unknown_type" xml:space="preserve">
|
||||||
|
<value>Unknown(0x{0:X2})</value>
|
||||||
|
</data>
|
||||||
|
<data name="debug.packet.compression.disabled" xml:space="preserve">
|
||||||
|
<value>disabled</value>
|
||||||
|
</data>
|
||||||
|
<data name="debug.packet.compression.uncompressed" xml:space="preserve">
|
||||||
|
<value>uncompressed</value>
|
||||||
|
</data>
|
||||||
|
<data name="debug.packet.compression.compressed" xml:space="preserve">
|
||||||
|
<value>compressed, uncompressed={0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="debug.packet.loop_exit" xml:space="preserve">
|
||||||
|
<value>{0} exited: reason={1}, state={2}, socket_connected={3}</value>
|
||||||
|
</data>
|
||||||
|
<data name="debug.packet.loop_reason.queue_completed" xml:space="preserve">
|
||||||
|
<value>packet queue completed</value>
|
||||||
|
</data>
|
||||||
|
<data name="debug.packet.loop_reason.socket_closed" xml:space="preserve">
|
||||||
|
<value>socket closed</value>
|
||||||
|
</data>
|
||||||
|
<data name="debug.packet.loop_reason.cancelled" xml:space="preserve">
|
||||||
|
<value>cancelled</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue