2020-03-16 01:32:12 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-09-28 00:33:52 +08:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2019-09-28 00:33:52 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using System;
|
2019-11-28 02:56:22 +08:00
|
|
|
using osu.Game.Users;
|
2019-11-28 04:35:02 +08:00
|
|
|
using osu.Game.Graphics;
|
2020-02-28 05:22:22 +08:00
|
|
|
using osu.Game.Graphics.Containers;
|
2019-11-29 01:09:05 +08:00
|
|
|
using System.Collections.Generic;
|
2020-02-14 00:01:26 +08:00
|
|
|
using osu.Framework.Allocation;
|
2022-07-16 09:40:37 +08:00
|
|
|
using osu.Framework.Extensions;
|
2021-08-29 20:00:28 +08:00
|
|
|
using osu.Framework.Extensions.LocalisationExtensions;
|
2021-07-30 21:24:10 +08:00
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2019-09-28 00:33:52 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Rankings.Tables
|
|
|
|
{
|
2019-11-28 02:56:22 +08:00
|
|
|
public class CountriesTable : RankingsTable<CountryStatistics>
|
2019-09-28 00:33:52 +08:00
|
|
|
{
|
2019-11-29 01:09:05 +08:00
|
|
|
public CountriesTable(int page, IReadOnlyList<CountryStatistics> rankings)
|
|
|
|
: base(page, rankings)
|
2019-09-28 00:33:52 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-07-28 00:46:49 +08:00
|
|
|
protected override RankingsTableColumn[] CreateAdditionalHeaders() => new[]
|
2019-09-28 00:33:52 +08:00
|
|
|
{
|
2021-07-30 21:24:10 +08:00
|
|
|
new RankingsTableColumn(RankingsStrings.StatActiveUsers, Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
|
|
|
new RankingsTableColumn(RankingsStrings.StatPlayCount, Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
|
|
|
new RankingsTableColumn(RankingsStrings.StatRankedScore, Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
|
|
|
new RankingsTableColumn(RankingsStrings.StatAverageScore, Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
|
|
|
new RankingsTableColumn(RankingsStrings.StatPerformance, Anchor.Centre, new Dimension(GridSizeMode.AutoSize), true),
|
|
|
|
new RankingsTableColumn(RankingsStrings.StatAveragePerformance, Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
2019-09-28 00:33:52 +08:00
|
|
|
};
|
|
|
|
|
2022-07-18 13:40:34 +08:00
|
|
|
protected override CountryCode GetCountryCode(CountryStatistics item) => item.Code;
|
2019-11-28 04:35:02 +08:00
|
|
|
|
2022-07-18 13:40:34 +08:00
|
|
|
protected override Drawable CreateFlagContent(CountryStatistics item) => new CountryName(item.Code);
|
2019-11-28 04:35:02 +08:00
|
|
|
|
2019-11-28 04:58:31 +08:00
|
|
|
protected override Drawable[] CreateAdditionalContent(CountryStatistics item) => new Drawable[]
|
2019-09-28 00:33:52 +08:00
|
|
|
{
|
2021-07-31 13:27:20 +08:00
|
|
|
new ColouredRowText
|
2019-09-28 00:33:52 +08:00
|
|
|
{
|
2021-07-31 13:27:20 +08:00
|
|
|
Text = item.ActiveUsers.ToLocalisableString(@"N0")
|
2019-09-28 00:33:52 +08:00
|
|
|
},
|
2021-07-31 13:27:20 +08:00
|
|
|
new ColouredRowText
|
2019-10-01 19:12:03 +08:00
|
|
|
{
|
2021-07-31 13:27:20 +08:00
|
|
|
Text = item.PlayCount.ToLocalisableString(@"N0")
|
2019-10-01 19:12:03 +08:00
|
|
|
},
|
2021-07-31 13:27:20 +08:00
|
|
|
new ColouredRowText
|
2019-10-01 19:12:03 +08:00
|
|
|
{
|
2021-07-31 13:27:20 +08:00
|
|
|
Text = item.RankedScore.ToLocalisableString(@"N0")
|
2019-10-01 19:12:03 +08:00
|
|
|
},
|
2021-07-31 13:27:20 +08:00
|
|
|
new ColouredRowText
|
2019-10-01 19:12:03 +08:00
|
|
|
{
|
2021-07-31 13:27:20 +08:00
|
|
|
Text = (item.RankedScore / Math.Max(item.ActiveUsers, 1)).ToLocalisableString(@"N0")
|
2019-10-01 19:12:03 +08:00
|
|
|
},
|
|
|
|
new RowText
|
|
|
|
{
|
2021-07-31 13:27:20 +08:00
|
|
|
Text = item.Performance.ToLocalisableString(@"N0")
|
2019-10-01 19:12:03 +08:00
|
|
|
},
|
2021-07-31 13:27:20 +08:00
|
|
|
new ColouredRowText
|
2019-09-28 00:33:52 +08:00
|
|
|
{
|
2021-07-31 13:27:20 +08:00
|
|
|
Text = (item.Performance / Math.Max(item.ActiveUsers, 1)).ToLocalisableString(@"N0")
|
2019-09-28 00:33:52 +08:00
|
|
|
}
|
|
|
|
};
|
2020-02-14 00:01:26 +08:00
|
|
|
|
2020-02-28 05:22:22 +08:00
|
|
|
private class CountryName : LinkFlowContainer
|
2020-02-14 00:01:26 +08:00
|
|
|
{
|
2020-02-19 21:49:39 +08:00
|
|
|
[Resolved(canBeNull: true)]
|
|
|
|
private RankingsOverlay rankings { get; set; }
|
|
|
|
|
2022-07-18 13:40:34 +08:00
|
|
|
public CountryName(CountryCode countryCode)
|
2020-02-28 05:35:02 +08:00
|
|
|
: base(t => t.Font = OsuFont.GetFont(size: 12))
|
2020-02-14 00:01:26 +08:00
|
|
|
{
|
2020-02-28 05:22:22 +08:00
|
|
|
AutoSizeAxes = Axes.X;
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
TextAnchor = Anchor.CentreLeft;
|
2020-02-19 21:49:39 +08:00
|
|
|
|
2022-07-18 13:54:35 +08:00
|
|
|
if (countryCode != CountryCode.Unknown)
|
2022-07-18 13:40:34 +08:00
|
|
|
AddLink(countryCode.GetDescription(), () => rankings?.ShowCountry(countryCode));
|
2020-02-14 00:01:26 +08:00
|
|
|
}
|
|
|
|
}
|
2019-09-28 00:33:52 +08:00
|
|
|
}
|
|
|
|
}
|