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