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-04-13 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-10-16 15:07:59 +08:00
|
|
|
|
using System;
|
2020-03-03 17:12:42 +08:00
|
|
|
|
using System.Linq;
|
2018-10-16 15:07:59 +08:00
|
|
|
|
using Newtonsoft.Json;
|
2019-06-17 15:28:58 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-09-10 03:51:38 +08:00
|
|
|
|
|
2019-06-18 13:51:48 +08:00
|
|
|
|
namespace osu.Game.Tournament.Models
|
2017-05-02 12:02:14 +08:00
|
|
|
|
{
|
2019-06-18 14:00:33 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A team representation. For official tournaments this is generally a country.
|
|
|
|
|
/// </summary>
|
2018-10-16 15:07:59 +08:00
|
|
|
|
[Serializable]
|
2018-08-25 20:40:40 +08:00
|
|
|
|
public class TournamentTeam
|
2017-05-02 12:02:14 +08:00
|
|
|
|
{
|
2017-05-02 15:54:43 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The name of this team.
|
|
|
|
|
/// </summary>
|
2019-06-17 15:28:58 +08:00
|
|
|
|
public Bindable<string> FullName = new Bindable<string>(string.Empty);
|
2018-09-10 03:51:38 +08:00
|
|
|
|
|
2017-05-02 12:02:14 +08:00
|
|
|
|
/// <summary>
|
2018-08-25 20:40:40 +08:00
|
|
|
|
/// Name of the file containing the flag.
|
2017-05-02 12:02:14 +08:00
|
|
|
|
/// </summary>
|
2019-06-17 15:28:58 +08:00
|
|
|
|
public Bindable<string> FlagName = new Bindable<string>(string.Empty);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-05-02 15:54:43 +08:00
|
|
|
|
/// <summary>
|
2018-08-25 20:40:40 +08:00
|
|
|
|
/// Short acronym which appears in the group boxes post-selection.
|
2017-05-02 15:54:43 +08:00
|
|
|
|
/// </summary>
|
2019-06-17 15:28:58 +08:00
|
|
|
|
public Bindable<string> Acronym = new Bindable<string>(string.Empty);
|
2018-09-10 03:51:38 +08:00
|
|
|
|
|
2020-03-03 17:12:42 +08:00
|
|
|
|
public BindableList<SeedingResult> SeedingResults = new BindableList<SeedingResult>();
|
|
|
|
|
|
|
|
|
|
public double AverageRank
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2022-06-18 02:03:33 +08:00
|
|
|
|
int[] ranks = Players.Select(p => p.Rank)
|
2021-10-27 12:04:41 +08:00
|
|
|
|
.Where(i => i.HasValue)
|
|
|
|
|
.Select(i => i.Value)
|
|
|
|
|
.ToArray();
|
2020-03-03 17:12:42 +08:00
|
|
|
|
|
|
|
|
|
if (ranks.Length == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return ranks.Average();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Bindable<string> Seed = new Bindable<string>(string.Empty);
|
|
|
|
|
|
|
|
|
|
public Bindable<int> LastYearPlacing = new BindableInt
|
|
|
|
|
{
|
|
|
|
|
MinValue = 1,
|
|
|
|
|
MaxValue = 64
|
|
|
|
|
};
|
|
|
|
|
|
2018-10-16 15:07:59 +08:00
|
|
|
|
[JsonProperty]
|
2022-06-18 02:03:33 +08:00
|
|
|
|
public BindableList<TournamentPlayer> Players { get; set; } = new BindableList<TournamentPlayer>();
|
2019-06-17 15:28:58 +08:00
|
|
|
|
|
|
|
|
|
public TournamentTeam()
|
|
|
|
|
{
|
|
|
|
|
Acronym.ValueChanged += val =>
|
|
|
|
|
{
|
|
|
|
|
// use a sane default flag name based on acronym.
|
|
|
|
|
if (val.OldValue.StartsWith(FlagName.Value, StringComparison.InvariantCultureIgnoreCase))
|
|
|
|
|
FlagName.Value = val.NewValue.Length >= 2 ? val.NewValue?.Substring(0, 2).ToUpper() : string.Empty;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
FullName.ValueChanged += val =>
|
|
|
|
|
{
|
|
|
|
|
// use a sane acronym based on full name.
|
|
|
|
|
if (val.OldValue.StartsWith(Acronym.Value, StringComparison.InvariantCultureIgnoreCase))
|
|
|
|
|
Acronym.Value = val.NewValue.Length >= 3 ? val.NewValue?.Substring(0, 3).ToUpper() : string.Empty;
|
|
|
|
|
};
|
|
|
|
|
}
|
2018-09-22 04:52:25 +08:00
|
|
|
|
|
2019-06-17 15:28:58 +08:00
|
|
|
|
public override string ToString() => FullName.Value ?? Acronym.Value;
|
2017-05-02 12:02:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|