1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 03:07:51 +08:00
osu-lazer/osu.Game/Overlays/Rankings/Tables/PerformanceTable.cs

96 lines
3.5 KiB
C#
Raw Normal View History

2019-09-28 00:33:52 +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.
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using System.Collections.Generic;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using osu.Game.Users.Drawables;
using osuTK;
using osu.Game.Online.API.Requests.Responses;
namespace osu.Game.Overlays.Rankings.Tables
{
public class PerformanceTable : RankingsTable<APIUserRankings>
{
public PerformanceTable(int page = 1)
: base(page)
{
}
protected override TableColumn[] CreateHeaders() => new[]
{
new TableColumn("", Anchor.Centre, new Dimension(GridSizeMode.Absolute, 50)), // place
new TableColumn("", Anchor.CentreLeft, new Dimension(GridSizeMode.Distributed)), // flag and username
2019-11-03 19:31:23 +08:00
new TableColumn("Accuracy", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
new TableColumn("Play Count", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
new TableColumn("Performance", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
new TableColumn("SS", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
new TableColumn("S", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
new TableColumn("A", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
2019-09-28 00:33:52 +08:00
};
protected override Drawable[] CreateContent(int index, APIUserRankings item)
{
var content = new List<Drawable>
{
new OsuSpriteText
{
Text = $"#{index + 1}",
Font = OsuFont.GetFont(size: TEXT_SIZE, weight: FontWeight.Bold)
},
};
var username = new LinkFlowContainer(t => t.Font = OsuFont.GetFont(size: TEXT_SIZE)) { AutoSizeAxes = Axes.Both };
username.AddUserLink(item.User);
2019-09-29 20:27:29 +08:00
content.AddRange(new Drawable[]
2019-09-28 00:33:52 +08:00
{
2019-09-29 20:27:29 +08:00
new FillFlowContainer
2019-09-28 00:33:52 +08:00
{
2019-09-29 20:27:29 +08:00
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(7, 0),
Children = new Drawable[]
2019-09-28 00:33:52 +08:00
{
2019-09-29 20:27:29 +08:00
new UpdateableFlag(item.User.Country)
{
Size = new Vector2(20, 13),
ShowPlaceholderOnNull = false,
},
username
}
},
2019-10-01 19:12:03 +08:00
new ColoredRowText
2019-09-28 00:33:52 +08:00
{
Text = $@"{item.Accuracy:F2}%",
},
2019-10-01 19:12:03 +08:00
new ColoredRowText
2019-09-28 00:33:52 +08:00
{
Text = $@"{item.PlayCount:N0}",
},
2019-10-01 19:12:03 +08:00
new RowText
2019-09-28 00:33:52 +08:00
{
Text = $@"{item.PP:N0}",
},
2019-10-01 19:12:03 +08:00
new ColoredRowText
2019-09-28 00:33:52 +08:00
{
Text = $@"{item.GradesCount.SS + item.GradesCount.SSPlus:N0}",
},
2019-10-01 19:12:03 +08:00
new ColoredRowText
2019-09-28 00:33:52 +08:00
{
Text = $@"{item.GradesCount.S + item.GradesCount.SPlus:N0}",
},
2019-10-01 19:12:03 +08:00
new ColoredRowText
2019-09-28 00:33:52 +08:00
{
Text = $@"{item.GradesCount.A:N0}",
},
});
return content.ToArray();
}
}
}