1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:07:25 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sidebar.cs

141 lines
4.1 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-06 17:56:20 +08:00
2017-09-04 08:10:04 +08:00
using System;
using System.Linq;
using osu.Framework;
2016-11-05 07:27:41 +08:00
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input;
2016-11-09 12:16:04 +08:00
using osu.Framework.Threading;
using osu.Game.Overlays.Toolbar;
2016-11-05 07:27:41 +08:00
namespace osu.Game.Overlays.Settings
2016-11-05 07:27:41 +08:00
{
public class Sidebar : Container<SidebarButton>, IStateful<ExpandedState>
2016-11-05 07:27:41 +08:00
{
private readonly FillFlowContainer<SidebarButton> content;
public const float DEFAULT_WIDTH = ToolbarButton.WIDTH;
public const int EXPANDED_WIDTH = 200;
2017-09-04 08:10:04 +08:00
public event Action<ExpandedState> StateChanged;
protected override Container<SidebarButton> Content => content;
2017-01-31 18:58:38 +08:00
public Sidebar()
2016-11-05 07:27:41 +08:00
{
RelativeSizeAxes = Axes.Y;
InternalChildren = new Drawable[]
2016-11-05 07:27:41 +08:00
{
new Box
{
Colour = Color4.Black,
RelativeSizeAxes = Axes.Both,
},
2016-11-08 18:16:39 +08:00
new SidebarScrollContainer
2016-11-05 07:27:41 +08:00
{
2017-06-08 15:27:35 +08:00
Children = new[]
2016-11-08 18:16:39 +08:00
{
content = new FillFlowContainer<SidebarButton>
2016-11-08 18:16:39 +08:00
{
Origin = Anchor.CentreLeft,
Anchor = Anchor.CentreLeft,
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
2017-03-04 18:00:17 +08:00
Direction = FillDirection.Vertical,
2016-11-08 18:16:39 +08:00
}
}
2016-11-05 07:27:41 +08:00
},
};
}
2016-11-09 12:16:04 +08:00
private ScheduledDelegate expandEvent;
private ExpandedState state;
2016-11-09 12:16:04 +08:00
protected override bool OnHover(InputState state)
{
queueExpandIfHovering();
2016-11-09 12:16:04 +08:00
return true;
}
2016-11-09 12:16:04 +08:00
protected override void OnHoverLost(InputState state)
{
expandEvent?.Cancel();
lastHoveredButton = null;
State = ExpandedState.Contracted;
2016-11-09 12:16:04 +08:00
base.OnHoverLost(state);
}
protected override bool OnMouseMove(InputState state)
{
queueExpandIfHovering();
return base.OnMouseMove(state);
}
2016-11-08 18:16:39 +08:00
private class SidebarScrollContainer : ScrollContainer
{
public SidebarScrollContainer()
{
Content.Anchor = Anchor.CentreLeft;
Content.Origin = Anchor.CentreLeft;
RelativeSizeAxes = Axes.Both;
2016-11-08 18:16:39 +08:00
}
}
public ExpandedState State
{
get { return state; }
set
{
expandEvent?.Cancel();
if (state == value) return;
state = value;
switch (state)
{
default:
2017-07-23 02:50:25 +08:00
this.ResizeTo(new Vector2(DEFAULT_WIDTH, Height), 500, Easing.OutQuint);
break;
case ExpandedState.Expanded:
2017-07-23 02:50:25 +08:00
this.ResizeTo(new Vector2(EXPANDED_WIDTH, Height), 500, Easing.OutQuint);
break;
}
2017-09-04 08:10:04 +08:00
StateChanged?.Invoke(State);
}
}
private Drawable lastHoveredButton;
private Drawable hoveredButton => content.Children.FirstOrDefault(c => c.IsHovered);
private void queueExpandIfHovering()
{
// only expand when we hover a different button.
if (lastHoveredButton == hoveredButton) return;
if (!IsHovered) return;
if (State != ExpandedState.Expanded)
{
expandEvent?.Cancel();
expandEvent = Scheduler.AddDelayed(() => State = ExpandedState.Expanded, 750);
}
lastHoveredButton = hoveredButton;
}
}
public enum ExpandedState
{
Contracted,
Expanded,
2016-11-05 07:27:41 +08:00
}
}