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.
69 lines
2.8 KiB
C#
69 lines
2.8 KiB
C#
using SVSim.Database.Enums;
|
|
|
|
namespace SVSim.Database.Models.Config;
|
|
|
|
/// <summary>
|
|
/// Event-level configuration for an active Arena Colosseum (Grand Prix) season. Default
|
|
/// <see cref="ShippedDefaults"/> emits <c>IsColosseumPeriod = false</c> so the lobby read
|
|
/// endpoints render an empty "no event scheduled" payload without crashing the client.
|
|
/// Flipping the event on is an admin operation per
|
|
/// <c>docs/operations/grand-prix-event-setup.md</c> — write a row to <c>GameConfigs</c>.
|
|
/// </summary>
|
|
[ConfigSection("ColosseumSeason")]
|
|
public class ColosseumSeasonConfig
|
|
{
|
|
/// <summary>Master gate. <c>false</c> = lobby reads render an empty info block and
|
|
/// entry rejects. The client (<c>Wizard/ColosseumEntryInfoTask.cs</c>) reads this and
|
|
/// skips parsing the rest of the colosseum_info object.</summary>
|
|
public bool IsColosseumPeriod { get; set; }
|
|
|
|
/// <summary>Stamped onto every <see cref="ViewerArenaColosseumRun"/> at entry time.</summary>
|
|
public int SeasonId { get; set; }
|
|
|
|
public string ColosseumName { get; set; } = "";
|
|
|
|
/// <summary>Bracket format. Stamped onto the run at entry time.</summary>
|
|
public Format DeckFormat { get; set; } = Format.Rotation;
|
|
|
|
/// <summary>Server stores bool; the wire shape is the STRING "0"/"1" per Wizard/ColosseumEntryInfoTask.cs's
|
|
/// <c>jsonData.ToString() == "1"</c> parse. The response DTO converts at serialization time.</summary>
|
|
public bool IsNormalTwoPick { get; set; }
|
|
|
|
/// <summary>Wire string used by the client as a theme/color code. Empty when not in special mode.</summary>
|
|
public string IsSpecialMode { get; set; } = "";
|
|
|
|
public string? AnnounceId { get; set; }
|
|
|
|
public DateTime EventStartTime { get; set; }
|
|
public DateTime EventEndTime { get; set; }
|
|
|
|
/// <summary>How many bracket entries get eliminated in the final round before champion-determination.</summary>
|
|
public int FinalRoundEliminateCount { get; set; }
|
|
|
|
public string CardPoolName { get; set; } = "";
|
|
|
|
/// <summary>Card-set ids used as the 2-Pick / Chaos draft pool override for this season.
|
|
/// Phase 3 reads this through <c>ArenaTwoPickCardPoolService</c> instead of
|
|
/// <c>ChallengeConfig.PoolCardSetIds</c>.</summary>
|
|
public List<int> PoolCardSetIds { get; set; } = new();
|
|
|
|
public int RupyCost { get; set; }
|
|
public int TicketCost { get; set; }
|
|
public int CrystalCost { get; set; }
|
|
|
|
public bool IsAllowedFreeEntry { get; set; }
|
|
|
|
public bool IsAllCardEnabled { get; set; }
|
|
|
|
/// <summary>Number of strategies offered per pick in 2-Pick Chaos mode.</summary>
|
|
public int StrategyPickNum { get; set; }
|
|
|
|
public DateTime SalesPeriodStart { get; set; }
|
|
public DateTime SalesPeriodEnd { get; set; }
|
|
|
|
public static ColosseumSeasonConfig ShippedDefaults() => new()
|
|
{
|
|
IsColosseumPeriod = false,
|
|
};
|
|
}
|