mirror of
https://github.com/ppy/osu.git
synced 2026-05-13 20:33:35 +08:00
112 lines
4.0 KiB
C#
112 lines
4.0 KiB
C#
// 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;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using Newtonsoft.Json;
|
|
using osu.Framework.Bindables;
|
|
|
|
namespace osu.Game.Tournament.Models
|
|
{
|
|
/// <summary>
|
|
/// A team representation. For official tournaments this is generally a country.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class TournamentTeam
|
|
{
|
|
/// <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);
|
|
|
|
/// <summary>
|
|
/// Short acronym which appears in the group boxes post-selection.
|
|
/// </summary>
|
|
public Bindable<string> Acronym = new Bindable<string>(string.Empty);
|
|
|
|
public BindableList<SeedingResult> SeedingResults = new BindableList<SeedingResult>();
|
|
|
|
public double AverageRank
|
|
{
|
|
get
|
|
{
|
|
int[] ranks = Players.Select(p => p.Rank)
|
|
.Where(i => i.HasValue)
|
|
.Select(i => i!.Value)
|
|
.ToArray();
|
|
|
|
if (ranks.Length == 0)
|
|
return 0;
|
|
|
|
return ranks.Average();
|
|
}
|
|
}
|
|
|
|
public Bindable<string> Seed = new Bindable<string>(string.Empty);
|
|
|
|
[JsonProperty]
|
|
[JsonConverter(typeof(LastYearPlacingConverter))]
|
|
public Bindable<string> LastYearPlacing = new Bindable<string>(@"N/A");
|
|
|
|
[JsonProperty]
|
|
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))
|
|
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))
|
|
Acronym.Value = val.NewValue?.Length >= 3 ? val.NewValue.Substring(0, 3).ToUpperInvariant() : string.Empty;
|
|
};
|
|
}
|
|
|
|
public override string ToString() => FullName.Value ?? Acronym.Value;
|
|
|
|
public class LastYearPlacingConverter : JsonConverter
|
|
{
|
|
public override bool CanConvert(Type objectType) => objectType == typeof(Bindable<string>);
|
|
|
|
public override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer)
|
|
=> serializer.Serialize(writer, ((Bindable<string>)value!).Value);
|
|
|
|
public override object ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer)
|
|
{
|
|
var lastYearPlacing = existingValue as Bindable<string>;
|
|
Debug.Assert(lastYearPlacing != null);
|
|
|
|
switch (reader.TokenType)
|
|
{
|
|
case JsonToken.String:
|
|
lastYearPlacing.Value = (string?)reader.Value ?? lastYearPlacing.Default;
|
|
break;
|
|
|
|
case JsonToken.Integer:
|
|
long value = (long)reader.Value!;
|
|
lastYearPlacing.Value = value > 0 ? $@"#{value}" : lastYearPlacing.Default;
|
|
break;
|
|
|
|
default:
|
|
reader.Read();
|
|
break;
|
|
}
|
|
|
|
return lastYearPlacing;
|
|
}
|
|
}
|
|
}
|
|
}
|