2017-02-07 12:59:30 +08: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 19:13:58 +08:00
|
|
|
|
|
2016-11-08 07:04:49 +08:00
|
|
|
|
using System.Linq;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
using OpenTK.Graphics;
|
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-10-16 20:10:06 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-05-21 03:50:04 +08:00
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2017-05-15 09:55:29 +08:00
|
|
|
|
using osu.Game.Overlays.Settings;
|
|
|
|
|
using osu.Game.Overlays.Settings.Sections;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public class SettingsOverlay : FocusedOverlayContainer
|
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;
|
|
|
|
|
|
2017-02-07 15:15:45 +08:00
|
|
|
|
public const float SIDEBAR_WIDTH = Sidebar.DEFAULT_WIDTH;
|
2016-11-30 17:28:08 +08:00
|
|
|
|
|
2016-11-03 07:07:07 +08:00
|
|
|
|
private const float width = 400;
|
2017-04-06 16:21:18 +08:00
|
|
|
|
|
2016-11-09 12:16:04 +08:00
|
|
|
|
private const float sidebar_padding = 10;
|
2016-11-05 07:27:41 +08:00
|
|
|
|
|
2017-01-31 18:58:38 +08:00
|
|
|
|
private Sidebar sidebar;
|
2016-11-12 14:53:20 +08:00
|
|
|
|
private SidebarButton[] sidebarButtons;
|
2017-05-21 04:32:15 +08:00
|
|
|
|
private SidebarButton selectedSidebarButton;
|
2017-05-11 12:19:31 +08:00
|
|
|
|
|
2017-05-21 03:50:04 +08:00
|
|
|
|
private SettingsSectionsContainer sectionsContainer;
|
|
|
|
|
|
2017-05-21 04:12:16 +08:00
|
|
|
|
private SearchTextBox searchTextBox;
|
2016-11-04 11:28:00 +08:00
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public SettingsOverlay()
|
2017-01-13 12:49:05 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
|
AutoSizeAxes = Axes.X;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
2017-05-11 13:55:25 +08:00
|
|
|
|
private void load(OsuGame game)
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2017-05-21 04:32:15 +08:00
|
|
|
|
var sections = new SettingsSection[]
|
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 OnlineSection(),
|
|
|
|
|
new MaintenanceSection(),
|
2017-02-26 17:06:59 +08:00
|
|
|
|
new DebugSection(),
|
2016-11-08 07:04:49 +08:00
|
|
|
|
};
|
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,
|
|
|
|
|
},
|
2017-05-21 03:50:04 +08:00
|
|
|
|
sectionsContainer = new SettingsSectionsContainer
|
2016-12-01 03:50:41 +08:00
|
|
|
|
{
|
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 },
|
2017-05-21 04:12:16 +08:00
|
|
|
|
ExpandableHeader = new SettingsHeader(),
|
|
|
|
|
FixedHeader = searchTextBox = new SearchTextBox
|
2016-11-03 07:07:07 +08:00
|
|
|
|
{
|
2017-05-21 03:50:04 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Width = 0.95f,
|
|
|
|
|
Margin = new MarginPadding
|
2016-11-03 07:07:07 +08:00
|
|
|
|
{
|
2017-05-21 03:50:04 +08:00
|
|
|
|
Top = 20,
|
|
|
|
|
Bottom = 20
|
2017-05-11 13:55:25 +08:00
|
|
|
|
},
|
2017-05-21 03:50:04 +08:00
|
|
|
|
Exit = Hide,
|
|
|
|
|
},
|
|
|
|
|
Sections = sections,
|
2017-05-21 04:12:16 +08:00
|
|
|
|
Footer = new SettingsFooter()
|
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
|
|
|
|
{
|
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
|
|
|
|
Section = section,
|
2017-05-21 04:32:15 +08:00
|
|
|
|
Action = sectionsContainer.ScrollContainer.ScrollIntoView,
|
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
|
|
|
|
}
|
|
|
|
|
};
|
2017-04-06 16:21:18 +08:00
|
|
|
|
|
2017-05-21 04:32:15 +08:00
|
|
|
|
selectedSidebarButton = sidebarButtons[0];
|
|
|
|
|
selectedSidebarButton.Selected = true;
|
|
|
|
|
|
|
|
|
|
sectionsContainer.SelectedSection.ValueChanged += section =>
|
|
|
|
|
{
|
|
|
|
|
selectedSidebarButton.Selected = false;
|
|
|
|
|
selectedSidebarButton = sidebarButtons.Single(b => b.Section == section);
|
|
|
|
|
selectedSidebarButton.Selected = true;
|
|
|
|
|
};
|
|
|
|
|
|
2017-05-21 04:12:16 +08:00
|
|
|
|
searchTextBox.Current.ValueChanged += newValue => sectionsContainer.SearchContainer.SearchTerm = newValue;
|
2017-05-11 13:55:25 +08:00
|
|
|
|
|
2017-05-21 03:50:04 +08:00
|
|
|
|
sectionsContainer.Padding = new MarginPadding { Top = game?.Toolbar.DrawHeight ?? 0 };
|
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
|
|
|
|
{
|
2017-02-08 14:13:32 +08:00
|
|
|
|
base.PopIn();
|
|
|
|
|
|
2017-05-21 03:50:04 +08:00
|
|
|
|
sectionsContainer.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
2016-11-30 17:28:08 +08:00
|
|
|
|
sidebar.MoveToX(0, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
2016-12-01 03:50:41 +08:00
|
|
|
|
FadeTo(1, TRANSITION_LENGTH / 2);
|
2017-05-11 12:19:31 +08:00
|
|
|
|
|
2017-05-21 04:12:16 +08:00
|
|
|
|
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()
|
|
|
|
|
{
|
2017-02-09 12:54:10 +08:00
|
|
|
|
base.PopOut();
|
|
|
|
|
|
2017-05-21 03:50:04 +08:00
|
|
|
|
sectionsContainer.MoveToX(-width, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
2016-11-30 17:28:08 +08:00
|
|
|
|
sidebar.MoveToX(-SIDEBAR_WIDTH, TRANSITION_LENGTH, EasingTypes.OutQuint);
|
2016-12-01 03:50:41 +08:00
|
|
|
|
FadeTo(0, TRANSITION_LENGTH / 2);
|
2017-05-11 12:19:31 +08:00
|
|
|
|
|
2017-05-21 04:12:16 +08:00
|
|
|
|
searchTextBox.HoldFocus = false;
|
|
|
|
|
searchTextBox.TriggerFocusLost();
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
2017-05-11 12:56:21 +08:00
|
|
|
|
|
|
|
|
|
protected override bool OnFocus(InputState state)
|
|
|
|
|
{
|
2017-05-21 04:12:16 +08:00
|
|
|
|
searchTextBox.TriggerFocus(state);
|
2017-05-11 12:56:21 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-05-21 03:50:04 +08:00
|
|
|
|
|
|
|
|
|
private class SettingsSectionsContainer : SectionsContainer
|
|
|
|
|
{
|
|
|
|
|
public SearchContainer SearchContainer;
|
2017-05-21 04:12:16 +08:00
|
|
|
|
private readonly Box headerBackground;
|
|
|
|
|
|
2017-05-21 03:50:04 +08:00
|
|
|
|
protected override Container<Drawable> CreateScrollContentContainer()
|
|
|
|
|
=> SearchContainer = new SearchContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
};
|
2017-05-21 04:12:16 +08:00
|
|
|
|
|
2017-05-21 03:50:04 +08:00
|
|
|
|
public SettingsSectionsContainer()
|
|
|
|
|
{
|
|
|
|
|
ScrollContainer.ScrollDraggerVisible = false;
|
2017-05-21 04:12:16 +08:00
|
|
|
|
Add(headerBackground = new Box
|
|
|
|
|
{
|
|
|
|
|
Colour = Color4.Black,
|
2017-05-22 15:58:01 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X
|
2017-05-21 04:12:16 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
2017-05-21 03:50:04 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
}
|