osu/osu.Game.Tournament/Models/TournamentTeam.cs

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

81 lines
2.7 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.
2018-04-13 09:19:50 +00:00
2018-10-16 07:07:59 +00:00
using System;
2020-03-03 09:12:42 +00:00
using System.Linq;
2018-10-16 07:07:59 +00:00
using Newtonsoft.Json;
using osu.Framework.Bindables;
2019-06-18 05:51:48 +00:00
namespace osu.Game.Tournament.Models
{
2019-06-18 06:00:33 +00:00
/// <summary>
/// A team representation. For official tournaments this is generally a country.
/// </summary>
2018-10-16 07:07:59 +00:00
[Serializable]
public class TournamentTeam
{
2017-05-02 07:54:43 +00:00
/// <summary>
/// The name of this team.
/// </summary>
public Bindable<string> FullName = new Bindable<string>(string.Empty);
/// <summary>
/// Name of the file containing the flag.
/// </summary>
public Bindable<string> FlagName = new Bindable<string>(string.Empty);
2018-04-13 09:19:50 +00:00
2017-05-02 07:54:43 +00:00
/// <summary>
/// Short acronym which appears in the group boxes post-selection.
2017-05-02 07:54:43 +00:00
/// </summary>
public Bindable<string> Acronym = new Bindable<string>(string.Empty);
2020-03-03 09:12:42 +00:00
public BindableList<SeedingResult> SeedingResults = new BindableList<SeedingResult>();
public double AverageRank
{
get
{
int[] ranks = Players.Select(p => p.Rank)
.Where(i => i.HasValue)
2023-08-09 09:21:57 +00:00
.Select(i => i!.Value)
.ToArray();
2020-03-03 09:12:42 +00: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 = 0,
MaxValue = 256
2020-03-03 09:12:42 +00:00
};
2018-10-16 07:07:59 +00:00
[JsonProperty]
2023-10-06 07:51:24 +00:00
public BindableList<TournamentUser> Players { get; } = new BindableList<TournamentUser>();
public TournamentTeam()
{
Acronym.ValueChanged += val =>
{
// use a sane default flag name based on acronym.
if (val.OldValue.StartsWith(FlagName.Value, StringComparison.InvariantCultureIgnoreCase))
2023-07-25 11:50:55 +00:00
FlagName.Value = val.NewValue?.Length >= 2 ? val.NewValue.Substring(0, 2).ToUpperInvariant() : string.Empty;
};
FullName.ValueChanged += val =>
{
// use a sane acronym based on full name.
if (val.OldValue.StartsWith(Acronym.Value, StringComparison.InvariantCultureIgnoreCase))
2023-07-25 11:50:55 +00:00
Acronym.Value = val.NewValue?.Length >= 3 ? val.NewValue.Substring(0, 3).ToUpperInvariant() : string.Empty;
};
}
2018-09-21 20:52:25 +00:00
public override string ToString() => FullName.Value ?? Acronym.Value;
}
}