// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Tournament.Components; using osu.Game.Tournament.Models; using osuTK; namespace osu.Game.Tournament.Screens.Gameplay.Components { public class TeamDisplay : DrawableTournamentTeam { private readonly TeamScore score; public bool ShowScore { set => score.FadeTo(value ? 1 : 0, 200); } public TeamDisplay(TournamentTeam team, TeamColour colour, Bindable currentTeamScore, int pointsToWin) : base(team) { AutoSizeAxes = Axes.Both; bool flip = colour == TeamColour.Red; var anchor = flip ? Anchor.TopLeft : Anchor.TopRight; Flag.RelativeSizeAxes = Axes.None; Flag.Size = new Vector2(60, 40); Flag.Origin = anchor; Flag.Anchor = anchor; Margin = new MarginPadding(20); InternalChild = new Container { AutoSizeAxes = Axes.Both, Children = new Drawable[] { new FillFlowContainer { AutoSizeAxes = Axes.Both, Direction = FillDirection.Horizontal, Spacing = new Vector2(5), Children = new Drawable[] { Flag, new FillFlowContainer { AutoSizeAxes = Axes.Both, Direction = FillDirection.Vertical, Origin = anchor, Anchor = anchor, Spacing = new Vector2(5), Children = new Drawable[] { new FillFlowContainer { AutoSizeAxes = Axes.Both, Direction = FillDirection.Horizontal, Spacing = new Vector2(5), Children = new Drawable[] { new DrawableTeamHeader(colour) { Scale = new Vector2(0.75f), Origin = anchor, Anchor = anchor, }, score = new TeamScore(currentTeamScore, colour, pointsToWin) { Origin = anchor, Anchor = anchor, } } }, new TournamentSpriteTextWithBackground(team?.FullName.Value ?? "???") { Scale = new Vector2(0.5f), Origin = anchor, Anchor = anchor, }, } }, } }, } }; } } }