Behavior-preserving; 231 BattleNode tests green.
- MinedToken record struct replaces the transpose-prone (int Idx, long CardId,
CardOwner IsSelf) tuple returned by KnownListBuilder.Mine*. Positional deconstruct
keeps the Record*From call sites unchanged.
- enum Stock { Normal, Bypass } replaces the negative `bool noStock` on
IBattleParticipant.PushAsync and DispatchRoute, threaded through both participants,
BattleSession, and all handler construction sites.
- enum KeyActionType mirrors the client's SendKeyActionDataManager.KeyActionType;
the StripKeyActionForOpponent guard compares named values, KeyActionEntry.Type is
the enum (wire-identical via JsonNumberEnumConverter).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
38 lines
1.4 KiB
C#
38 lines
1.4 KiB
C#
using SVSim.BattleNode.Lifecycle;
|
|
using SVSim.BattleNode.Protocol;
|
|
|
|
namespace SVSim.BattleNode.Sessions.Dispatch.Handlers;
|
|
|
|
internal sealed class InitBattleHandler : IFrameHandler
|
|
{
|
|
public IReadOnlyList<DispatchRoute> Handle(FrameDispatchContext ctx)
|
|
{
|
|
// case 2: Bot — ack only, NO Matched (Matched would corrupt client opponent info).
|
|
if (ctx.Type == BattleType.Bot && ctx.SenderPhase == BattleSessionPhase.AwaitingInitBattle)
|
|
{
|
|
var r = new List<DispatchRoute>
|
|
{
|
|
new(ctx.From, BattleFrames.BuildAck(NetworkBattleUri.InitBattle), Stock.Bypass),
|
|
};
|
|
ctx.SenderPhase = BattleSessionPhase.AwaitingLoaded;
|
|
return r;
|
|
}
|
|
|
|
// case 5: general — push Matched (per-perspective) to the sender only.
|
|
if (ctx.SenderPhase == BattleSessionPhase.AwaitingInitBattle)
|
|
{
|
|
var r = new List<DispatchRoute>
|
|
{
|
|
new(ctx.From, ServerBattleFrames.BuildMatched(
|
|
ctx.From.Context, ctx.Other.Context, ctx.From.ViewerId, ctx.Other.ViewerId,
|
|
ctx.BattleId, BattleSeeds.Stable(ctx.State.MasterSeed),
|
|
ctx.State.GetShuffledDeck(ctx.From)), Stock.Normal),
|
|
};
|
|
ctx.SenderPhase = BattleSessionPhase.AwaitingLoaded;
|
|
return r;
|
|
}
|
|
|
|
return Array.Empty<DispatchRoute>();
|
|
}
|
|
}
|