2019-06-04 21:22:54 +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.
|
|
|
|
|
|
2019-08-04 19:15:16 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2022-12-30 20:17:59 +08:00
|
|
|
|
using osu.Framework.Extensions.ObjectExtensions;
|
2019-06-04 21:22:54 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Header.Components
|
|
|
|
|
{
|
2020-01-02 03:55:28 +08:00
|
|
|
|
public partial class ProfileRulesetSelector : OverlayRulesetSelector
|
2019-06-04 21:22:54 +08:00
|
|
|
|
{
|
2022-12-31 01:03:44 +08:00
|
|
|
|
public readonly Bindable<UserProfile?> UserProfile = new Bindable<UserProfile?>();
|
2019-08-04 19:15:16 +08:00
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
2019-06-04 22:51:56 +08:00
|
|
|
|
{
|
2019-08-04 19:15:16 +08:00
|
|
|
|
base.LoadComplete();
|
2022-12-31 01:03:44 +08:00
|
|
|
|
|
|
|
|
|
UserProfile.BindValueChanged(userProfile => updateState(userProfile.NewValue), true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateState(UserProfile? userProfile)
|
|
|
|
|
{
|
|
|
|
|
Current.Value = userProfile?.Ruleset;
|
|
|
|
|
SetDefaultRuleset(Rulesets.GetRuleset(userProfile?.User.PlayMode ?? @"osu").AsNonNull());
|
2019-08-04 19:15:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetDefaultRuleset(RulesetInfo ruleset)
|
2019-06-04 23:37:31 +08:00
|
|
|
|
{
|
2020-01-02 03:55:28 +08:00
|
|
|
|
foreach (var tabItem in TabContainer)
|
2021-11-24 11:49:57 +08:00
|
|
|
|
((ProfileRulesetTabItem)tabItem).IsDefault = ((ProfileRulesetTabItem)tabItem).Value.Equals(ruleset);
|
2019-06-04 21:22:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-02 03:55:28 +08:00
|
|
|
|
protected override TabItem<RulesetInfo> CreateTabItem(RulesetInfo value) => new ProfileRulesetTabItem(value);
|
2019-06-04 21:22:54 +08:00
|
|
|
|
}
|
|
|
|
|
}
|