1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-21 20:33:01 +08:00

Merge pull request #27070 from Joehuu/hide-ruleset-selector-kudosu

Hide ruleset selector when on kudosu ranking
This commit is contained in:
Bartłomiej Dach 2024-02-07 10:46:40 +01:00 committed by GitHub
commit 7460d077f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,13 +1,11 @@
// 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.
#nullable disable
using osu.Framework.Bindables;
using osu.Game.Localisation;
using osu.Game.Resources.Localisation.Web;
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Localisation;
using osu.Game.Resources.Localisation.Web;
using osu.Game.Rulesets;
using osu.Game.Users;
@ -19,8 +17,8 @@ namespace osu.Game.Overlays.Rankings
public Bindable<CountryCode> Country => countryFilter.Current;
private OverlayRulesetSelector rulesetSelector;
private CountryFilter countryFilter;
private OverlayRulesetSelector rulesetSelector = null!;
private CountryFilter countryFilter = null!;
protected override OverlayTitle CreateTitle() => new RankingsTitle();
@ -39,5 +37,30 @@ namespace osu.Game.Overlays.Rankings
Icon = OsuIcon.Ranking;
}
}
protected override void LoadComplete()
{
base.LoadComplete();
Current.BindValueChanged(scope =>
{
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;
}
}
}
}
}