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

208 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 19:13:58 +08:00
using System;
2017-08-10 21:21:22 +08:00
using System.Collections.Generic;
using System.Linq;
2016-09-29 19:13:58 +08:00
using OpenTK.Graphics;
using osu.Framework.Allocation;
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;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.UserInterface;
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
{
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
2017-01-31 18:58:38 +08:00
private Sidebar sidebar;
2017-05-21 04:32:15 +08:00
private SidebarButton selectedSidebarButton;
2017-08-16 16:19:27 +08:00
protected SettingsSectionsContainer SectionsContainer;
private SearchTextBox searchTextBox;
2016-11-04 11:28:00 +08:00
private Func<float> getToolbarHeight;
private readonly bool showSidebar;
protected SettingsOverlay(bool showSidebar)
{
this.showSidebar = showSidebar;
RelativeSizeAxes = Axes.Y;
AutoSizeAxes = Axes.X;
}
protected virtual IEnumerable<SettingsSection> CreateSections() => null;
2017-08-10 21:21:22 +08:00
[BackgroundDependencyLoader(permitNulls: true)]
private void load(OsuGame game)
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,
},
2017-08-16 16:19:27 +08:00
SectionsContainer = new SettingsSectionsContainer
{
2016-11-05 07:27:41 +08:00
RelativeSizeAxes = Axes.Y,
Width = width,
Margin = new MarginPadding { Left = SIDEBAR_WIDTH },
2017-08-10 21:21:22 +08:00
ExpandableHeader = CreateHeader(),
FixedHeader = searchTextBox = new SearchTextBox
2016-11-03 07:07:07 +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
{
Top = 20,
Bottom = 20
},
Exit = Hide,
},
2017-08-10 21:21:22 +08:00
Footer = CreateFooter()
2017-08-16 16:19:27 +08:00
},
2016-09-29 19:13:58 +08:00
};
if (showSidebar)
2017-05-21 04:32:15 +08:00
{
Add(sidebar = new Sidebar { Width = SIDEBAR_WIDTH });
2017-08-16 16:19:27 +08:00
SectionsContainer.SelectedSection.ValueChanged += section =>
{
selectedSidebarButton.Selected = false;
selectedSidebarButton = sidebar.Children.Single(b => b.Section == section);
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;
getToolbarHeight = () => game?.ToolbarOffset ?? 0;
CreateSections()?.ForEach(AddSection);
}
protected void AddSection(SettingsSection section)
{
2017-08-16 16:19:27 +08:00
SectionsContainer.Add(section);
if (sidebar != null)
{
var button = new SidebarButton
{
Section = section,
Action = s =>
{
2017-08-16 16:19:27 +08:00
SectionsContainer.ScrollTo(s);
sidebar.State = ExpandedState.Contracted;
},
};
sidebar.Add(button);
if (selectedSidebarButton == null)
{
selectedSidebarButton = sidebar.Children.First();
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
{
base.PopIn();
2017-08-16 16:19:27 +08:00
SectionsContainer.MoveToX(0, TRANSITION_LENGTH, Easing.OutQuint);
sidebar?.MoveToX(0, TRANSITION_LENGTH, Easing.OutQuint);
this.FadeTo(1, TRANSITION_LENGTH / 2);
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();
2017-08-16 16:19:27 +08:00
SectionsContainer.MoveToX(-width, TRANSITION_LENGTH, Easing.OutQuint);
sidebar?.MoveToX(-SIDEBAR_WIDTH, TRANSITION_LENGTH, Easing.OutQuint);
this.FadeTo(0, TRANSITION_LENGTH / 2);
searchTextBox.HoldFocus = false;
if (searchTextBox.HasFocus)
GetContainingInputManager().ChangeFocus(null);
2016-09-29 19:13:58 +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)
{
GetContainingInputManager().ChangeFocus(searchTextBox);
2017-05-30 15:33:26 +08:00
base.OnFocus(state);
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
2017-08-16 16:19:27 +08:00
SectionsContainer.Margin = new MarginPadding { Left = sidebar?.DrawWidth ?? 0 };
SectionsContainer.Padding = new MarginPadding { Top = getToolbarHeight() };
}
2017-08-16 16:19:27 +08:00
protected class SettingsSectionsContainer : SectionsContainer<SettingsSection>
{
2017-06-09 16:24:19 +08:00
public SearchContainer<SettingsSection> SearchContainer;
2017-06-09 16:24:19 +08:00
protected override FlowContainer<SettingsSection> CreateScrollContentContainer()
=> SearchContainer = new SearchContainer<SettingsSection>
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Direction = FillDirection.Vertical,
};
public SettingsSectionsContainer()
{
HeaderBackground = new Box
{
Colour = Color4.Black,
RelativeSizeAxes = Axes.Both
};
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
// no null check because the usage of this class is strict
HeaderBackground.Alpha = -ExpandableHeader.Y / ExpandableHeader.LayoutSize.Y * 0.5f;
}
}
2016-09-29 19:13:58 +08:00
}
}