mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 20:47:51 +08:00
82 lines
2.9 KiB
C#
82 lines
2.9 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.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using System;
|
|
using osu.Game.Users;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Allocation;
|
|
|
|
namespace osu.Game.Overlays.Rankings.Tables
|
|
{
|
|
public class CountriesTable : RankingsTable<CountryStatistics>
|
|
{
|
|
public CountriesTable(int page, IReadOnlyList<CountryStatistics> rankings)
|
|
: base(page, rankings)
|
|
{
|
|
}
|
|
|
|
protected override TableColumn[] CreateAdditionalHeaders() => new[]
|
|
{
|
|
new TableColumn("Active Users", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
|
new TableColumn("Play Count", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
|
new TableColumn("Ranked Score", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
|
new TableColumn("Avg. Score", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
|
new TableColumn("Performance", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
|
new TableColumn("Avg. Perf.", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
|
};
|
|
|
|
protected override Country GetCountry(CountryStatistics item) => item.Country;
|
|
|
|
protected override Drawable CreateFlagContent(CountryStatistics item) => new CountryName(item.Country);
|
|
|
|
protected override Drawable[] CreateAdditionalContent(CountryStatistics item) => new Drawable[]
|
|
{
|
|
new ColoredRowText
|
|
{
|
|
Text = $@"{item.ActiveUsers:N0}",
|
|
},
|
|
new ColoredRowText
|
|
{
|
|
Text = $@"{item.PlayCount:N0}",
|
|
},
|
|
new ColoredRowText
|
|
{
|
|
Text = $@"{item.RankedScore:N0}",
|
|
},
|
|
new ColoredRowText
|
|
{
|
|
Text = $@"{item.RankedScore / Math.Max(item.ActiveUsers, 1):N0}",
|
|
},
|
|
new RowText
|
|
{
|
|
Text = $@"{item.Performance:N0}",
|
|
},
|
|
new ColoredRowText
|
|
{
|
|
Text = $@"{item.Performance / Math.Max(item.ActiveUsers, 1):N0}",
|
|
}
|
|
};
|
|
|
|
private class CountryName : LinkFlowContainer
|
|
{
|
|
[Resolved(canBeNull: true)]
|
|
private RankingsOverlay rankings { get; set; }
|
|
|
|
public CountryName(Country country)
|
|
: base(t => t.Font = OsuFont.GetFont(size: 12))
|
|
{
|
|
AutoSizeAxes = Axes.X;
|
|
RelativeSizeAxes = Axes.Y;
|
|
TextAnchor = Anchor.CentreLeft;
|
|
|
|
if (!string.IsNullOrEmpty(country.FullName))
|
|
AddLink(country.FullName, () => rankings?.ShowCountry(country));
|
|
}
|
|
}
|
|
}
|
|
}
|