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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

283 lines
11 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2016-10-13 22:57:05 +08:00
using System;
using osu.Framework.Extensions.Color4Extensions;
2016-09-30 17:45:27 +08:00
using osu.Framework.Graphics;
2016-12-01 13:22:29 +08:00
using osu.Framework.Graphics.Colour;
2016-09-30 17:45:27 +08:00
using osu.Framework.Graphics.Containers;
2016-10-13 22:57:05 +08:00
using osu.Game.Graphics;
2018-11-20 15:51:59 +08:00
using osuTK;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
using osu.Game.Rulesets;
using osu.Framework.Input.Bindings;
using osu.Game.Graphics.Containers;
using osu.Game.Input.Bindings;
2018-04-13 17:19:50 +08:00
2016-12-01 13:22:29 +08:00
namespace osu.Game.Overlays.Toolbar
2016-09-30 17:45:27 +08:00
{
2021-09-01 03:39:18 +08:00
public partial class Toolbar : OverlayContainer, IKeyBindingHandler<GlobalAction>
2016-09-30 17:45:27 +08:00
{
public const float HEIGHT = 40;
2017-02-10 15:26:43 +08:00
public const float TOOLTIP_HEIGHT = 30;
2018-04-13 17:19:50 +08:00
2020-11-10 07:16:35 +08:00
/// <summary>
/// Whether the user hid this <see cref="Toolbar"/> with <see cref="GlobalAction.ToggleToolbar"/>.
2021-03-13 22:29:47 +08:00
/// In this state, automatic toggles should not occur, respecting the user's preference to have no toolbar.
2020-11-10 07:16:35 +08:00
/// </summary>
private bool hiddenByUser;
public Action OnHome;
2018-04-13 17:19:50 +08:00
2019-03-28 13:01:06 +08:00
private ToolbarUserButton userButton;
private ToolbarRulesetSelector rulesetSelector;
2018-04-13 17:19:50 +08:00
private const double transition_time = 500;
2018-04-13 17:19:50 +08:00
2020-08-28 02:07:24 +08:00
protected readonly IBindable<OverlayActivation> OverlayActivationMode = new Bindable<OverlayActivation>(OverlayActivation.All);
// Toolbar and its components need keyboard input even when hidden.
public override bool PropagateNonPositionalInputSubTree => true;
2019-03-08 14:14:07 +08:00
public Toolbar()
{
RelativeSizeAxes = Axes.X;
Size = new Vector2(1, HEIGHT);
AlwaysPresent = true;
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
// this only needed to be set for the initial LoadComplete/Update, so layout completes and gets buttons in a state they can correctly handle keyboard input for hotkeys.
AlwaysPresent = false;
2019-03-08 14:14:07 +08:00
}
[Resolved]
private Bindable<RulesetInfo> ruleset { get; set; }
2019-03-08 11:01:40 +08:00
[BackgroundDependencyLoader(true)]
private void load(OsuGame osuGame)
2016-09-30 17:45:27 +08:00
{
Children = new Drawable[]
{
2017-01-30 22:24:30 +08:00
new ToolbarBackground(),
new GridContainer
2016-10-03 19:39:32 +08:00
{
RelativeSizeAxes = Axes.Both,
ColumnDimensions = new[]
2016-10-03 19:39:32 +08:00
{
new Dimension(GridSizeMode.AutoSize),
new Dimension(),
new Dimension(GridSizeMode.AutoSize)
},
Content = new[]
{
new Drawable[]
{
new Container
{
Name = "Left buttons",
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Depth = float.MinValue,
Children = new Drawable[]
{
new Box
{
Colour = OsuColour.Gray(0.1f),
RelativeSizeAxes = Axes.Both,
},
new FillFlowContainer
{
Direction = FillDirection.Horizontal,
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Children = new Drawable[]
{
new ToolbarSettingsButton(),
new ToolbarHomeButton
{
Action = () => OnHome?.Invoke()
},
},
},
}
},
new Container
{
Name = "Ruleset selector",
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
new OsuScrollContainer(Direction.Horizontal)
{
ScrollbarVisible = false,
RelativeSizeAxes = Axes.Both,
Masking = false,
Children = new Drawable[]
{
rulesetSelector = new ToolbarRulesetSelector()
}
},
new Box
{
Colour = ColourInfo.GradientHorizontal(OsuColour.Gray(0.1f).Opacity(0), OsuColour.Gray(0.1f)),
Width = 50,
RelativeSizeAxes = Axes.Y,
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
},
}
},
new Container
{
Name = "Right buttons",
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Children = new Drawable[]
{
new Box
{
Colour = OsuColour.Gray(0.1f),
RelativeSizeAxes = Axes.Both,
},
new FillFlowContainer
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Direction = FillDirection.Horizontal,
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Children = new Drawable[]
{
new ToolbarNewsButton(),
new ToolbarChangelogButton(),
new ToolbarRankingsButton(),
new ToolbarBeatmapListingButton(),
new ToolbarChatButton(),
new ToolbarSocialButton(),
new ToolbarWikiButton(),
new ToolbarMusicButton(),
//new ToolbarButton
//{
// Icon = FontAwesome.Solid.search
//},
userButton = new ToolbarUserButton(),
new ToolbarClock(),
new ToolbarNotificationButton(),
}
},
}
},
},
2016-10-03 19:39:32 +08:00
}
2016-09-30 17:45:27 +08:00
}
};
2018-04-13 17:19:50 +08:00
if (osuGame != null)
OverlayActivationMode.BindTo(osuGame.OverlayActivationMode);
}
protected override void LoadComplete()
{
base.LoadComplete();
rulesetSelector.Current.BindTo(ruleset);
}
2017-01-30 22:24:30 +08:00
public partial class ToolbarBackground : Container
{
private readonly Box gradientBackground;
2018-04-13 17:19:50 +08:00
2017-01-30 22:24:30 +08:00
public ToolbarBackground()
{
RelativeSizeAxes = Axes.Both;
Children = new Drawable[]
{
new Box
2017-01-30 22:24:30 +08:00
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(0.1f),
},
gradientBackground = new Box
{
RelativeSizeAxes = Axes.X,
Anchor = Anchor.BottomLeft,
Alpha = 0,
Height = 100,
2017-07-23 13:30:50 +08:00
Colour = ColourInfo.GradientVertical(
OsuColour.Gray(0).Opacity(0.9f), OsuColour.Gray(0).Opacity(0)),
2017-01-30 22:24:30 +08:00
},
};
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
2017-01-30 22:24:30 +08:00
{
2017-07-23 02:50:25 +08:00
gradientBackground.FadeIn(transition_time, Easing.OutQuint);
return true;
2017-01-30 22:24:30 +08:00
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override void OnHoverLost(HoverLostEvent e)
2017-01-30 22:24:30 +08:00
{
2017-07-23 02:50:25 +08:00
gradientBackground.FadeOut(transition_time, Easing.OutQuint);
2017-01-30 22:24:30 +08:00
}
}
2018-04-13 17:19:50 +08:00
protected override void UpdateState(ValueChangedEvent<Visibility> state)
{
2021-03-13 22:29:01 +08:00
bool blockShow = hiddenByUser || OverlayActivationMode.Value == OverlayActivation.Disabled;
2021-03-13 22:29:01 +08:00
if (state.NewValue == Visibility.Visible && blockShow)
{
State.Value = Visibility.Hidden;
return;
}
base.UpdateState(state);
}
protected override void PopIn()
{
2017-07-23 02:50:25 +08:00
this.MoveToY(0, transition_time, Easing.OutQuint);
2020-07-08 14:06:40 +08:00
this.FadeIn(transition_time / 4, Easing.OutQuint);
}
2018-04-13 17:19:50 +08:00
protected override void PopOut()
{
userButton.StateContainer?.Hide();
2018-04-13 17:19:50 +08:00
2017-07-23 02:50:25 +08:00
this.MoveToY(-DrawSize.Y, transition_time, Easing.OutQuint);
2020-07-08 14:06:40 +08:00
this.FadeOut(transition_time, Easing.InQuint);
}
2021-09-16 17:26:12 +08:00
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
{
if (OverlayActivationMode.Value == OverlayActivation.Disabled)
return false;
2021-09-16 17:26:12 +08:00
switch (e.Action)
{
case GlobalAction.ToggleToolbar:
2021-03-13 22:29:01 +08:00
hiddenByUser = State.Value == Visibility.Visible; // set before toggling to allow the operation to always succeed.
ToggleVisibility();
return true;
}
return false;
}
2021-09-16 17:26:12 +08:00
public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e)
{
}
2016-09-30 17:45:27 +08:00
}
}