2020-03-06 15:07:54 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-03-06 15:07:54 +08:00
|
|
|
using JetBrains.Annotations;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
2020-08-24 21:08:50 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-03-06 15:07:54 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
using osu.Game.Tournament.Models;
|
2020-08-24 21:08:50 +08:00
|
|
|
using osuTK;
|
2020-03-06 15:07:54 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Components
|
|
|
|
{
|
2020-08-24 21:08:50 +08:00
|
|
|
public class DrawableTeamFlag : Container
|
2020-03-06 15:07:54 +08:00
|
|
|
{
|
|
|
|
private readonly TournamentTeam team;
|
|
|
|
|
|
|
|
[UsedImplicitly]
|
|
|
|
private Bindable<string> flag;
|
|
|
|
|
2020-08-24 21:08:50 +08:00
|
|
|
private Sprite flagSprite;
|
|
|
|
|
2020-03-06 15:07:54 +08:00
|
|
|
public DrawableTeamFlag(TournamentTeam team)
|
|
|
|
{
|
|
|
|
this.team = team;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(TextureStore textures)
|
|
|
|
{
|
|
|
|
if (team == null) return;
|
|
|
|
|
2022-06-16 01:53:04 +08:00
|
|
|
Size = new Vector2(75, 54);
|
2020-08-24 21:08:50 +08:00
|
|
|
Masking = true;
|
|
|
|
CornerRadius = 5;
|
|
|
|
Child = flagSprite = new Sprite
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
FillMode = FillMode.Fill
|
|
|
|
};
|
|
|
|
|
2022-06-24 20:25:23 +08:00
|
|
|
(flag = team.FlagName.GetBoundCopy()).BindValueChanged(_ => flagSprite.Texture = textures.Get($@"Flags/{team.FlagName}"), true);
|
2020-03-06 15:07:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|