feat(battle-node): typed BattleStartBody + Self/Oppo info records
This commit is contained in:
28
SVSim.BattleNode/Protocol/Bodies/BattleStartBody.cs
Normal file
28
SVSim.BattleNode/Protocol/Bodies/BattleStartBody.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace SVSim.BattleNode.Protocol.Bodies;
|
||||
|
||||
public sealed record BattleStartBody(
|
||||
[property: JsonPropertyName("turnState")] int TurnState,
|
||||
[property: JsonPropertyName("battleType")] int BattleType,
|
||||
[property: JsonPropertyName("selfInfo")] BattleStartSelfInfo SelfInfo,
|
||||
[property: JsonPropertyName("oppoInfo")] BattleStartOppoInfo OppoInfo,
|
||||
[property: JsonPropertyName("resultCode")] int ResultCode = 1) : IMsgBody;
|
||||
|
||||
public sealed record BattleStartSelfInfo(
|
||||
[property: JsonPropertyName("rank")] string Rank,
|
||||
[property: JsonPropertyName("battlePoint")] string BattlePoint,
|
||||
[property: JsonPropertyName("classId")] string ClassId,
|
||||
[property: JsonPropertyName("charaId")] string CharaId,
|
||||
[property: JsonPropertyName("cardMasterName")] string CardMasterName);
|
||||
|
||||
// Note: BattlePoint is int on the wire here (not string as on self) — matches the
|
||||
// captured prod frame at data_dumps/captures/battle-traffic_tk2_regular.ndjson.
|
||||
public sealed record BattleStartOppoInfo(
|
||||
[property: JsonPropertyName("rank")] string Rank,
|
||||
[property: JsonPropertyName("isMasterRank")] string IsMasterRank,
|
||||
[property: JsonPropertyName("battlePoint")] int BattlePoint,
|
||||
[property: JsonPropertyName("masterPoint")] string MasterPoint,
|
||||
[property: JsonPropertyName("classId")] string ClassId,
|
||||
[property: JsonPropertyName("charaId")] string CharaId,
|
||||
[property: JsonPropertyName("cardMasterName")] string CardMasterName);
|
||||
Reference in New Issue
Block a user