2016-11-03 12:26:49 +08:00
|
|
|
|
using System;
|
2016-11-04 11:01:11 +08:00
|
|
|
|
using OpenTK;
|
2016-11-03 12:26:49 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2016-11-08 07:04:49 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2016-11-03 12:26:49 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
|
|
|
{
|
|
|
|
|
public class SkinOptions : OptionsSection
|
|
|
|
|
{
|
2016-11-04 11:01:11 +08:00
|
|
|
|
protected override string Header => "Skin";
|
2016-11-08 07:04:49 +08:00
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_paint_brush;
|
2016-11-04 11:01:11 +08:00
|
|
|
|
|
2016-11-03 12:26:49 +08:00
|
|
|
|
public SkinOptions()
|
|
|
|
|
{
|
2016-11-04 11:01:11 +08:00
|
|
|
|
content.Spacing = new Vector2(0, 5);
|
2016-11-03 12:26:49 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2016-11-04 11:01:11 +08:00
|
|
|
|
new SpriteText { Text = "TODO: Skin preview textures" },
|
|
|
|
|
new SpriteText { Text = "Current skin: TODO dropdown" },
|
|
|
|
|
new OsuButton
|
2016-11-03 12:26:49 +08:00
|
|
|
|
{
|
2016-11-04 11:01:11 +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 BasicCheckBox { LabelText = "Ignore all beatmap skins" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Use skin's sound samples" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Use Taiko skin for Taiko mode" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Always use skin cursor" },
|
|
|
|
|
new SpriteText { Text = "Cursor size: TODO slider" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Automatic cursor size" },
|
2016-11-03 12:26:49 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|