2018-09-24 23:57:44 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2018-10-18 01:17:54 +08:00
|
|
|
using OpenTK.Graphics;
|
2018-09-24 23:57:44 +08:00
|
|
|
|
2018-09-25 03:21:48 +08:00
|
|
|
namespace osu.Game.Tournament.Screens.Ladder.Components
|
2018-09-24 23:57:44 +08:00
|
|
|
{
|
|
|
|
public class DrawableTournamentGrouping : CompositeDrawable
|
|
|
|
{
|
2018-09-25 01:31:48 +08:00
|
|
|
public DrawableTournamentGrouping(TournamentGrouping grouping, bool losers = false)
|
2018-09-24 23:57:44 +08:00
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
InternalChild = new FillFlowContainer
|
|
|
|
{
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new OsuSpriteText
|
|
|
|
{
|
2018-10-13 06:10:13 +08:00
|
|
|
Text = grouping.Description.Value.ToUpper(),
|
2018-10-18 01:17:54 +08:00
|
|
|
Colour = Color4.Black,
|
2018-09-24 23:57:44 +08:00
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
Anchor = Anchor.TopCentre
|
|
|
|
},
|
|
|
|
new OsuSpriteText
|
|
|
|
{
|
2018-09-25 01:31:48 +08:00
|
|
|
Text = ((losers ? "Losers " : "") + grouping.Name).ToUpper(),
|
2018-09-24 23:57:44 +08:00
|
|
|
Font = "Exo2.0-Bold",
|
2018-10-18 01:17:54 +08:00
|
|
|
Colour = Color4.Black,
|
2018-09-24 23:57:44 +08:00
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
Anchor = Anchor.TopCentre
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|