2020-02-04 01:20:35 +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.
|
|
|
|
|
|
2021-07-18 02:15:14 +08:00
|
|
|
|
using System;
|
2020-02-04 01:20:35 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Bindables;
|
2021-07-18 02:15:14 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2021-07-18 02:32:23 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2020-02-04 01:20:35 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
2021-07-18 02:15:14 +08:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2020-02-04 01:20:35 +08:00
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Rankings
|
|
|
|
|
{
|
|
|
|
|
public class RankingsOverlayHeader : TabControlOverlayHeader<RankingsScope>
|
|
|
|
|
{
|
2020-02-19 02:26:25 +08:00
|
|
|
|
public Bindable<RulesetInfo> Ruleset => rulesetSelector.Current;
|
2020-02-19 02:28:38 +08:00
|
|
|
|
|
2020-02-19 02:26:25 +08:00
|
|
|
|
public Bindable<Country> Country => countryFilter.Current;
|
|
|
|
|
|
|
|
|
|
private OverlayRulesetSelector rulesetSelector;
|
|
|
|
|
private CountryFilter countryFilter;
|
2020-02-04 01:20:35 +08:00
|
|
|
|
|
2020-03-25 05:08:20 +08:00
|
|
|
|
protected override OverlayTitle CreateTitle() => new RankingsTitle();
|
2020-02-04 01:20:35 +08:00
|
|
|
|
|
2020-02-19 02:26:25 +08:00
|
|
|
|
protected override Drawable CreateTitleContent() => rulesetSelector = new OverlayRulesetSelector();
|
2020-02-04 01:20:35 +08:00
|
|
|
|
|
2020-02-19 02:26:25 +08:00
|
|
|
|
protected override Drawable CreateContent() => countryFilter = new CountryFilter();
|
2020-02-04 01:32:20 +08:00
|
|
|
|
|
2020-03-25 05:08:20 +08:00
|
|
|
|
protected override Drawable CreateBackground() => new OverlayHeaderBackground("Headers/rankings");
|
2020-02-13 19:12:10 +08:00
|
|
|
|
|
2020-03-25 05:08:20 +08:00
|
|
|
|
private class RankingsTitle : OverlayTitle
|
2020-02-04 01:20:35 +08:00
|
|
|
|
{
|
|
|
|
|
public RankingsTitle()
|
|
|
|
|
{
|
2021-07-18 02:15:14 +08:00
|
|
|
|
Title = LayoutStrings.MenuRankingsDefault;
|
2021-07-18 02:32:23 +08:00
|
|
|
|
Description = HeaderDescriptionStrings.Rankings;
|
2020-09-03 15:26:09 +08:00
|
|
|
|
IconTexture = "Icons/Hexacons/rankings";
|
2020-02-04 01:20:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-04 01:59:08 +08:00
|
|
|
|
|
2021-07-18 02:15:14 +08:00
|
|
|
|
[LocalisableEnum(typeof(RankingsScopeEnumLocalisationMapper))]
|
2020-02-04 01:59:08 +08:00
|
|
|
|
public enum RankingsScope
|
|
|
|
|
{
|
|
|
|
|
Performance,
|
|
|
|
|
Spotlights,
|
|
|
|
|
Score,
|
|
|
|
|
Country
|
|
|
|
|
}
|
2021-07-18 02:15:14 +08:00
|
|
|
|
|
|
|
|
|
public class RankingsScopeEnumLocalisationMapper : EnumLocalisationMapper<RankingsScope>
|
|
|
|
|
{
|
|
|
|
|
public override LocalisableString Map(RankingsScope value)
|
|
|
|
|
{
|
|
|
|
|
switch (value)
|
|
|
|
|
{
|
|
|
|
|
case RankingsScope.Performance:
|
|
|
|
|
return LayoutStrings.MenuRankingsIndex;
|
|
|
|
|
|
|
|
|
|
case RankingsScope.Spotlights:
|
|
|
|
|
return LayoutStrings.MenuRankingsCharts;
|
|
|
|
|
|
|
|
|
|
case RankingsScope.Score:
|
|
|
|
|
return LayoutStrings.MenuRankingsScore;
|
|
|
|
|
|
|
|
|
|
case RankingsScope.Country:
|
|
|
|
|
return LayoutStrings.MenuRankingsCountry;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(value), value, null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-04 01:20:35 +08:00
|
|
|
|
}
|