osu/osu.Game/Overlays/Rankings/Tables/ScoresTable.cs

39 lines
1.2 KiB
C#
Raw Normal View History

2019-09-27 16:33:52 +00: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.
2019-11-28 17:09:05 +00:00
using System.Collections.Generic;
2019-09-27 16:33:52 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-11-27 18:56:22 +00:00
using osu.Game.Users;
2019-09-27 16:33:52 +00:00
namespace osu.Game.Overlays.Rankings.Tables
{
public class ScoresTable : UserBasedTable
2019-09-27 16:33:52 +00:00
{
2019-11-28 17:09:05 +00:00
public ScoresTable(int page, IReadOnlyList<UserStatistics> rankings)
: base(page, rankings)
2019-09-27 16:33:52 +00:00
{
}
protected override TableColumn[] CreateUniqueHeaders() => new[]
2019-09-27 16:33:52 +00:00
{
2019-11-03 11:31:23 +00:00
new TableColumn("Total Score", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
new TableColumn("Ranked Score", Anchor.Centre, new Dimension(GridSizeMode.AutoSize))
2019-09-27 16:33:52 +00:00
};
2019-11-27 20:58:31 +00:00
protected override Drawable[] CreateUniqueContent(UserStatistics item) => new Drawable[]
2019-09-27 16:33:52 +00:00
{
new ColoredRowText
2019-09-27 16:33:52 +00:00
{
Text = $@"{item.TotalScore:N0}",
},
new RowText
2019-09-27 16:33:52 +00:00
{
Text = $@"{item.RankedScore:N0}",
}
};
2019-09-27 16:33:52 +00:00
protected override string HighlightedColumn() => @"Ranked Score";
}
}