2019-03-04 04:24:19 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-09-23 20:19:03 +00:00
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2018-10-13 20:19:50 +00:00
|
|
|
using System;
|
2018-09-24 14:30:37 +00:00
|
|
|
using System.Collections.Generic;
|
2018-10-16 07:07:59 +00:00
|
|
|
using Newtonsoft.Json;
|
2019-03-02 04:40:43 +00:00
|
|
|
using osu.Framework.Bindables;
|
2018-09-24 14:30:37 +00:00
|
|
|
|
2019-06-18 05:51:48 +00:00
|
|
|
namespace osu.Game.Tournament.Models
|
2018-09-23 20:19:03 +00:00
|
|
|
{
|
2019-06-18 06:00:33 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A tournament round, containing many matches, generally executed in a short time period.
|
|
|
|
/// </summary>
|
2018-10-16 07:07:59 +00:00
|
|
|
[Serializable]
|
2019-06-18 05:44:15 +00:00
|
|
|
public class TournamentRound
|
2018-09-23 20:19:03 +00:00
|
|
|
{
|
2021-10-08 04:55:20 +00:00
|
|
|
public readonly Bindable<string> Name = new Bindable<string>(string.Empty);
|
|
|
|
public readonly Bindable<string> Description = new Bindable<string>(string.Empty);
|
2018-09-23 20:19:03 +00:00
|
|
|
|
2018-10-13 16:03:04 +00:00
|
|
|
public readonly BindableInt BestOf = new BindableInt(9) { Default = 9, MinValue = 3, MaxValue = 23 };
|
2018-09-24 14:30:37 +00:00
|
|
|
|
2018-10-16 07:07:59 +00:00
|
|
|
[JsonProperty]
|
2019-06-18 07:10:23 +00:00
|
|
|
public readonly BindableList<RoundBeatmap> Beatmaps = new BindableList<RoundBeatmap>();
|
2018-10-14 09:00:28 +00:00
|
|
|
|
2019-06-18 08:59:33 +00:00
|
|
|
public readonly Bindable<DateTimeOffset> StartDate = new Bindable<DateTimeOffset> { Value = DateTimeOffset.UtcNow };
|
2018-10-13 20:19:50 +00:00
|
|
|
|
2019-06-14 10:16:20 +00:00
|
|
|
// only used for serialisation
|
2019-06-18 05:57:05 +00:00
|
|
|
public List<int> Matches = new List<int>();
|
2018-11-15 05:12:41 +00:00
|
|
|
|
|
|
|
public override string ToString() => Name.Value ?? "None";
|
2018-09-23 20:19:03 +00:00
|
|
|
}
|
|
|
|
}
|