Deletes the scripted opponent and every entry point that created a BattleType.Scripted session (the ?scripted=1 query opt-in, the SoloDefaultsToScripted toggle, the resolver short-circuit, the WS handler case, the bridge validation arm). Real two-client PvP and the Bot matchmaking-timeout fallback are untouched. ResolveAsync drops its scriptedOptIn parameter. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
33 lines
1.6 KiB
C#
33 lines
1.6 KiB
C#
namespace SVSim.BattleNode.Bridge;
|
|
|
|
/// <summary>
|
|
/// DI-injected options for the battle node. NodeServerUrl matches the prod
|
|
/// do_matching wire format: <c>host:port/socket.io/</c>, no scheme prefix.
|
|
/// BestHTTP's SocketManager parses it as the Socket.IO v2 endpoint URL.
|
|
/// </summary>
|
|
public sealed class BattleNodeOptions
|
|
{
|
|
public string NodeServerUrl { get; set; } = "localhost:5148/socket.io/";
|
|
|
|
/// <summary>
|
|
/// How long the first arriver's WS waits for a partner before disconnecting.
|
|
/// Matches the architecture spec's 60s default; override (typically lower)
|
|
/// in tests via the factory.
|
|
/// </summary>
|
|
public TimeSpan WaitingRoomTimeout { get; set; } = TimeSpan.FromSeconds(60);
|
|
|
|
/// <summary>
|
|
/// When true, <see cref="Sessions.Participants.RealParticipant"/> emits per-frame
|
|
/// diagnostic logs at Information level: <c>[sio-in]</c> on every inbound msg/alive/hand
|
|
/// envelope (URI, pubSeq, ackId, dispatch decision, ack-sent flag, ack arg, inbound
|
|
/// watermark); <c>[sio-out]</c> on every outbound push (URI, pubSeq, playSeq, noStock);
|
|
/// <c>[ws-rx-text]</c> / <c>[ws-rx-bin]</c> on every WS frame received at the transport
|
|
/// layer; <c>[ws-recv-exit]</c> / <c>[ws-loop-exit]</c> on read-loop termination
|
|
/// (with WebSocket state + exception type when applicable). Default false — keeps
|
|
/// production logs clean. Flip on per session for live WS debugging, PvP investigation,
|
|
/// or to reproduce the kind of softlock chased in
|
|
/// <c>docs/audits/battle-node-sio-events-2026-06-02.md</c>.
|
|
/// </summary>
|
|
public bool DiagnosticLogging { get; set; } = false;
|
|
}
|