mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 21:52:57 +08:00
76 lines
2.9 KiB
C#
76 lines
2.9 KiB
C#
// 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 System;
|
|
using System.Linq;
|
|
using osu.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
|
using osu.Game.Localisation;
|
|
using osu.Game.Overlays.Settings;
|
|
using osu.Game.Rulesets.Mania.Configuration;
|
|
using osu.Game.Rulesets.Mania.UI;
|
|
|
|
namespace osu.Game.Rulesets.Mania
|
|
{
|
|
public partial class ManiaSettingsSubsection : RulesetSettingsSubsection
|
|
{
|
|
protected override LocalisableString Header => "osu!mania";
|
|
|
|
public ManiaSettingsSubsection(ManiaRuleset ruleset)
|
|
: base(ruleset)
|
|
{
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
var config = (ManiaRulesetConfigManager)Config;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new SettingsItemV2(new FormEnumDropdown<ManiaScrollingDirection>
|
|
{
|
|
Caption = RulesetSettingsStrings.ScrollingDirection,
|
|
Current = config.GetBindable<ManiaScrollingDirection>(ManiaRulesetSetting.ScrollDirection)
|
|
}),
|
|
new SettingsItemV2(new FormSliderBar<double>
|
|
{
|
|
Caption = RulesetSettingsStrings.ScrollSpeed,
|
|
Current = config.GetBindable<double>(ManiaRulesetSetting.ScrollSpeed),
|
|
KeyboardStep = 1,
|
|
LabelFormat = v => RulesetSettingsStrings.ScrollSpeedTooltip((int)DrawableManiaRuleset.ComputeScrollTime(v), v),
|
|
}),
|
|
new SettingsItemV2(new FormCheckBox
|
|
{
|
|
Caption = RulesetSettingsStrings.TimingBasedColouring,
|
|
Current = config.GetBindable<bool>(ManiaRulesetSetting.TimingBasedNoteColouring),
|
|
})
|
|
{
|
|
Keywords = new[] { "color" },
|
|
},
|
|
};
|
|
|
|
Add(new SettingsItemV2(new FormCheckBox
|
|
{
|
|
Caption = RulesetSettingsStrings.TouchOverlay,
|
|
Current = config.GetBindable<bool>(ManiaRulesetSetting.TouchOverlay)
|
|
}));
|
|
|
|
if (RuntimeInfo.IsMobile)
|
|
{
|
|
Add(new SettingsItemV2(new FormEnumDropdown<ManiaMobileLayout>
|
|
{
|
|
Caption = RulesetSettingsStrings.MobileLayout,
|
|
Current = config.GetBindable<ManiaMobileLayout>(ManiaRulesetSetting.MobileLayout),
|
|
#pragma warning disable CS0618 // Type or member is obsolete
|
|
Items = Enum.GetValues<ManiaMobileLayout>().Where(l => l != ManiaMobileLayout.LandscapeWithOverlay),
|
|
#pragma warning restore CS0618 // Type or member is obsolete
|
|
}));
|
|
}
|
|
}
|
|
}
|
|
}
|