osu/osu.Game/Overlays/SettingsOverlay.cs

201 lines
6.9 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 11:13:58 +00:00
using System;
using System.Linq;
2016-09-29 11:13:58 +00:00
using OpenTK.Graphics;
using osu.Framework.Allocation;
2016-10-13 14:57:05 +00:00
using osu.Framework.Graphics;
2016-10-16 09:14:17 +00:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.UserInterface;
using osu.Game.Overlays.Settings;
using osu.Game.Overlays.Settings.Sections;
2016-09-29 11:13:58 +00:00
namespace osu.Game.Overlays
{
public class SettingsOverlay : OsuFocusedOverlayContainer
2016-09-29 11:13:58 +00:00
{
internal const float CONTENT_MARGINS = 10;
public const float TRANSITION_LENGTH = 600;
2017-02-07 07:15:45 +00:00
public const float SIDEBAR_WIDTH = Sidebar.DEFAULT_WIDTH;
2016-11-02 23:07:07 +00:00
private const float width = 400;
2016-11-09 04:16:04 +00:00
private const float sidebar_padding = 10;
2016-11-04 23:27:41 +00:00
2017-01-31 10:58:38 +00:00
private Sidebar sidebar;
2016-11-12 06:53:20 +00:00
private SidebarButton[] sidebarButtons;
2017-05-20 20:32:15 +00:00
private SidebarButton selectedSidebarButton;
private SettingsSectionsContainer sectionsContainer;
private SearchTextBox searchTextBox;
2016-11-04 03:28:00 +00:00
private Func<float> getToolbarHeight;
public SettingsOverlay()
{
RelativeSizeAxes = Axes.Y;
AutoSizeAxes = Axes.X;
}
[BackgroundDependencyLoader(permitNulls: true)]
private void load(OsuGame game)
2016-09-29 11:13:58 +00:00
{
2017-05-20 20:32:15 +00:00
var sections = new SettingsSection[]
{
2016-11-08 02:24:41 +00:00
new GeneralSection(),
new GraphicsSection(),
new GameplaySection(),
new AudioSection(),
new SkinSection(),
new InputSection(),
new OnlineSection(),
new MaintenanceSection(),
2017-02-26 09:06:59 +00:00
new DebugSection(),
};
2016-09-29 11:13:58 +00:00
Children = new Drawable[]
{
new Box
2016-09-29 11:13:58 +00:00
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black,
Alpha = 0.6f,
},
sectionsContainer = new SettingsSectionsContainer
{
2016-11-04 23:27:41 +00:00
RelativeSizeAxes = Axes.Y,
Width = width,
Margin = new MarginPadding { Left = SIDEBAR_WIDTH },
ExpandableHeader = new SettingsHeader(),
FixedHeader = searchTextBox = new SearchTextBox
2016-11-02 23:07:07 +00:00
{
RelativeSizeAxes = Axes.X,
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
Width = 0.95f,
Margin = new MarginPadding
2016-11-02 23:07:07 +00:00
{
Top = 20,
Bottom = 20
},
Exit = Hide,
},
Sections = sections,
Footer = new SettingsFooter()
2016-11-04 23:27:41 +00:00
},
2017-01-31 10:58:38 +00:00
sidebar = new Sidebar
2016-11-04 23:27:41 +00:00
{
Width = SIDEBAR_WIDTH,
2016-11-09 05:17:48 +00:00
Children = sidebarButtons = sections.Select(section =>
2016-11-12 06:53:20 +00:00
new SidebarButton
{
2016-11-09 05:17:48 +00:00
Section = section,
Action = s =>
{
sectionsContainer.ScrollTo(s);
sidebar.State = ExpandedState.Contracted;
},
}
2016-11-09 05:17:48 +00:00
).ToArray()
2016-09-29 11:13:58 +00:00
}
};
2017-05-20 20:32:15 +00:00
selectedSidebarButton = sidebarButtons[0];
selectedSidebarButton.Selected = true;
sectionsContainer.SelectedSection.ValueChanged += section =>
{
selectedSidebarButton.Selected = false;
selectedSidebarButton = sidebarButtons.Single(b => b.Section == section);
selectedSidebarButton.Selected = true;
};
searchTextBox.Current.ValueChanged += newValue => sectionsContainer.SearchContainer.SearchTerm = newValue;
getToolbarHeight = () => game?.ToolbarOffset ?? 0;
2016-11-09 05:17:48 +00:00
}
2016-10-13 14:57:05 +00:00
protected override void PopIn()
2016-09-29 11:13:58 +00:00
{
base.PopIn();
sectionsContainer.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
sidebar.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
FadeTo(1, TRANSITION_LENGTH / 2);
searchTextBox.HoldFocus = true;
2016-10-13 14:57:05 +00:00
}
2016-09-29 11:13:58 +00:00
2016-10-13 14:57:05 +00:00
protected override void PopOut()
{
base.PopOut();
sectionsContainer.MoveToX(-width, TRANSITION_LENGTH, EasingTypes.OutQuint);
sidebar.MoveToX(-SIDEBAR_WIDTH, TRANSITION_LENGTH, EasingTypes.OutQuint);
FadeTo(0, TRANSITION_LENGTH / 2);
searchTextBox.HoldFocus = false;
if (searchTextBox.HasFocus)
InputManager.ChangeFocus(null);
2016-09-29 11:13:58 +00:00
}
2017-05-30 07:33:26 +00:00
public override bool AcceptsFocus => true;
protected override bool OnClick(InputState state) => true;
protected override void OnFocus(InputState state)
{
InputManager.ChangeFocus(searchTextBox);
2017-05-30 07:33:26 +00:00
base.OnFocus(state);
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
sectionsContainer.Margin = new MarginPadding { Left = sidebar.DrawWidth };
sectionsContainer.Padding = new MarginPadding { Top = getToolbarHeight() };
}
private class SettingsSectionsContainer : SectionsContainer
{
public SearchContainer SearchContainer;
private readonly Box headerBackground;
protected override Container<Drawable> CreateScrollContentContainer()
=> SearchContainer = new SearchContainer
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Direction = FillDirection.Vertical,
};
public SettingsSectionsContainer()
{
2017-05-30 07:33:26 +00:00
ScrollContainer.ScrollbarVisible = false;
Add(headerBackground = new Box
{
Colour = Color4.Black,
RelativeSizeAxes = Axes.X
});
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
// no null check because the usage of this class is strict
headerBackground.Height = ExpandableHeader.LayoutSize.Y + FixedHeader.LayoutSize.Y;
headerBackground.Y = ExpandableHeader.Y;
headerBackground.Alpha = -ExpandableHeader.Y / ExpandableHeader.LayoutSize.Y * 0.5f;
}
}
2016-09-29 11:13:58 +00:00
}
}