Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/ArenaColosseum/ColosseumInfo.cs
gamer147 110867358c feat(arena-colosseum): lobby + constructed entry (phase 1)
Closes 5 of arena-colosseum's 16 spec shapes (1/16 → 6/16). Lobby reads
(/top, /get_fee_info, /event_info) render an empty "no event scheduled"
payload by default; /entry + /register_deck activate via admin-flipped
ColosseumSeason + ColosseumRounds config sections.

* Schema: ViewerArenaColosseumRun standalone table (unique on ViewerId)
  with jsonb run-state columns mirroring ViewerArenaTwoPickRun.
* Config sections: ColosseumSeasonConfig (event-level), ColosseumRoundsConfig
  (the 3-round bracket). Empty defaults — IsColosseumPeriod=false.
* Migration AddArenaColosseumRun (DDL only; seed rows come from the section
  ShippedDefaults via EnsureSeedDataAsync).
* DTOs: ColosseumLobbyInfo (round-level, /top + /get_fee_info), ColosseumEventInfo
  (event-level, /event_info), ColosseumOwnStatus (shared status block),
  ColosseumEntryRef, ColosseumFeeList, ColosseumUserDeck, ColosseumBattleResults,
  ColosseumRoundDetail + ColosseumGroupRow. EventInfoResponse uses explicit
  [JsonPropertyName("1"|"2"|"3")] for the string-keyed rounds shape per spec.
* Controller: ArenaColosseumController replaces the 1-action stub with
  the five lifecycle endpoints. /top emits leader_skin_id even when 0
  (project_wire_null_policy override).
* Tests: 11 controller-level tests + 6 config round-trip tests covering
  empty-season payloads, run-seeded /top round-trip, crystal/rupy entry
  debits, now_round_id mismatch rejection, deck_no_list round-trip + reject.
2026-06-13 12:16:22 -04:00

82 lines
3.4 KiB
C#

using System.Text.Json.Serialization;
using MessagePack;
using SVSim.EmulatedEntrypoint.Models.Dtos;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.ArenaColosseum;
/// <summary>
/// Round-level Colosseum descriptor. Shared by <c>/top</c> and <c>/get_fee_info</c> via
/// the client's static <c>ColosseumEntryInfoTask.SetColosseumInfo</c> helper. When
/// <see cref="IsColosseumPeriod"/> is <c>false</c>, the client skips parsing every other
/// field — server still emits this minimal payload so the lobby renders cleanly.
/// <para>
/// Distinct from <see cref="SVSim.EmulatedEntrypoint.Models.Dtos.ColosseumInfo"/> (the
/// captured prod <c>/mypage/index</c> shape — stringly-typed and read-only). This is the
/// per-endpoint Colosseum-family shape. <c>/event_info</c> uses yet a third shape —
/// <see cref="ColosseumEventInfo"/>.
/// </para>
/// </summary>
[MessagePackObject]
public class ColosseumLobbyInfo
{
/// <summary>Master gate. <c>false</c> = lobby renders empty.</summary>
[JsonPropertyName("is_colosseum_period")] [Key("is_colosseum_period")]
public bool IsColosseumPeriod { get; set; }
/// <summary>Format enum (Rotation=0, Unlimited=1, TwoPick=10, HOF=31, ...).</summary>
[JsonPropertyName("deck_format")] [Key("deck_format")]
public int? DeckFormat { get; set; }
/// <summary>STRING wire shape: <c>"0"</c>/<c>"1"</c>. Client parses with
/// <c>jsonData.ToString() == "1"</c>.</summary>
[JsonPropertyName("is_normal_two_pick")] [Key("is_normal_two_pick")]
public string? IsNormalTwoPick { get; set; }
[JsonPropertyName("colosseum_name")] [Key("colosseum_name")]
public string? ColosseumName { get; set; }
[JsonPropertyName("is_round_period")] [Key("is_round_period")]
public bool? IsRoundPeriod { get; set; }
/// <summary>Wire STRING used by the client as a UI color/theme code.</summary>
[JsonPropertyName("is_special_mode")] [Key("is_special_mode")]
public string? IsSpecialMode { get; set; }
[JsonPropertyName("card_pool_name")] [Key("card_pool_name")]
public string? CardPoolName { get; set; }
/// <summary>Present during round period — current stage number (1..3).</summary>
[JsonPropertyName("now_round")] [Key("now_round")]
public int? NowRound { get; set; }
/// <summary>Present outside round period — next stage number.</summary>
[JsonPropertyName("next_round")] [Key("next_round")]
public int? NextRound { get; set; }
[JsonPropertyName("start_time")] [Key("start_time")]
public string? StartTime { get; set; }
[JsonPropertyName("end_time")] [Key("end_time")]
public string? EndTime { get; set; }
[JsonPropertyName("is_display_tips")] [Key("is_display_tips")]
public int? IsDisplayTips { get; set; }
[JsonPropertyName("colosseum_id")] [Key("colosseum_id")]
public int? ColosseumId { get; set; }
[JsonPropertyName("tips_id")] [Key("tips_id")]
public int? TipsId { get; set; }
[JsonPropertyName("is_all_card_enabled")] [Key("is_all_card_enabled")]
public int? IsAllCardEnabled { get; set; }
/// <summary>Reuses the captured <c>/mypage/index</c> shape — single
/// <c>sales_period_time</c> field per prod capture.</summary>
[JsonPropertyName("sales_period_info")] [Key("sales_period_info")]
public ColosseumSalesPeriodInfo? SalesPeriodInfo { get; set; }
[JsonPropertyName("strategy_pick_num")] [Key("strategy_pick_num")]
public int? StrategyPickNum { get; set; }
}