osu/osu.Game.Tournament/Models/TournamentRound.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.3 KiB
C#
Raw Normal View History

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.
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
{
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
{
public readonly Bindable<string> Name = new Bindable<string>(string.Empty);
public readonly Bindable<string> Description = new Bindable<string>(string.Empty);
public readonly BindableInt BestOf = new BindableInt(9) { Default = 9, MinValue = 3, MaxValue = 23 };
public readonly BindableInt BanCount = new BindableInt(1) { Default = 1, MinValue = 0, MaxValue = 5 };
2018-09-24 14:30:37 +00:00
2018-10-16 07:07:59 +00:00
[JsonProperty]
public readonly BindableList<RoundBeatmap> Beatmaps = new BindableList<RoundBeatmap>();
2018-10-14 09:00:28 +00:00
public readonly Bindable<DateTimeOffset> StartDate = new Bindable<DateTimeOffset> { Value = DateTimeOffset.UtcNow };
// 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";
}
}