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.
|
|
|
|
|
2020-03-07 11:51:11 +08:00
|
|
|
using osu.Framework.Bindables;
|
2020-03-06 15:07:54 +08:00
|
|
|
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
|
|
|
|
{
|
2020-03-07 13:46:40 +08:00
|
|
|
private readonly TeamScore score;
|
|
|
|
|
2020-06-09 23:09:29 +08:00
|
|
|
public bool ShowScore
|
|
|
|
{
|
|
|
|
set => score.FadeTo(value ? 1 : 0, 200);
|
|
|
|
}
|
2020-03-07 13:46:40 +08:00
|
|
|
|
2020-03-07 11:51:11 +08:00
|
|
|
public TeamDisplay(TournamentTeam team, TeamColour colour, Bindable<int?> currentTeamScore, int pointsToWin)
|
2020-03-06 15:07:54 +08:00
|
|
|
: base(team)
|
|
|
|
{
|
2020-03-07 11:51:11 +08:00
|
|
|
AutoSizeAxes = Axes.Both;
|
2020-03-06 15:07:54 +08:00
|
|
|
|
2020-03-07 11:51:11 +08:00
|
|
|
bool flip = colour == TeamColour.Red;
|
2020-03-06 15:07:54 +08:00
|
|
|
|
2020-03-07 11:51:11 +08:00
|
|
|
var anchor = flip ? Anchor.TopLeft : Anchor.TopRight;
|
2020-03-06 15:07:54 +08:00
|
|
|
|
|
|
|
Flag.RelativeSizeAxes = Axes.None;
|
|
|
|
Flag.Size = new Vector2(60, 40);
|
2020-03-07 11:51:11 +08:00
|
|
|
Flag.Origin = anchor;
|
|
|
|
Flag.Anchor = anchor;
|
|
|
|
|
|
|
|
Margin = new MarginPadding(20);
|
2020-03-06 15:07:54 +08:00
|
|
|
|
|
|
|
InternalChild = new Container
|
|
|
|
{
|
2020-03-07 11:51:11 +08:00
|
|
|
AutoSizeAxes = Axes.Both,
|
2020-03-06 15:07:54 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2020-03-07 11:51:11 +08:00
|
|
|
new FillFlowContainer
|
2020-03-06 15:07:54 +08:00
|
|
|
{
|
2020-03-07 11:51:11 +08:00
|
|
|
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),
|
2020-09-14 03:03:46 +08:00
|
|
|
Origin = anchor,
|
|
|
|
Anchor = anchor,
|
2020-03-07 11:51:11 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new DrawableTeamHeader(colour)
|
|
|
|
{
|
|
|
|
Scale = new Vector2(0.75f),
|
|
|
|
Origin = anchor,
|
|
|
|
Anchor = anchor,
|
|
|
|
},
|
2020-03-07 13:46:40 +08:00
|
|
|
score = new TeamScore(currentTeamScore, colour, pointsToWin)
|
2020-03-07 11:51:11 +08:00
|
|
|
{
|
|
|
|
Origin = anchor,
|
|
|
|
Anchor = anchor,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
new TournamentSpriteTextWithBackground(team?.FullName.Value ?? "???")
|
|
|
|
{
|
|
|
|
Scale = new Vector2(0.5f),
|
|
|
|
Origin = anchor,
|
|
|
|
Anchor = anchor,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2020-03-06 15:07:54 +08:00
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|