1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00
osu-lazer/osu.Game/Overlays/BeatmapSet/BeatmapRulesetSelector.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.1 KiB
C#
Raw Normal View History

2019-10-04 22:35:41 +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.
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Bindables;
2019-10-04 22:35:41 +08:00
using osu.Framework.Graphics.UserInterface;
using osu.Game.Rulesets;
using System.Linq;
using osu.Game.Online.API.Requests.Responses;
2019-10-04 22:35:41 +08:00
namespace osu.Game.Overlays.BeatmapSet
{
2020-02-03 19:16:26 +08:00
public class BeatmapRulesetSelector : OverlayRulesetSelector
2019-10-04 22:35:41 +08:00
{
private readonly Bindable<APIBeatmapSet> beatmapSet = new Bindable<APIBeatmapSet>();
2019-10-04 22:35:41 +08:00
public APIBeatmapSet BeatmapSet
2019-10-04 22:35:41 +08:00
{
get => beatmapSet.Value;
2019-10-04 22:35:41 +08:00
set
{
// propagate value to tab items first to enable only available rulesets.
beatmapSet.Value = value;
2019-10-04 22:35:41 +08:00
SelectTab(TabContainer.TabItems.FirstOrDefault(t => t.Enabled.Value));
2019-10-04 22:35:41 +08:00
}
}
protected override TabItem<RulesetInfo> CreateTabItem(RulesetInfo value) => new BeatmapRulesetTabItem(value)
{
BeatmapSet = { BindTarget = beatmapSet }
};
2019-10-04 22:35:41 +08:00
}
}