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-11-08 07:04:49 +08:00
|
|
|
|
using System.Linq;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using OpenTK.Input;
|
2016-11-09 14:23:32 +08:00
|
|
|
|
using osu.Framework;
|
2016-11-12 18:44:16 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
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;
|
|
|
|
|
using osu.Framework.Input;
|
2016-11-12 18:44:16 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2016-11-03 10:22:34 +08:00
|
|
|
|
using osu.Game.Overlays.Options;
|
2016-11-08 10:24:41 +08: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-11-12 20:08:34 +08:00
|
|
|
|
using System;
|
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
|
|
|
|
{
|
2016-11-08 19:07:28 +08:00
|
|
|
|
internal const float CONTENT_MARGINS = 10;
|
|
|
|
|
|
2016-11-30 17:28:08 +08:00
|
|
|
|
public const float TRANSITION_LENGTH = 600;
|
|
|
|
|
|
|
|
|
|
public const float SIDEBAR_WIDTH = OptionsSidebar.default_width;
|
|
|
|
|
|
2016-11-03 07:07:07 +08:00
|
|
|
|
private const float width = 400;
|
2016-11-30 17:28:08 +08:00
|
|
|
|
|
2016-11-09 12:16:04 +08:00
|
|
|
|
private const float sidebar_padding = 10;
|
2016-11-05 07:27:41 +08:00
|
|
|
|
|
|
|
|
|
private ScrollContainer scrollContainer;
|
2016-11-08 19:07:28 +08:00
|
|
|
|
private OptionsSidebar sidebar;
|
2016-11-12 14:53:20 +08:00
|
|
|
|
private SidebarButton[] sidebarButtons;
|
2016-11-09 13:17:48 +08:00
|
|
|
|
private OptionsSection[] sections;
|
2016-11-11 07:04:39 +08:00
|
|
|
|
private float lastKnownScroll;
|
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
|
|
|
|
{
|
2016-11-09 13:17:48 +08:00
|
|
|
|
sections = new OptionsSection[]
|
2016-11-08 07:04:49 +08:00
|
|
|
|
{
|
2016-11-08 10:24:41 +08:00
|
|
|
|
new GeneralSection(),
|
|
|
|
|
new GraphicsSection(),
|
|
|
|
|
new GameplaySection(),
|
|
|
|
|
new AudioSection(),
|
|
|
|
|
new SkinSection(),
|
|
|
|
|
new InputSection(),
|
|
|
|
|
new EditorSection(),
|
|
|
|
|
new OnlineSection(),
|
|
|
|
|
new MaintenanceSection(),
|
2016-11-08 07:04:49 +08:00
|
|
|
|
};
|
|
|
|
|
|
2016-11-08 19:07:28 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
|
AutoSizeAxes = Axes.X;
|
|
|
|
|
|
2016-09-29 19:13:58 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2016-12-01 03:50:41 +08:00
|
|
|
|
new Box
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2016-12-01 03:50:41 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
Alpha = 0.6f,
|
|
|
|
|
},
|
|
|
|
|
scrollContainer = new ScrollContainer
|
|
|
|
|
{
|
|
|
|
|
ScrollDraggerVisible = false,
|
2016-11-05 07:27:41 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
2016-12-01 03:50:41 +08:00
|
|
|
|
Width = width,
|
|
|
|
|
Margin = new MarginPadding { Left = SIDEBAR_WIDTH },
|
|
|
|
|
Children = new[]
|
2016-11-03 07:07:07 +08:00
|
|
|
|
{
|
2016-12-01 03:50:41 +08:00
|
|
|
|
new FlowContainer
|
2016-11-03 07:07:07 +08:00
|
|
|
|
{
|
2016-12-01 03:50:41 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Direction = FlowDirection.VerticalOnly,
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
2016-11-03 07:07:07 +08:00
|
|
|
|
{
|
2016-12-01 03:50:41 +08:00
|
|
|
|
new SpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = "settings",
|
|
|
|
|
TextSize = 40,
|
|
|
|
|
Margin = new MarginPadding { Left = CONTENT_MARGINS, Top = 30 },
|
|
|
|
|
},
|
|
|
|
|
new SpriteText
|
|
|
|
|
{
|
|
|
|
|
Colour = new Color4(255, 102, 170, 255),
|
|
|
|
|
Text = "Change the way osu! behaves",
|
|
|
|
|
TextSize = 18,
|
|
|
|
|
Margin = new MarginPadding { Left = CONTENT_MARGINS, Bottom = 30 },
|
|
|
|
|
},
|
2016-11-08 19:07:28 +08:00
|
|
|
|
new FlowContainer
|
2016-11-08 07:04:49 +08:00
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Direction = FlowDirection.VerticalOnly,
|
2016-12-01 03:50:41 +08:00
|
|
|
|
Children = sections,
|
2016-11-08 07:04:49 +08:00
|
|
|
|
}
|
2016-11-03 07:07:07 +08:00
|
|
|
|
}
|
2016-12-01 03:50:41 +08:00
|
|
|
|
}
|
2016-11-03 07:07:07 +08:00
|
|
|
|
}
|
2016-11-05 07:27:41 +08:00
|
|
|
|
},
|
2016-11-08 19:07:28 +08:00
|
|
|
|
sidebar = new OptionsSidebar
|
2016-11-05 07:27:41 +08:00
|
|
|
|
{
|
2016-11-30 17:28:08 +08:00
|
|
|
|
Width = SIDEBAR_WIDTH,
|
2016-11-09 13:17:48 +08:00
|
|
|
|
Children = sidebarButtons = sections.Select(section =>
|
2016-11-12 14:53:20 +08:00
|
|
|
|
new SidebarButton
|
2016-11-08 07:04:49 +08:00
|
|
|
|
{
|
2016-11-09 13:17:48 +08:00
|
|
|
|
Selected = sections[0] == section,
|
|
|
|
|
Section = section,
|
2016-11-12 20:08:34 +08:00
|
|
|
|
Action = () => scrollContainer.ScrollIntoView(section),
|
2016-11-08 07:04:49 +08:00
|
|
|
|
}
|
2016-11-09 13:17:48 +08:00
|
|
|
|
).ToArray()
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
|
|
|
|
private void load(OsuGame game)
|
2016-11-09 14:23:32 +08:00
|
|
|
|
{
|
2016-11-12 18:44:16 +08:00
|
|
|
|
scrollContainer.Padding = new MarginPadding { Top = game?.Toolbar.DrawHeight ?? 0 };
|
2016-11-09 14:23:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-11 07:04:39 +08:00
|
|
|
|
protected override void Update()
|
2016-11-09 13:17:48 +08:00
|
|
|
|
{
|
2016-11-11 07:04:39 +08:00
|
|
|
|
base.Update();
|
2016-11-12 19:30:12 +08:00
|
|
|
|
|
2016-11-12 20:08:34 +08:00
|
|
|
|
float currentScroll = scrollContainer.Current;
|
|
|
|
|
if (currentScroll != lastKnownScroll)
|
2016-11-09 13:17:48 +08:00
|
|
|
|
{
|
2016-11-12 20:08:34 +08:00
|
|
|
|
lastKnownScroll = currentScroll;
|
2016-11-12 19:30:12 +08:00
|
|
|
|
|
2016-11-12 20:08:34 +08:00
|
|
|
|
OptionsSection bestCandidate = null;
|
|
|
|
|
float bestDistance = float.MaxValue;
|
|
|
|
|
|
|
|
|
|
foreach (OptionsSection section in sections)
|
2016-11-09 13:17:48 +08:00
|
|
|
|
{
|
2016-11-12 20:08:34 +08:00
|
|
|
|
float distance = Math.Abs(scrollContainer.GetChildYInContent(section) - currentScroll);
|
|
|
|
|
if (distance < bestDistance)
|
2016-11-09 13:17:48 +08:00
|
|
|
|
{
|
2016-11-12 20:08:34 +08:00
|
|
|
|
bestDistance = distance;
|
|
|
|
|
bestCandidate = section;
|
2016-11-09 13:17:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-12 20:08:34 +08:00
|
|
|
|
|
|
|
|
|
var previous = sidebarButtons.SingleOrDefault(sb => sb.Selected);
|
|
|
|
|
var next = sidebarButtons.SingleOrDefault(sb => sb.Section == bestCandidate);
|
|
|
|
|
if (next != null)
|
|
|
|
|
{
|
|
|
|
|
previous.Selected = false;
|
|
|
|
|
next.Selected = true;
|
|
|
|
|
}
|
2016-11-09 13:17:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-04 11:29:05 +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-11-30 17:28:08 +08:00
|
|
|
|
scrollContainer.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
|
|
|
|
sidebar.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
2016-12-01 03:50:41 +08:00
|
|
|
|
FadeTo(1, TRANSITION_LENGTH / 2);
|
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()
|
|
|
|
|
{
|
2016-11-30 17:28:08 +08:00
|
|
|
|
scrollContainer.MoveToX(-width, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
|
|
|
|
sidebar.MoveToX(-SIDEBAR_WIDTH, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
2016-12-01 03:50:41 +08:00
|
|
|
|
FadeTo(0, TRANSITION_LENGTH / 2);
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|