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-08-26 00:14:18 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2019-06-17 16:30:26 +08:00
|
|
|
using JetBrains.Annotations;
|
2018-08-26 00:14:18 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-06-17 16:30:26 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-08-26 00:14:18 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-05-15 12:10:58 +08:00
|
|
|
using osu.Game.Graphics;
|
2019-06-18 13:51:48 +08:00
|
|
|
using osu.Game.Tournament.Models;
|
2018-08-26 00:14:18 +08:00
|
|
|
|
2018-08-26 00:24:19 +08:00
|
|
|
namespace osu.Game.Tournament.Components
|
2018-08-26 00:14:18 +08:00
|
|
|
{
|
|
|
|
public abstract partial class DrawableTournamentTeam : CompositeDrawable
|
|
|
|
{
|
|
|
|
public readonly TournamentTeam Team;
|
|
|
|
|
2020-08-24 21:08:50 +08:00
|
|
|
protected readonly Container Flag;
|
2020-03-03 18:14:44 +08:00
|
|
|
protected readonly TournamentSpriteText AcronymText;
|
2018-08-26 00:14:18 +08:00
|
|
|
|
2019-06-17 16:30:26 +08:00
|
|
|
[UsedImplicitly]
|
|
|
|
private Bindable<string> acronym;
|
|
|
|
|
2018-08-26 00:14:18 +08:00
|
|
|
protected DrawableTournamentTeam(TournamentTeam team)
|
|
|
|
{
|
|
|
|
Team = team;
|
|
|
|
|
2020-08-24 21:08:50 +08:00
|
|
|
Flag = new DrawableTeamFlag(team);
|
2020-03-03 18:14:44 +08:00
|
|
|
AcronymText = new TournamentSpriteText
|
2018-08-26 00:14:18 +08:00
|
|
|
{
|
2020-03-03 18:14:44 +08:00
|
|
|
Font = OsuFont.Torus.With(weight: FontWeight.Regular),
|
2018-08-26 00:14:18 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-15 08:06:39 +08:00
|
|
|
private void load()
|
2018-08-26 00:14:18 +08:00
|
|
|
{
|
2019-06-17 16:30:26 +08:00
|
|
|
if (Team == null) return;
|
|
|
|
|
2022-06-24 20:25:23 +08:00
|
|
|
(acronym = Team.Acronym.GetBoundCopy()).BindValueChanged(_ => AcronymText.Text = Team?.Acronym.Value?.ToUpperInvariant() ?? string.Empty, true);
|
2018-08-26 00:14:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|