1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 07:27:24 +08:00
osu-lazer/osu.Game/Overlays/Options/Sections/SkinSection.cs

75 lines
2.7 KiB
C#
Raw Normal View History

2016-12-06 17:56:20 +08:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-11-11 06:40:42 +08:00
using osu.Framework.Allocation;
using osu.Framework.Configuration;
2016-11-11 06:40:42 +08:00
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Graphics;
using osu.Game.Graphics.UserInterface;
using OpenTK;
2016-11-11 06:40:42 +08:00
namespace osu.Game.Overlays.Options.Sections
2016-11-03 12:26:49 +08:00
{
2016-11-08 10:24:41 +08:00
public class SkinSection : OptionsSection
2016-11-03 12:26:49 +08:00
{
2016-11-09 12:16:04 +08:00
public override string Header => "Skin";
2016-11-11 06:40:42 +08:00
public override FontAwesome Icon => FontAwesome.fa_paint_brush;
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
2016-11-03 12:26:49 +08:00
{
content.Spacing = new Vector2(0, 5);
2016-11-03 12:26:49 +08:00
Children = new Drawable[]
{
new OptionLabel { Text = "TODO: Skin preview textures" },
new OptionLabel { Text = "Current skin: TODO dropdown" },
new OsuButton
2016-11-03 12:26:49 +08:00
{
RelativeSizeAxes = Axes.X,
Text = "Preview gameplay",
},
new OsuButton
{
RelativeSizeAxes = Axes.X,
Text = "Open skin folder",
},
new OsuButton
{
RelativeSizeAxes = Axes.X,
Text = "Export as .osk",
},
new OsuCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Ignore all beatmap skins",
Bindable = config.GetBindable<bool>(OsuConfig.IgnoreBeatmapSkins)
},
new OsuCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Use skin's sound samples",
Bindable = config.GetBindable<bool>(OsuConfig.SkinSamples)
},
new OsuCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Use Taiko skin for Taiko mode",
Bindable = config.GetBindable<bool>(OsuConfig.UseTaikoSkin)
},
new OsuCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Always use skin cursor",
Bindable = config.GetBindable<bool>(OsuConfig.UseSkinCursor)
},
new OptionSlider<double>
2016-12-02 06:30:53 +08:00
{
2016-12-02 06:31:21 +08:00
LabelText = "Cursor size",
2016-12-02 06:30:53 +08:00
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.CursorSize)
},
new OsuCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Automatic cursor size",
Bindable = config.GetBindable<bool>(OsuConfig.AutomaticCursorSizing)
},
2016-11-03 12:26:49 +08:00
};
}
}
}