1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game/Rulesets/RulesetSelector.cs

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

42 lines
1.2 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.
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Allocation;
using osu.Framework.Logging;
2023-01-13 04:21:33 +08:00
using osu.Game.Extensions;
namespace osu.Game.Rulesets
{
public abstract partial class RulesetSelector : TabControl<RulesetInfo>
{
2019-06-26 16:52:25 +08:00
[Resolved]
protected RulesetStore Rulesets { get; private set; }
protected override Dropdown<RulesetInfo> CreateDropdown() => null;
2023-01-13 04:26:29 +08:00
protected virtual bool LegacyOnly => false;
[BackgroundDependencyLoader]
2019-06-26 16:52:25 +08:00
private void load()
{
2022-06-29 17:56:15 +08:00
foreach (var ruleset in Rulesets.AvailableRulesets)
{
2023-01-13 04:26:29 +08:00
if (!ruleset.IsLegacyRuleset() && LegacyOnly)
continue;
try
{
2022-06-29 17:56:15 +08:00
AddItem(ruleset);
}
catch
{
2022-06-29 17:56:15 +08:00
Logger.Log($"Could not create ruleset icon for {ruleset.Name}. Please check for an update from the developer.", level: LogLevel.Error);
}
}
}
}
}