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