mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 23:47:24 +08:00
103 lines
3.6 KiB
C#
103 lines
3.6 KiB
C#
// 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.
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Colour;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Ranking.Statistics
|
|
{
|
|
/// <summary>
|
|
/// Wraps a <see cref="StatisticItem"/> to add a header and suitable layout for use in <see cref="ResultsScreen"/>.
|
|
/// </summary>
|
|
internal partial class StatisticItemContainer : CompositeDrawable
|
|
{
|
|
/// <summary>
|
|
/// Creates a new <see cref="StatisticItemContainer"/>.
|
|
/// </summary>
|
|
/// <param name="item">The <see cref="StatisticItem"/> to display.</param>
|
|
public StatisticItemContainer(StatisticItem item)
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
Padding = new MarginPadding(5);
|
|
|
|
InternalChild = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Masking = true,
|
|
CornerRadius = 6,
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
Colour = ColourInfo.GradientVertical(
|
|
OsuColour.Gray(0.25f),
|
|
OsuColour.Gray(0.18f)
|
|
),
|
|
Alpha = 0.95f,
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Padding = new MarginPadding(5),
|
|
Children = new[]
|
|
{
|
|
createHeader(item),
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Padding = new MarginPadding(10) { Top = 30 },
|
|
Child = item.CreateContent()
|
|
}
|
|
}
|
|
},
|
|
}
|
|
};
|
|
}
|
|
|
|
private static Drawable createHeader(StatisticItem item)
|
|
{
|
|
if (LocalisableString.IsNullOrEmpty(item.Name))
|
|
return Empty();
|
|
|
|
return new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 20,
|
|
Direction = FillDirection.Horizontal,
|
|
Spacing = new Vector2(5, 0),
|
|
Children = new Drawable[]
|
|
{
|
|
new Circle
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Height = 9,
|
|
Width = 4,
|
|
Colour = Color4Extensions.FromHex("#00FFAA")
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Text = item.Name,
|
|
Font = OsuFont.GetFont(size: StatisticItem.FONT_SIZE, weight: FontWeight.SemiBold),
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|