mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:57:25 +08:00
19a19f915c
Previously, when hiding the settings overlay, it remains to have a width of `56` (sidebar width), this is due to the panel content being placed next to the sidebar, so therefore the content has to move 400 (PANEL_WIDTH) + 56 (sidebar_width) backwards, for the overlay to have a width of 0 on hide.
96 lines
3.3 KiB
C#
96 lines
3.3 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Overlays.Settings;
|
|
using osu.Game.Overlays.Settings.Sections;
|
|
using osu.Game.Overlays.Settings.Sections.Input;
|
|
using osuTK.Graphics;
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Localisation;
|
|
|
|
namespace osu.Game.Overlays
|
|
{
|
|
public class SettingsOverlay : SettingsPanel, INamedOverlayComponent
|
|
{
|
|
public string IconTexture => "Icons/Hexacons/settings";
|
|
public LocalisableString Title => SettingsStrings.HeaderTitle;
|
|
public LocalisableString Description => SettingsStrings.HeaderDescription;
|
|
|
|
protected override IEnumerable<SettingsSection> CreateSections() => new SettingsSection[]
|
|
{
|
|
new GeneralSection(),
|
|
new GraphicsSection(),
|
|
new AudioSection(),
|
|
new InputSection(createSubPanel(new KeyBindingPanel())),
|
|
new UserInterfaceSection(),
|
|
new GameplaySection(),
|
|
new SkinSection(),
|
|
new OnlineSection(),
|
|
new MaintenanceSection(),
|
|
new DebugSection(),
|
|
};
|
|
|
|
private readonly List<SettingsSubPanel> subPanels = new List<SettingsSubPanel>();
|
|
|
|
private SettingsSubPanel lastOpenedSubPanel;
|
|
|
|
protected override Drawable CreateHeader() => new SettingsHeader(Title, Description);
|
|
protected override Drawable CreateFooter() => new SettingsFooter();
|
|
|
|
public SettingsOverlay()
|
|
: base(true)
|
|
{
|
|
}
|
|
|
|
public override bool AcceptsFocus => lastOpenedSubPanel == null || lastOpenedSubPanel.State.Value == Visibility.Hidden;
|
|
|
|
private T createSubPanel<T>(T subPanel)
|
|
where T : SettingsSubPanel
|
|
{
|
|
subPanel.Depth = 1;
|
|
subPanel.Anchor = Anchor.TopRight;
|
|
subPanel.State.ValueChanged += e => subPanelStateChanged(subPanel, e);
|
|
|
|
subPanels.Add(subPanel);
|
|
|
|
return subPanel;
|
|
}
|
|
|
|
private void subPanelStateChanged(SettingsSubPanel panel, ValueChangedEvent<Visibility> state)
|
|
{
|
|
switch (state.NewValue)
|
|
{
|
|
case Visibility.Visible:
|
|
Sidebar?.FadeColour(Color4.DarkGray, 300, Easing.OutQuint);
|
|
|
|
SectionsContainer.FadeOut(300, Easing.OutQuint);
|
|
ContentContainer.MoveToX(-PANEL_WIDTH, 500, Easing.OutQuint);
|
|
|
|
lastOpenedSubPanel = panel;
|
|
break;
|
|
|
|
case Visibility.Hidden:
|
|
Sidebar?.FadeColour(Color4.White, 300, Easing.OutQuint);
|
|
|
|
SectionsContainer.FadeIn(500, Easing.OutQuint);
|
|
ContentContainer.MoveToX(0, 500, Easing.OutQuint);
|
|
break;
|
|
}
|
|
}
|
|
|
|
protected override float ExpandedPosition => lastOpenedSubPanel?.State.Value == Visibility.Visible ? -PANEL_WIDTH : base.ExpandedPosition;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
foreach (var s in subPanels)
|
|
ContentContainer.Add(s);
|
|
}
|
|
}
|
|
}
|