1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00
osu-lazer/osu.Game/Overlays/OptionsOverlay.cs

144 lines
6.0 KiB
C#
Raw Normal View History

2016-09-29 19:13:58 +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-03 07:07:07 +08:00
using System.Diagnostics;
2016-09-29 19:13:58 +08:00
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Input;
2016-10-10 16:17:26 +08:00
using osu.Framework;
2016-10-13 22:57:05 +08:00
using osu.Framework.Graphics;
2016-10-16 17:14:17 +08:00
using osu.Framework.Graphics.Containers;
2016-11-03 07:07:07 +08:00
using osu.Framework.Graphics.Primitives;
2016-10-16 20:10:06 +08:00
using osu.Framework.Graphics.Sprites;
2016-10-13 22:57:05 +08:00
using osu.Framework.Graphics.Transformations;
2016-11-03 07:07:07 +08:00
using osu.Framework.Graphics.UserInterface;
2016-10-13 22:57:05 +08:00
using osu.Framework.Input;
2016-11-03 07:07:07 +08:00
using osu.Framework.Platform;
2016-11-03 10:22:34 +08:00
using osu.Game.Configuration;
using osu.Game.Online.API;
using osu.Game.Overlays.Options;
2016-09-29 19:13:58 +08:00
namespace osu.Game.Overlays
{
2016-11-03 10:22:34 +08:00
public class OptionsOverlay : OverlayContainer
2016-09-29 19:13:58 +08:00
{
internal const float SideMargins = 10;
2016-11-03 07:07:07 +08:00
private const float width = 400;
2016-11-05 07:27:41 +08:00
private const float sideNavWidth = 60;
private const float sideNavPadding = 0;
private ScrollContainer scrollContainer;
private FlowContainer flowContainer;
private GeneralOptions generalOptions;
private GraphicsOptions graphicsOptions;
private GameplayOptions gameplayOptions;
private AudioOptions audioOptions;
private SkinOptions skinOptions;
private InputOptions inputOptions;
private EditorOptions editorOptions;
private OnlineOptions onlineOptions;
private MaintenanceOptions maintenanceOptions;
2016-11-04 11:28:00 +08:00
2016-11-04 10:43:00 +08:00
public OptionsOverlay()
2016-09-29 19:13:58 +08:00
{
Depth = float.MaxValue;
RelativeSizeAxes = Axes.Y;
2016-09-29 19:13:58 +08:00
Size = new Vector2(width, 1);
Position = new Vector2(-width, 0);
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
2016-11-04 11:28:00 +08:00
Colour = Color4.Black,
Alpha = 0.8f,
2016-11-03 07:07:07 +08:00
},
2016-11-05 07:27:41 +08:00
scrollContainer = new ScrollContainer
2016-11-03 07:07:07 +08:00
{
ScrollDraggerAnchor = Anchor.TopLeft,
2016-11-05 07:27:41 +08:00
RelativeSizeAxes = Axes.Y,
Width = width - (sideNavWidth + sideNavPadding * 2),
Position = new Vector2(sideNavWidth + sideNavPadding * 2, 0),
// Note: removing this comment causes... compiler bugs? It's weird.2
2016-11-03 07:07:07 +08:00
Children = new[]
{
2016-11-05 07:27:41 +08:00
flowContainer = new FlowContainer
2016-11-03 07:07:07 +08:00
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Direction = FlowDirection.VerticalOnly,
2016-11-03 10:22:34 +08:00
Children = new Drawable[]
2016-11-03 07:07:07 +08:00
{
new SpriteText
{
Text = "settings",
2016-11-03 07:07:07 +08:00
TextSize = 40,
Margin = new MarginPadding { Left = SideMargins, Top = 30 },
2016-11-03 07:07:07 +08:00
},
new SpriteText
{
Colour = new Color4(235, 117, 139, 255),
Text = "Change the way osu! behaves",
TextSize = 18,
Margin = new MarginPadding { Left = SideMargins, Bottom = 30 },
2016-11-03 10:22:34 +08:00
},
2016-11-05 07:27:41 +08:00
generalOptions = new GeneralOptions(),
graphicsOptions = new GraphicsOptions(),
gameplayOptions = new GameplayOptions(),
audioOptions = new AudioOptions(),
skinOptions = new SkinOptions(),
inputOptions = new InputOptions(),
editorOptions = new EditorOptions(),
onlineOptions = new OnlineOptions(),
maintenanceOptions = new MaintenanceOptions(),
2016-11-03 07:07:07 +08:00
}
}
}
2016-11-05 07:27:41 +08:00
},
new OptionsSideNav
{
Padding = new MarginPadding { Left = sideNavPadding, Right = sideNavPadding },
Width = sideNavWidth + sideNavPadding * 2,
GeneralAction = () => scrollContainer.ScrollIntoView(generalOptions),
GraphicsAction = () => scrollContainer.ScrollIntoView(graphicsOptions),
GameplayAction = () => scrollContainer.ScrollIntoView(gameplayOptions),
AudioAction = () => scrollContainer.ScrollIntoView(audioOptions),
SkinAction = () => scrollContainer.ScrollIntoView(skinOptions),
InputAction = () => scrollContainer.ScrollIntoView(inputOptions),
EditorAction = () => scrollContainer.ScrollIntoView(editorOptions),
OnlineAction = () => scrollContainer.ScrollIntoView(onlineOptions),
MaintenanceAction = () => scrollContainer.ScrollIntoView(maintenanceOptions),
2016-09-29 19:13:58 +08:00
}
};
}
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args) => true;
2016-09-29 19:13:58 +08:00
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
{
switch (args.Key)
{
case Key.Escape:
2016-10-13 22:27:37 +08:00
if (State == Visibility.Hidden) return false;
2016-11-05 07:27:41 +08:00
Hide();
2016-09-29 19:13:58 +08:00
return true;
}
return base.OnKeyDown(state, args);
}
2016-10-13 22:57:05 +08:00
protected override void PopIn()
2016-09-29 19:13:58 +08:00
{
2016-10-13 22:57:05 +08:00
MoveToX(0, 300, EasingTypes.Out);
FadeTo(1, 300);
2016-10-13 22:57:05 +08:00
}
2016-09-29 19:13:58 +08:00
2016-10-13 22:57:05 +08:00
protected override void PopOut()
{
MoveToX(-width, 300, EasingTypes.Out);
FadeTo(0, 300);
2016-09-29 19:13:58 +08:00
}
}
}