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
|
|
|
|
|
2017-07-13 15:39:27 +08:00
|
|
|
|
using System;
|
2017-08-10 21:21:22 +08:00
|
|
|
|
using System.Collections.Generic;
|
2016-11-08 07:04:49 +08:00
|
|
|
|
using System.Linq;
|
2017-08-17 16:31:14 +08:00
|
|
|
|
using OpenTK;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2016-11-12 18:44:16 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-08-14 13:40:48 +08:00
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
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;
|
2017-06-20 13:54:23 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
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;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
2017-08-10 21:21:22 +08:00
|
|
|
|
public abstract class SettingsOverlay : OsuFocusedOverlayContainer
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2017-11-21 10:49:42 +08:00
|
|
|
|
public const float CONTENT_MARGINS = 10;
|
2016-11-08 19:07:28 +08:00
|
|
|
|
|
2016-11-30 17:28:08 +08:00
|
|
|
|
public const float TRANSITION_LENGTH = 600;
|
|
|
|
|
|
2017-12-23 21:56:23 +08:00
|
|
|
|
private const float sidebar_width = Sidebar.DEFAULT_WIDTH;
|
2016-11-30 17:28:08 +08:00
|
|
|
|
|
2017-08-17 16:31:14 +08:00
|
|
|
|
protected 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-08-16 18:17:42 +08:00
|
|
|
|
protected Container<Drawable> ContentContainer;
|
|
|
|
|
|
|
|
|
|
protected override Container<Drawable> Content => ContentContainer;
|
|
|
|
|
|
2017-08-17 16:31:14 +08:00
|
|
|
|
protected Sidebar Sidebar;
|
2017-05-21 04:32:15 +08:00
|
|
|
|
private SidebarButton selectedSidebarButton;
|
2017-05-11 12:19:31 +08:00
|
|
|
|
|
2017-08-16 16:19:27 +08:00
|
|
|
|
protected SettingsSectionsContainer SectionsContainer;
|
2017-05-21 03:50:04 +08:00
|
|
|
|
|
2017-05-21 04:12:16 +08:00
|
|
|
|
private SearchTextBox searchTextBox;
|
2016-11-04 11:28:00 +08:00
|
|
|
|
|
2017-08-17 16:31:14 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provide a source for the toolbar height.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Func<float> GetToolbarHeight;
|
2017-07-13 15:39:27 +08:00
|
|
|
|
|
2017-08-14 13:40:48 +08:00
|
|
|
|
private readonly bool showSidebar;
|
|
|
|
|
|
2017-08-16 18:17:42 +08:00
|
|
|
|
protected Box Background;
|
|
|
|
|
|
2017-08-14 13:40:48 +08:00
|
|
|
|
protected SettingsOverlay(bool showSidebar)
|
2017-01-13 12:49:05 +08:00
|
|
|
|
{
|
2017-08-14 13:40:48 +08:00
|
|
|
|
this.showSidebar = showSidebar;
|
2017-01-13 12:49:05 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
|
AutoSizeAxes = Axes.X;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-14 13:40:48 +08:00
|
|
|
|
protected virtual IEnumerable<SettingsSection> CreateSections() => null;
|
2017-08-10 21:21:22 +08:00
|
|
|
|
|
2017-08-17 16:47:55 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2017-08-16 18:17:42 +08:00
|
|
|
|
InternalChild = ContentContainer = new Container
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2017-08-17 16:31:14 +08:00
|
|
|
|
Width = WIDTH,
|
2017-08-16 18:17:42 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
|
Children = new Drawable[]
|
2016-12-01 03:50:41 +08:00
|
|
|
|
{
|
2017-08-16 18:17:42 +08:00
|
|
|
|
Background = new Box
|
2016-11-03 07:07:07 +08:00
|
|
|
|
{
|
2017-08-17 16:31:14 +08:00
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
Scale = new Vector2(2, 1), // over-extend to the left for transitions
|
2017-08-16 18:17:42 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
Alpha = 0.6f,
|
|
|
|
|
},
|
|
|
|
|
SectionsContainer = new SettingsSectionsContainer
|
|
|
|
|
{
|
2017-08-19 23:00:01 +08:00
|
|
|
|
Masking = true,
|
2017-08-16 18:17:42 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ExpandableHeader = CreateHeader(),
|
|
|
|
|
FixedHeader = searchTextBox = new SearchTextBox
|
2016-11-03 07:07:07 +08:00
|
|
|
|
{
|
2017-08-16 18:17:42 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Width = 0.95f,
|
|
|
|
|
Margin = new MarginPadding
|
|
|
|
|
{
|
|
|
|
|
Top = 20,
|
|
|
|
|
Bottom = 20
|
|
|
|
|
},
|
|
|
|
|
Exit = Hide,
|
2017-05-11 13:55:25 +08:00
|
|
|
|
},
|
2017-08-16 18:17:42 +08:00
|
|
|
|
Footer = CreateFooter()
|
2017-05-21 03:50:04 +08:00
|
|
|
|
},
|
2017-08-16 18:17:42 +08:00
|
|
|
|
}
|
2016-09-29 19:13:58 +08:00
|
|
|
|
};
|
2017-04-06 16:21:18 +08:00
|
|
|
|
|
2017-08-14 13:40:48 +08:00
|
|
|
|
if (showSidebar)
|
2017-05-21 04:32:15 +08:00
|
|
|
|
{
|
2017-12-23 21:56:23 +08:00
|
|
|
|
AddInternal(Sidebar = new Sidebar { Width = sidebar_width });
|
2017-08-14 13:40:48 +08:00
|
|
|
|
|
2017-08-16 16:19:27 +08:00
|
|
|
|
SectionsContainer.SelectedSection.ValueChanged += section =>
|
2017-08-14 13:40:48 +08:00
|
|
|
|
{
|
|
|
|
|
selectedSidebarButton.Selected = false;
|
2017-08-17 16:31:14 +08:00
|
|
|
|
selectedSidebarButton = Sidebar.Children.Single(b => b.Section == section);
|
2017-08-14 13:40:48 +08:00
|
|
|
|
selectedSidebarButton.Selected = true;
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-05-21 04:32:15 +08:00
|
|
|
|
|
2017-08-16 16:19:27 +08:00
|
|
|
|
searchTextBox.Current.ValueChanged += newValue => SectionsContainer.SearchContainer.SearchTerm = newValue;
|
2017-05-11 13:55:25 +08:00
|
|
|
|
|
2017-08-14 13:40:48 +08:00
|
|
|
|
CreateSections()?.ForEach(AddSection);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void AddSection(SettingsSection section)
|
|
|
|
|
{
|
2017-08-16 16:19:27 +08:00
|
|
|
|
SectionsContainer.Add(section);
|
2017-08-14 13:40:48 +08:00
|
|
|
|
|
2017-08-17 16:31:14 +08:00
|
|
|
|
if (Sidebar != null)
|
2017-08-14 13:40:48 +08:00
|
|
|
|
{
|
|
|
|
|
var button = new SidebarButton
|
|
|
|
|
{
|
|
|
|
|
Section = section,
|
|
|
|
|
Action = s =>
|
|
|
|
|
{
|
2017-08-16 16:19:27 +08:00
|
|
|
|
SectionsContainer.ScrollTo(s);
|
2017-08-17 16:31:14 +08:00
|
|
|
|
Sidebar.State = ExpandedState.Contracted;
|
2017-08-14 13:40:48 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2017-08-17 16:31:14 +08:00
|
|
|
|
Sidebar.Add(button);
|
2017-08-14 13:40:48 +08:00
|
|
|
|
|
|
|
|
|
if (selectedSidebarButton == null)
|
|
|
|
|
{
|
2017-08-17 16:31:14 +08:00
|
|
|
|
selectedSidebarButton = Sidebar.Children.First();
|
2017-08-14 13:40:48 +08:00
|
|
|
|
selectedSidebarButton.Selected = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-09 13:17:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-10 21:21:22 +08:00
|
|
|
|
protected virtual Drawable CreateHeader() => new Container();
|
|
|
|
|
|
|
|
|
|
protected virtual Drawable CreateFooter() => new Container();
|
|
|
|
|
|
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-08-17 16:31:14 +08:00
|
|
|
|
ContentContainer.MoveToX(ExpandedPosition, TRANSITION_LENGTH, Easing.OutQuint);
|
|
|
|
|
|
|
|
|
|
Sidebar?.MoveToX(0, TRANSITION_LENGTH, Easing.OutQuint);
|
|
|
|
|
this.FadeTo(1, TRANSITION_LENGTH, Easing.OutQuint);
|
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
|
|
|
|
|
2017-08-17 16:31:14 +08:00
|
|
|
|
protected virtual float ExpandedPosition => 0;
|
|
|
|
|
|
2016-10-13 22:57:05 +08:00
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
2017-02-09 12:54:10 +08:00
|
|
|
|
base.PopOut();
|
|
|
|
|
|
2017-08-17 16:31:14 +08:00
|
|
|
|
ContentContainer.MoveToX(-WIDTH, TRANSITION_LENGTH, Easing.OutQuint);
|
|
|
|
|
|
2017-12-23 21:56:23 +08:00
|
|
|
|
Sidebar?.MoveToX(-sidebar_width, TRANSITION_LENGTH, Easing.OutQuint);
|
2017-08-17 16:31:14 +08:00
|
|
|
|
this.FadeTo(0, TRANSITION_LENGTH, Easing.OutQuint);
|
2017-05-11 12:19:31 +08:00
|
|
|
|
|
2017-05-21 04:12:16 +08:00
|
|
|
|
searchTextBox.HoldFocus = false;
|
2017-05-28 19:08:46 +08:00
|
|
|
|
if (searchTextBox.HasFocus)
|
2017-08-16 12:07:18 +08:00
|
|
|
|
GetContainingInputManager().ChangeFocus(null);
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
2017-05-11 12:56:21 +08:00
|
|
|
|
|
2017-05-30 15:33:26 +08:00
|
|
|
|
public override bool AcceptsFocus => true;
|
|
|
|
|
|
|
|
|
|
protected override bool OnClick(InputState state) => true;
|
|
|
|
|
|
|
|
|
|
protected override void OnFocus(InputState state)
|
2017-05-11 12:56:21 +08:00
|
|
|
|
{
|
2017-08-16 12:07:18 +08:00
|
|
|
|
GetContainingInputManager().ChangeFocus(searchTextBox);
|
2017-05-30 15:33:26 +08:00
|
|
|
|
base.OnFocus(state);
|
2017-05-11 12:56:21 +08:00
|
|
|
|
}
|
2017-05-21 03:50:04 +08:00
|
|
|
|
|
2017-07-13 15:26:40 +08:00
|
|
|
|
protected override void UpdateAfterChildren()
|
|
|
|
|
{
|
|
|
|
|
base.UpdateAfterChildren();
|
|
|
|
|
|
2017-08-17 16:31:14 +08:00
|
|
|
|
ContentContainer.Margin = new MarginPadding { Left = Sidebar?.DrawWidth ?? 0 };
|
|
|
|
|
ContentContainer.Padding = new MarginPadding { Top = GetToolbarHeight?.Invoke() ?? 0 };
|
2017-07-13 15:26:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-16 16:19:27 +08:00
|
|
|
|
protected class SettingsSectionsContainer : SectionsContainer<SettingsSection>
|
2017-05-21 03:50:04 +08:00
|
|
|
|
{
|
2017-06-09 16:24:19 +08:00
|
|
|
|
public SearchContainer<SettingsSection> SearchContainer;
|
2017-05-21 04:12:16 +08:00
|
|
|
|
|
2017-06-09 16:24:19 +08:00
|
|
|
|
protected override FlowContainer<SettingsSection> CreateScrollContentContainer()
|
|
|
|
|
=> SearchContainer = new SearchContainer<SettingsSection>
|
2017-05-21 03:50:04 +08:00
|
|
|
|
{
|
|
|
|
|
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()
|
|
|
|
|
{
|
2017-06-07 22:11:38 +08:00
|
|
|
|
HeaderBackground = new Box
|
2017-05-21 04:12:16 +08:00
|
|
|
|
{
|
|
|
|
|
Colour = Color4.Black,
|
2017-06-07 22:11:38 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
|
};
|
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
|
2017-06-07 22:11:38 +08:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|