2021-06-21 01:31:24 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-06-21 01:31:24 +08:00
|
|
|
using JetBrains.Annotations;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
2021-09-10 01:15:30 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2021-06-21 01:31:24 +08:00
|
|
|
using osu.Framework.Graphics.Effects;
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2021-09-10 01:15:30 +08:00
|
|
|
using osu.Framework.Input.Bindings;
|
2021-09-16 17:26:12 +08:00
|
|
|
using osu.Framework.Input.Events;
|
2021-09-10 01:15:30 +08:00
|
|
|
using osu.Game.Input.Bindings;
|
2021-06-21 01:31:24 +08:00
|
|
|
using osu.Game.Overlays;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterfaceV2
|
|
|
|
{
|
2021-09-10 01:15:30 +08:00
|
|
|
public partial class OsuPopover : Popover, IKeyBindingHandler<GlobalAction>
|
2021-06-21 01:31:24 +08:00
|
|
|
{
|
|
|
|
private const float fade_duration = 250;
|
2021-07-14 22:23:44 +08:00
|
|
|
private const double scale_duration = 500;
|
2021-06-21 01:31:24 +08:00
|
|
|
|
|
|
|
public OsuPopover(bool withPadding = true)
|
|
|
|
{
|
|
|
|
Content.Padding = withPadding ? new MarginPadding(20) : new MarginPadding();
|
2021-07-14 22:23:44 +08:00
|
|
|
|
2021-06-21 01:31:24 +08:00
|
|
|
Body.Masking = true;
|
|
|
|
Body.CornerRadius = 10;
|
|
|
|
Body.Margin = new MarginPadding(10);
|
|
|
|
Body.EdgeEffect = new EdgeEffectParameters
|
|
|
|
{
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
Offset = new Vector2(0, 2),
|
|
|
|
Radius = 5,
|
|
|
|
Colour = Colour4.Black.Opacity(0.3f)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2021-07-14 22:27:03 +08:00
|
|
|
private void load([CanBeNull] OverlayColourProvider colourProvider, OsuColour colours)
|
2021-06-21 01:31:24 +08:00
|
|
|
{
|
2021-12-10 13:15:00 +08:00
|
|
|
Background.Colour = Arrow.Colour = colourProvider?.Background4 ?? colours.GreySeaFoamDarker;
|
2021-06-21 01:31:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override Drawable CreateArrow() => Empty();
|
|
|
|
|
2021-07-14 22:23:44 +08:00
|
|
|
protected override void PopIn()
|
|
|
|
{
|
|
|
|
this.ScaleTo(1, scale_duration, Easing.OutElasticHalf);
|
|
|
|
this.FadeIn(fade_duration, Easing.OutQuint);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
{
|
|
|
|
this.ScaleTo(0.7f, scale_duration, Easing.OutQuint);
|
|
|
|
this.FadeOut(fade_duration, Easing.OutQuint);
|
|
|
|
}
|
2021-09-10 01:15:30 +08:00
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
|
2021-09-10 01:15:30 +08:00
|
|
|
{
|
2021-11-18 11:35:47 +08:00
|
|
|
if (e.Repeat)
|
|
|
|
return false;
|
|
|
|
|
2021-09-10 01:15:30 +08:00
|
|
|
if (State.Value == Visibility.Hidden)
|
|
|
|
return false;
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
if (e.Action == GlobalAction.Back)
|
2021-09-10 01:15:30 +08:00
|
|
|
{
|
|
|
|
Hide();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e)
|
2021-09-10 01:15:30 +08:00
|
|
|
{
|
|
|
|
}
|
2021-06-21 01:31:24 +08:00
|
|
|
}
|
|
|
|
}
|