2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Configuration;
|
2017-04-21 19:59:04 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Gameplay
|
2017-02-07 12:52:19 +08:00
|
|
|
|
{
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public class SongSelectSettings : SettingsSubsection
|
2017-02-07 12:52:19 +08:00
|
|
|
|
{
|
|
|
|
|
protected override string Header => "Song Select";
|
2016-11-30 23:32:07 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-11-24 17:34:20 +08:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Show converted beatmaps",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuSetting.ShowConvertedBeatmaps),
|
|
|
|
|
},
|
2017-05-15 09:55:29 +08:00
|
|
|
|
new SettingsSlider<double, StarSlider>
|
2016-12-05 22:17:46 +08:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Display beatmaps from",
|
2017-10-23 13:36:08 +08:00
|
|
|
|
Bindable = config.GetBindable<double>(OsuSetting.DisplayStarsMinimum),
|
|
|
|
|
KeyboardStep = 1f
|
2016-12-05 22:17:46 +08:00
|
|
|
|
},
|
2017-05-15 09:55:29 +08:00
|
|
|
|
new SettingsSlider<double, StarSlider>
|
2016-12-05 22:17:46 +08:00
|
|
|
|
{
|
|
|
|
|
LabelText = "up to",
|
2017-10-23 13:36:08 +08:00
|
|
|
|
Bindable = config.GetBindable<double>(OsuSetting.DisplayStarsMaximum),
|
|
|
|
|
KeyboardStep = 1f
|
2016-12-05 22:17:46 +08:00
|
|
|
|
},
|
2017-12-13 17:10:32 +08:00
|
|
|
|
new SettingsEnumDropdown<RandomSelectAlgorithm>
|
2017-06-01 00:41:15 +08:00
|
|
|
|
{
|
2017-12-13 17:10:32 +08:00
|
|
|
|
LabelText = "Random selection algorithm",
|
|
|
|
|
Bindable = config.GetBindable<RandomSelectAlgorithm>(OsuSetting.RandomSelectAlgorithm),
|
2017-11-24 17:34:20 +08:00
|
|
|
|
}
|
2016-11-30 23:32:07 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2017-04-21 19:59:04 +08:00
|
|
|
|
|
|
|
|
|
private class StarSlider : OsuSliderBar<double>
|
|
|
|
|
{
|
|
|
|
|
public override string TooltipText => Current.Value.ToString(@"0.## stars");
|
|
|
|
|
}
|
2017-02-07 12:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|