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.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Bindables;
|
2021-08-03 17:29:02 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2023-11-24 12:16:04 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2024-02-07 16:43:53 +08:00
|
|
|
|
using osu.Game.Localisation;
|
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2020-02-04 01:20:35 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Rankings
|
|
|
|
|
{
|
|
|
|
|
public partial 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
|
|
|
|
|
2022-07-18 13:40:34 +08:00
|
|
|
|
public Bindable<CountryCode> Country => countryFilter.Current;
|
2020-02-19 02:26:25 +08:00
|
|
|
|
|
2024-02-07 16:43:53 +08:00
|
|
|
|
private OverlayRulesetSelector rulesetSelector = null!;
|
|
|
|
|
private CountryFilter countryFilter = null!;
|
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
|
|
|
|
|
2023-01-14 04:50:12 +08:00
|
|
|
|
protected override Drawable CreateTabControlContent() => 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 partial class RankingsTitle : OverlayTitle
|
2020-02-04 01:20:35 +08:00
|
|
|
|
{
|
|
|
|
|
public RankingsTitle()
|
|
|
|
|
{
|
2021-08-03 15:34:21 +08:00
|
|
|
|
Title = PageTitleStrings.MainRankingControllerDefault;
|
2021-07-18 10:12:24 +08:00
|
|
|
|
Description = NamedOverlayComponentStrings.RankingsDescription;
|
2023-12-27 22:35:03 +08:00
|
|
|
|
Icon = OsuIcon.Ranking;
|
2020-02-04 01:20:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-07 04:54:53 +08:00
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
Current.BindValueChanged(scope =>
|
|
|
|
|
{
|
2024-02-07 16:43:53 +08:00
|
|
|
|
rulesetSelector.FadeTo(showRulesetSelector(scope.NewValue) ? 1 : 0, 200, Easing.OutQuint);
|
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
|
|
bool showRulesetSelector(RankingsScope scope)
|
|
|
|
|
{
|
|
|
|
|
switch (scope)
|
|
|
|
|
{
|
|
|
|
|
case RankingsScope.Performance:
|
|
|
|
|
case RankingsScope.Spotlights:
|
|
|
|
|
case RankingsScope.Score:
|
|
|
|
|
case RankingsScope.Country:
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-07 04:54:53 +08:00
|
|
|
|
}
|
2020-02-04 01:20:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|