2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2018-09-10 03:51:38 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
2018-08-26 00:24:19 +08:00
|
|
|
|
namespace osu.Game.Tournament.Components
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-08-25 20:40:40 +08:00
|
|
|
|
public class TournamentTeam
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The name of this team.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string FullName;
|
|
|
|
|
|
2018-09-10 03:51:38 +08:00
|
|
|
|
private string flagName;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
2018-08-25 20:40:40 +08:00
|
|
|
|
/// Name of the file containing the flag.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
2018-09-10 03:51:38 +08:00
|
|
|
|
public string FlagName
|
|
|
|
|
{
|
2018-09-22 04:52:25 +08:00
|
|
|
|
get { return flagName ?? Acronym?.Substring(0, 2); }
|
2018-09-10 03:51:38 +08:00
|
|
|
|
set { flagName = value; }
|
|
|
|
|
}
|
2018-08-25 20:40:40 +08:00
|
|
|
|
|
|
|
|
|
private string acronym;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2018-08-25 20:40:40 +08:00
|
|
|
|
/// Short acronym which appears in the group boxes post-selection.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
2018-08-25 20:40:40 +08:00
|
|
|
|
public string Acronym
|
|
|
|
|
{
|
2018-09-22 04:52:25 +08:00
|
|
|
|
get { return acronym ?? FullName?.Substring(0, 3); }
|
2018-08-25 20:40:40 +08:00
|
|
|
|
set { acronym = value; }
|
|
|
|
|
}
|
2018-09-10 03:51:38 +08:00
|
|
|
|
|
|
|
|
|
public List<User> Players { get; set; }
|
2018-09-22 04:52:25 +08:00
|
|
|
|
|
|
|
|
|
public override string ToString() => FullName ?? Acronym;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|