osu/osu.Game/Overlays/OptionsOverlay.cs

145 lines
5.2 KiB
C#
Raw Normal View History

2016-09-29 11:13:58 +00: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-02 23:07:07 +00:00
using System.Diagnostics;
using System.Linq;
2016-09-29 11:13:58 +00:00
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Input;
2016-10-13 14:57:05 +00:00
using osu.Framework.Graphics;
2016-10-16 09:14:17 +00:00
using osu.Framework.Graphics.Containers;
2016-11-02 23:07:07 +00:00
using osu.Framework.Graphics.Primitives;
2016-10-16 12:10:06 +00:00
using osu.Framework.Graphics.Sprites;
2016-10-13 14:57:05 +00:00
using osu.Framework.Graphics.Transformations;
using osu.Framework.Input;
2016-11-03 02:22:34 +00:00
using osu.Game.Overlays.Options;
2016-11-08 02:24:41 +00:00
using osu.Game.Overlays.Options.Audio;
using osu.Game.Overlays.Options.Gameplay;
using osu.Game.Overlays.Options.General;
using osu.Game.Overlays.Options.Graphics;
using osu.Game.Overlays.Options.Input;
using osu.Game.Overlays.Options.Online;
2016-09-29 11:13:58 +00:00
namespace osu.Game.Overlays
{
2016-11-03 02:22:34 +00:00
public class OptionsOverlay : OverlayContainer
2016-09-29 11:13:58 +00:00
{
internal const float CONTENT_MARGINS = 10;
2016-11-02 23:07:07 +00:00
private const float width = 400;
private const float sidebar_width = 60;
private const float sidebar_padding = 10;
2016-11-04 23:27:41 +00:00
private ScrollContainer scrollContainer;
private OptionsSidebar sidebar;
2016-11-04 03:28:00 +00:00
2016-11-04 02:43:00 +00:00
public OptionsOverlay()
2016-09-29 11:13:58 +00:00
{
var sections = new OptionsSection[]
{
2016-11-08 02:24:41 +00:00
new GeneralSection(),
new GraphicsSection(),
new GameplaySection(),
new AudioSection(),
new SkinSection(),
new InputSection(),
new EditorSection(),
new OnlineSection(),
new MaintenanceSection(),
};
RelativeSizeAxes = Axes.Y;
AutoSizeAxes = Axes.X;
2016-09-29 11:13:58 +00:00
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
2016-11-04 03:28:00 +00:00
Colour = Color4.Black,
Alpha = 0.6f,
2016-11-02 23:07:07 +00:00
},
scrollContainer = new ScrollContainer
2016-11-02 23:07:07 +00:00
{
ScrollbarOverlapsContent = false,
ScrollDraggerAnchor = Anchor.TopLeft,
2016-11-04 23:27:41 +00:00
RelativeSizeAxes = Axes.Y,
Width = width,
Padding = new MarginPadding { Left = sidebar_width },
2016-11-02 23:07:07 +00:00
Children = new[]
{
new FlowContainer
2016-11-02 23:07:07 +00:00
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Direction = FlowDirection.VerticalOnly,
2016-11-03 02:22:34 +00:00
Children = new Drawable[]
2016-11-02 23:07:07 +00:00
{
new SpriteText
{
Text = "settings",
2016-11-02 23:07:07 +00:00
TextSize = 40,
Margin = new MarginPadding { Left = CONTENT_MARGINS, Top = 30 },
2016-11-02 23:07:07 +00:00
},
new SpriteText
{
Colour = new Color4(235, 117, 139, 255),
Text = "Change the way osu! behaves",
TextSize = 18,
Margin = new MarginPadding { Left = CONTENT_MARGINS, Bottom = 30 },
2016-11-03 02:22:34 +00:00
},
new FlowContainer
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Direction = FlowDirection.VerticalOnly,
Children = sections,
}
2016-11-02 23:07:07 +00:00
}
}
}
2016-11-04 23:27:41 +00:00
},
sidebar = new OptionsSidebar
2016-11-04 23:27:41 +00:00
{
Width = sidebar_width,
Children = sections.Select(section =>
2016-11-08 10:17:09 +00:00
new OptionsSidebar.SidebarButton
{
Icon = section.Icon,
Action = () => scrollContainer.ScrollIntoView(section)
}
)
2016-09-29 11:13:58 +00:00
}
};
}
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args) => true;
2016-09-29 11:13:58 +00:00
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
{
switch (args.Key)
{
case Key.Escape:
2016-10-13 14:27:37 +00:00
if (State == Visibility.Hidden) return false;
2016-11-04 23:27:41 +00:00
Hide();
2016-09-29 11:13:58 +00:00
return true;
}
return base.OnKeyDown(state, args);
}
2016-10-13 14:57:05 +00:00
protected override void PopIn()
2016-09-29 11:13:58 +00:00
{
scrollContainer.MoveToX(0, 600, EasingTypes.OutQuint);
sidebar.MoveToX(0, 800, EasingTypes.OutQuint);
FadeTo(1, 300);
2016-10-13 14:57:05 +00:00
}
2016-09-29 11:13:58 +00:00
2016-10-13 14:57:05 +00:00
protected override void PopOut()
{
scrollContainer.MoveToX(-width, 600, EasingTypes.OutQuint);
sidebar.MoveToX(-sidebar_width, 600, EasingTypes.OutQuint);
FadeTo(0, 300);
2016-09-29 11:13:58 +00:00
}
}
}