2017-02-07 13:59:30 +09:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-29 20:13:58 +09:00
|
|
|
|
|
2016-11-07 18:04:49 -05:00
|
|
|
|
using System.Linq;
|
2016-09-29 20:13:58 +09:00
|
|
|
|
using OpenTK.Graphics;
|
2016-11-12 19:44:16 +09: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-02 19:07:07 -04:00
|
|
|
|
using osu.Framework.Graphics.Primitives;
|
2016-10-16 14:10:06 +02:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2016-11-02 22:22:34 -04:00
|
|
|
|
using osu.Game.Overlays.Options;
|
2016-11-12 13:08:34 +01:00
|
|
|
|
using System;
|
2017-01-09 17:18:47 -05:00
|
|
|
|
using osu.Game.Graphics;
|
2017-01-31 18:53:52 +09:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2017-01-31 18:37:11 +09:00
|
|
|
|
using osu.Game.Overlays.Options.Sections;
|
2016-09-29 20:13:58 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
2017-02-08 15:13:32 +09:00
|
|
|
|
public class OptionsOverlay : FocusedOverlayContainer
|
2016-09-29 20:13:58 +09:00
|
|
|
|
{
|
2016-11-08 20:07:28 +09:00
|
|
|
|
internal const float CONTENT_MARGINS = 10;
|
|
|
|
|
|
2016-11-30 18:28:08 +09:00
|
|
|
|
public const float TRANSITION_LENGTH = 600;
|
|
|
|
|
|
2017-02-07 16:15:45 +09:00
|
|
|
|
public const float SIDEBAR_WIDTH = Sidebar.DEFAULT_WIDTH;
|
2016-11-30 18:28:08 +09:00
|
|
|
|
|
2016-11-02 19:07:07 -04:00
|
|
|
|
private const float width = 400;
|
2017-04-06 16:21:18 +08:00
|
|
|
|
|
2016-11-08 23:16:04 -05:00
|
|
|
|
private const float sidebar_padding = 10;
|
2016-11-04 19:27:41 -04:00
|
|
|
|
|
|
|
|
|
private ScrollContainer scrollContainer;
|
2017-01-31 19:58:38 +09:00
|
|
|
|
private Sidebar sidebar;
|
2016-11-12 01:53:20 -05:00
|
|
|
|
private SidebarButton[] sidebarButtons;
|
2016-11-09 00:17:48 -05:00
|
|
|
|
private OptionsSection[] sections;
|
2016-11-10 18:04:39 -05:00
|
|
|
|
private float lastKnownScroll;
|
2016-11-04 12:28:00 +09:00
|
|
|
|
|
2016-11-03 22:43:00 -04:00
|
|
|
|
public OptionsOverlay()
|
2017-01-12 23:49:05 -05:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
|
AutoSizeAxes = Axes.X;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
|
|
|
|
private void load(OsuGame game, OsuColour colours)
|
2016-09-29 20:13:58 +09:00
|
|
|
|
{
|
2016-11-09 00:17:48 -05:00
|
|
|
|
sections = new OptionsSection[]
|
2016-11-07 18:04:49 -05:00
|
|
|
|
{
|
2016-11-07 21:24:41 -05:00
|
|
|
|
new GeneralSection(),
|
|
|
|
|
new GraphicsSection(),
|
|
|
|
|
new GameplaySection(),
|
|
|
|
|
new AudioSection(),
|
|
|
|
|
new SkinSection(),
|
|
|
|
|
new InputSection(),
|
|
|
|
|
new OnlineSection(),
|
|
|
|
|
new MaintenanceSection(),
|
2017-02-26 18:06:59 +09:00
|
|
|
|
new DebugSection(),
|
2016-11-07 18:04:49 -05:00
|
|
|
|
};
|
2016-09-29 20:13:58 +09:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2016-11-30 20:50:41 +01:00
|
|
|
|
new Box
|
2016-09-29 20:13:58 +09:00
|
|
|
|
{
|
2016-11-30 20:50:41 +01:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
Alpha = 0.6f,
|
|
|
|
|
},
|
|
|
|
|
scrollContainer = new ScrollContainer
|
|
|
|
|
{
|
|
|
|
|
ScrollDraggerVisible = false,
|
2016-11-04 19:27:41 -04:00
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
2016-11-30 20:50:41 +01:00
|
|
|
|
Width = width,
|
|
|
|
|
Margin = new MarginPadding { Left = SIDEBAR_WIDTH },
|
|
|
|
|
Children = new[]
|
2016-11-02 19:07:07 -04:00
|
|
|
|
{
|
2017-03-01 19:33:01 +01:00
|
|
|
|
new FillFlowContainer
|
2016-11-02 19:07:07 -04:00
|
|
|
|
{
|
2016-11-30 20:50:41 +01:00
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2017-03-04 11:00:17 +01:00
|
|
|
|
Direction = FillDirection.Vertical,
|
2016-11-30 20:50:41 +01:00
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
2016-11-02 19:07:07 -04:00
|
|
|
|
{
|
2017-01-31 18:53:52 +09:00
|
|
|
|
new OsuSpriteText
|
2016-11-30 20:50:41 +01:00
|
|
|
|
{
|
|
|
|
|
Text = "settings",
|
|
|
|
|
TextSize = 40,
|
2017-02-10 16:26:43 +09:00
|
|
|
|
Margin = new MarginPadding { Left = CONTENT_MARGINS, Top = Toolbar.Toolbar.TOOLTIP_HEIGHT },
|
2016-11-30 20:50:41 +01:00
|
|
|
|
},
|
2017-01-31 18:53:52 +09:00
|
|
|
|
new OsuSpriteText
|
2016-11-30 20:50:41 +01:00
|
|
|
|
{
|
2017-01-12 23:49:05 -05:00
|
|
|
|
Colour = colours.Pink,
|
2016-11-30 20:50:41 +01:00
|
|
|
|
Text = "Change the way osu! behaves",
|
|
|
|
|
TextSize = 18,
|
|
|
|
|
Margin = new MarginPadding { Left = CONTENT_MARGINS, Bottom = 30 },
|
|
|
|
|
},
|
2017-03-01 19:33:01 +01:00
|
|
|
|
new FillFlowContainer
|
2016-11-07 18:04:49 -05:00
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2017-03-04 11:00:17 +01:00
|
|
|
|
Direction = FillDirection.Vertical,
|
2016-11-30 20:50:41 +01:00
|
|
|
|
Children = sections,
|
2017-03-06 17:20:19 +09:00
|
|
|
|
},
|
|
|
|
|
new OptionsFooter()
|
2016-11-02 19:07:07 -04:00
|
|
|
|
}
|
2016-11-30 20:50:41 +01:00
|
|
|
|
}
|
2016-11-02 19:07:07 -04:00
|
|
|
|
}
|
2016-11-04 19:27:41 -04:00
|
|
|
|
},
|
2017-01-31 19:58:38 +09:00
|
|
|
|
sidebar = new Sidebar
|
2016-11-04 19:27:41 -04:00
|
|
|
|
{
|
2016-11-30 18:28:08 +09:00
|
|
|
|
Width = SIDEBAR_WIDTH,
|
2016-11-09 00:17:48 -05:00
|
|
|
|
Children = sidebarButtons = sections.Select(section =>
|
2016-11-12 01:53:20 -05:00
|
|
|
|
new SidebarButton
|
2016-11-07 18:04:49 -05:00
|
|
|
|
{
|
2016-11-09 00:17:48 -05:00
|
|
|
|
Selected = sections[0] == section,
|
|
|
|
|
Section = section,
|
2016-11-12 13:08:34 +01:00
|
|
|
|
Action = () => scrollContainer.ScrollIntoView(section),
|
2016-11-07 18:04:49 -05:00
|
|
|
|
}
|
2016-11-09 00:17:48 -05:00
|
|
|
|
).ToArray()
|
2016-09-29 20:13:58 +09:00
|
|
|
|
}
|
|
|
|
|
};
|
2017-04-06 16:21:18 +08:00
|
|
|
|
|
2016-11-12 19:44:16 +09:00
|
|
|
|
scrollContainer.Padding = new MarginPadding { Top = game?.Toolbar.DrawHeight ?? 0 };
|
2016-11-09 15:23:32 +09:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-10 18:04:39 -05:00
|
|
|
|
protected override void Update()
|
2016-11-09 00:17:48 -05:00
|
|
|
|
{
|
2016-11-10 18:04:39 -05:00
|
|
|
|
base.Update();
|
2016-11-12 12:30:12 +01:00
|
|
|
|
|
2016-11-12 13:08:34 +01:00
|
|
|
|
float currentScroll = scrollContainer.Current;
|
|
|
|
|
if (currentScroll != lastKnownScroll)
|
2016-11-09 00:17:48 -05:00
|
|
|
|
{
|
2016-11-12 13:08:34 +01:00
|
|
|
|
lastKnownScroll = currentScroll;
|
2016-11-12 12:30:12 +01:00
|
|
|
|
|
2016-11-12 13:08:34 +01:00
|
|
|
|
OptionsSection bestCandidate = null;
|
|
|
|
|
float bestDistance = float.MaxValue;
|
|
|
|
|
|
|
|
|
|
foreach (OptionsSection section in sections)
|
2016-11-09 00:17:48 -05:00
|
|
|
|
{
|
2017-02-13 08:02:14 +01:00
|
|
|
|
float distance = Math.Abs(scrollContainer.GetChildPosInContent(section) - currentScroll);
|
2016-11-12 13:08:34 +01:00
|
|
|
|
if (distance < bestDistance)
|
2016-11-09 00:17:48 -05:00
|
|
|
|
{
|
2016-11-12 13:08:34 +01:00
|
|
|
|
bestDistance = distance;
|
|
|
|
|
bestCandidate = section;
|
2016-11-09 00:17:48 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-12 13:08:34 +01:00
|
|
|
|
|
|
|
|
|
var previous = sidebarButtons.SingleOrDefault(sb => sb.Selected);
|
|
|
|
|
var next = sidebarButtons.SingleOrDefault(sb => sb.Section == bestCandidate);
|
2017-03-09 15:52:40 +09:00
|
|
|
|
if (previous != null) previous.Selected = false;
|
2017-03-09 22:29:39 +02:00
|
|
|
|
if (next != null) next.Selected = true;
|
2016-11-09 00:17:48 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-13 22:57:05 +08:00
|
|
|
|
protected override void PopIn()
|
2016-09-29 20:13:58 +09:00
|
|
|
|
{
|
2017-02-08 15:13:32 +09:00
|
|
|
|
base.PopIn();
|
|
|
|
|
|
2016-11-30 18:28:08 +09:00
|
|
|
|
scrollContainer.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
|
|
|
|
sidebar.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
2016-11-30 20:50:41 +01:00
|
|
|
|
FadeTo(1, TRANSITION_LENGTH / 2);
|
2016-10-13 22:57:05 +08:00
|
|
|
|
}
|
2016-09-29 20:13:58 +09:00
|
|
|
|
|
2016-10-13 22:57:05 +08:00
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
2017-02-09 13:54:10 +09:00
|
|
|
|
base.PopOut();
|
|
|
|
|
|
2016-11-30 18:28:08 +09:00
|
|
|
|
scrollContainer.MoveToX(-width, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
|
|
|
|
sidebar.MoveToX(-SIDEBAR_WIDTH, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
2016-11-30 20:50:41 +01:00
|
|
|
|
FadeTo(0, TRANSITION_LENGTH / 2);
|
2016-09-29 20:13:58 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|