2016-11-10 17:40:42 -05:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using osu.Framework;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
2016-11-03 00:26:49 -04:00
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
|
|
|
{
|
2016-11-07 21:24:41 -05:00
|
|
|
|
public class SkinSection : OptionsSection
|
2016-11-03 00:26:49 -04:00
|
|
|
|
{
|
2016-11-08 23:16:04 -05:00
|
|
|
|
public override string Header => "Skin";
|
2016-11-10 17:40:42 -05:00
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_paint_brush;
|
|
|
|
|
|
2016-11-12 19:44:16 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
2016-11-03 00:26:49 -04:00
|
|
|
|
{
|
2016-11-03 23:01:11 -04:00
|
|
|
|
content.Spacing = new Vector2(0, 5);
|
2016-11-03 00:26:49 -04:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2016-11-03 23:01:11 -04:00
|
|
|
|
new SpriteText { Text = "TODO: Skin preview textures" },
|
|
|
|
|
new SpriteText { Text = "Current skin: TODO dropdown" },
|
|
|
|
|
new OsuButton
|
2016-11-03 00:26:49 -04:00
|
|
|
|
{
|
2016-11-03 23:01:11 -04: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",
|
|
|
|
|
},
|
2016-11-10 17:40:42 -05:00
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Ignore all beatmap skins",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.IgnoreBeatmapSkins)
|
|
|
|
|
},
|
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Use skin's sound samples",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.SkinSamples)
|
|
|
|
|
},
|
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Use Taiko skin for Taiko mode",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.UseTaikoSkin)
|
|
|
|
|
},
|
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Always use skin cursor",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.UseSkinCursor)
|
|
|
|
|
},
|
2016-11-03 23:01:11 -04:00
|
|
|
|
new SpriteText { Text = "Cursor size: TODO slider" },
|
2016-11-10 17:40:42 -05:00
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Automatic cursor size",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.AutomaticCursorSizing)
|
|
|
|
|
},
|
2016-11-03 00:26:49 -04:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|