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

180 lines
6.2 KiB
C#
Raw Normal View History

// 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 19:13:58 +08:00
using System.Linq;
2016-09-29 19:13:58 +08:00
using OpenTK.Graphics;
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-10-16 20:10:06 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Game.Overlays.Settings;
using System;
using osu.Game.Overlays.Settings.Sections;
using osu.Framework.Input;
2016-09-29 19:13:58 +08:00
namespace osu.Game.Overlays
{
public class SettingsOverlay : FocusedOverlayContainer
2016-09-29 19:13:58 +08:00
{
internal const float CONTENT_MARGINS = 10;
public const float TRANSITION_LENGTH = 600;
2017-02-07 15:15:45 +08:00
public const float SIDEBAR_WIDTH = Sidebar.DEFAULT_WIDTH;
2016-11-03 07:07:07 +08:00
private const float width = 400;
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;
2017-01-31 18:58:38 +08:00
private Sidebar sidebar;
2016-11-12 14:53:20 +08:00
private SidebarButton[] sidebarButtons;
private SettingsSection[] sections;
private SettingsHeader header;
private SettingsFooter footer;
private SearchContainer searchContainer;
2016-11-11 07:04:39 +08:00
private float lastKnownScroll;
2016-11-04 11:28:00 +08:00
public SettingsOverlay()
{
RelativeSizeAxes = Axes.Y;
AutoSizeAxes = Axes.X;
}
[BackgroundDependencyLoader(permitNulls: true)]
private void load(OsuGame game)
2016-09-29 19:13:58 +08:00
{
sections = new SettingsSection[]
{
2016-11-08 10:24:41 +08:00
new GeneralSection(),
new GraphicsSection(),
new GameplaySection(),
new AudioSection(),
new SkinSection(),
new InputSection(),
new OnlineSection(),
new MaintenanceSection(),
2017-02-26 17:06:59 +08:00
new DebugSection(),
};
2016-09-29 19:13:58 +08:00
Children = new Drawable[]
{
new Box
2016-09-29 19:13:58 +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,
Width = width,
Margin = new MarginPadding { Left = SIDEBAR_WIDTH },
Children = new Drawable[]
2016-11-03 07:07:07 +08:00
{
searchContainer = new SearchContainer
2016-11-03 07:07:07 +08:00
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
2017-03-04 18:00:17 +08:00
Direction = FillDirection.Vertical,
Children = sections,
},
footer = new SettingsFooter(),
header = new SettingsHeader(() => scrollContainer.Current)
{
Exit = Hide,
},
2016-11-03 07:07:07 +08:00
}
2016-11-05 07:27:41 +08:00
},
2017-01-31 18:58:38 +08:00
sidebar = new Sidebar
2016-11-05 07:27:41 +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-09 13:17:48 +08:00
Selected = sections[0] == section,
Section = section,
Action = () => scrollContainer.ScrollIntoView(section),
}
2016-11-09 13:17:48 +08:00
).ToArray()
2016-09-29 19:13:58 +08:00
}
};
header.SearchTextBox.Current.ValueChanged += newValue => searchContainer.SearchTerm = newValue;
scrollContainer.Padding = new MarginPadding { Top = game?.Toolbar.DrawHeight ?? 0 };
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
//we need to update these manually because we can't put the SettingsHeader inside the SearchContainer (due to its anchoring).
searchContainer.Y = header.DrawHeight;
footer.Y = searchContainer.Y + searchContainer.DrawHeight;
}
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();
float currentScroll = scrollContainer.Current;
if (currentScroll != lastKnownScroll)
2016-11-09 13:17:48 +08:00
{
lastKnownScroll = currentScroll;
SettingsSection bestCandidate = null;
float bestDistance = float.MaxValue;
foreach (SettingsSection section in sections)
2016-11-09 13:17:48 +08:00
{
2017-02-13 15:02:14 +08:00
float distance = Math.Abs(scrollContainer.GetChildPosInContent(section) - currentScroll);
if (distance < bestDistance)
2016-11-09 13:17:48 +08:00
{
bestDistance = distance;
bestCandidate = section;
2016-11-09 13:17:48 +08:00
}
}
var previous = sidebarButtons.SingleOrDefault(sb => sb.Selected);
var next = sidebarButtons.SingleOrDefault(sb => sb.Section == bestCandidate);
if (previous != null) previous.Selected = false;
2017-03-10 04:29:39 +08:00
if (next != null) next.Selected = true;
2016-11-09 13:17:48 +08:00
}
}
2016-10-13 22:57:05 +08:00
protected override void PopIn()
2016-09-29 19:13:58 +08:00
{
base.PopIn();
scrollContainer.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
sidebar.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
FadeTo(1, TRANSITION_LENGTH / 2);
header.SearchTextBox.HoldFocus = true;
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()
{
base.PopOut();
scrollContainer.MoveToX(-width, TRANSITION_LENGTH, EasingTypes.OutQuint);
sidebar.MoveToX(-SIDEBAR_WIDTH, TRANSITION_LENGTH, EasingTypes.OutQuint);
FadeTo(0, TRANSITION_LENGTH / 2);
header.SearchTextBox.HoldFocus = false;
header.SearchTextBox.TriggerFocusLost();
2016-09-29 19:13:58 +08:00
}
protected override bool OnFocus(InputState state)
{
header.SearchTextBox.TriggerFocus(state);
return false;
}
2016-09-29 19:13:58 +08:00
}
}