osu/osu.Game/Overlays/Rankings/RankingsOverlayHeader.cs

75 lines
2.4 KiB
C#
Raw Normal View History

// 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.Bindables;
using osu.Game.Rulesets;
using osu.Game.Users;
2021-07-30 12:17:43 +00:00
using osu.Game.Resources.Localisation.Web;
using osu.Framework.Localisation;
using System;
namespace osu.Game.Overlays.Rankings
{
public class RankingsOverlayHeader : TabControlOverlayHeader<RankingsScope>
{
2020-02-18 18:26:25 +00:00
public Bindable<RulesetInfo> Ruleset => rulesetSelector.Current;
2020-02-18 18:28:38 +00:00
2020-02-18 18:26:25 +00:00
public Bindable<Country> Country => countryFilter.Current;
private OverlayRulesetSelector rulesetSelector;
private CountryFilter countryFilter;
protected override OverlayTitle CreateTitle() => new RankingsTitle();
2020-02-18 18:26:25 +00:00
protected override Drawable CreateTitleContent() => rulesetSelector = new OverlayRulesetSelector();
2020-02-18 18:26:25 +00:00
protected override Drawable CreateContent() => countryFilter = new CountryFilter();
2020-02-03 17:32:20 +00:00
protected override Drawable CreateBackground() => new OverlayHeaderBackground("Headers/rankings");
2020-02-13 11:12:10 +00:00
private class RankingsTitle : OverlayTitle
{
public RankingsTitle()
{
2021-07-30 12:17:43 +00:00
Title = PageTitleStrings.MainRankingControllerDefault;
2020-09-06 17:13:06 +00:00
Description = "find out who's the best right now";
IconTexture = "Icons/Hexacons/rankings";
}
}
}
2020-02-03 17:59:08 +00:00
2021-07-30 12:17:43 +00:00
[LocalisableEnum(typeof(RankingsScopeEnumLocalisationMapper))]
2020-02-03 17:59:08 +00:00
public enum RankingsScope
{
Performance,
Spotlights,
Score,
Country
}
2021-07-30 12:17:43 +00:00
public class RankingsScopeEnumLocalisationMapper : EnumLocalisationMapper<RankingsScope>
{
public override LocalisableString Map(RankingsScope value)
{
switch (value)
{
case RankingsScope.Performance:
return RankingsStrings.TypePerformance;
case RankingsScope.Spotlights:
return RankingsStrings.TypeCharts;
case RankingsScope.Score:
return RankingsStrings.TypeScore;
case RankingsScope.Country:
return RankingsStrings.TypeCountry;
default:
throw new ArgumentOutOfRangeException(nameof(value), value, null);
}
}
}
}