2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-06-25 17:30:43 +08:00
|
|
|
|
using System;
|
2016-12-05 20:09:41 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-11-27 09:21:12 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-06-25 17:30:43 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-06-25 16:17:29 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2021-09-16 17:26:12 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2019-06-25 16:17:29 +08:00
|
|
|
|
using osu.Game.Input.Bindings;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2016-11-27 09:21:12 +08:00
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
2019-07-29 17:45:16 +08:00
|
|
|
|
public class BackButton : VisibilityContainer
|
2016-11-27 09:21:12 +08:00
|
|
|
|
{
|
2019-06-25 17:30:43 +08:00
|
|
|
|
public Action Action;
|
|
|
|
|
|
|
|
|
|
private readonly TwoLayerButton button;
|
|
|
|
|
|
2020-05-17 16:35:10 +08:00
|
|
|
|
public BackButton(Receptor receptor = null)
|
2016-11-27 09:21:12 +08:00
|
|
|
|
{
|
2019-06-25 17:30:43 +08:00
|
|
|
|
Size = TwoLayerButton.SIZE_EXTENDED;
|
|
|
|
|
|
2022-06-01 20:00:14 +08:00
|
|
|
|
Child = button = new TwoLayerButton
|
2019-06-25 17:30:43 +08:00
|
|
|
|
{
|
2019-08-06 11:43:30 +08:00
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
2019-06-25 17:30:43 +08:00
|
|
|
|
Text = @"back",
|
|
|
|
|
Icon = OsuIcon.LeftCircle,
|
|
|
|
|
Action = () => Action?.Invoke()
|
|
|
|
|
};
|
2020-05-17 16:35:10 +08:00
|
|
|
|
|
2020-05-17 16:35:18 +08:00
|
|
|
|
if (receptor == null)
|
|
|
|
|
{
|
|
|
|
|
// if a receptor wasn't provided, create our own locally.
|
|
|
|
|
Add(receptor = new Receptor());
|
|
|
|
|
}
|
2020-05-17 16:35:10 +08:00
|
|
|
|
|
2021-08-04 16:27:44 +08:00
|
|
|
|
receptor.OnBackPressed = () => button.TriggerClick();
|
2016-11-27 10:48:31 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2016-12-05 20:09:41 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-06-30 03:05:37 +08:00
|
|
|
|
private void load(OsuColour colours)
|
2016-12-05 20:09:41 +08:00
|
|
|
|
{
|
2019-06-25 17:30:43 +08:00
|
|
|
|
button.BackgroundColour = colours.Pink;
|
|
|
|
|
button.HoverColour = colours.PinkDark;
|
2016-11-27 09:21:12 +08:00
|
|
|
|
}
|
2019-06-25 16:17:29 +08:00
|
|
|
|
|
2019-06-25 17:30:43 +08:00
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
|
|
|
|
button.MoveToX(0, 400, Easing.OutQuint);
|
|
|
|
|
button.FadeIn(150, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
2019-06-25 19:23:34 +08:00
|
|
|
|
button.MoveToX(-TwoLayerButton.SIZE_EXTENDED.X / 2, 400, Easing.OutQuint);
|
|
|
|
|
button.FadeOut(400, Easing.OutQuint);
|
2019-06-25 17:30:43 +08:00
|
|
|
|
}
|
2019-07-29 17:45:16 +08:00
|
|
|
|
|
2019-07-30 11:00:04 +08:00
|
|
|
|
public class Receptor : Drawable, IKeyBindingHandler<GlobalAction>
|
2019-07-29 17:45:16 +08:00
|
|
|
|
{
|
|
|
|
|
public Action OnBackPressed;
|
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
|
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
|
2019-07-29 17:45:16 +08:00
|
|
|
|
{
|
2021-11-18 11:35:47 +08:00
|
|
|
|
if (e.Repeat)
|
|
|
|
|
return false;
|
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
|
switch (e.Action)
|
2019-07-29 17:45:16 +08:00
|
|
|
|
{
|
|
|
|
|
case GlobalAction.Back:
|
2019-09-25 21:14:42 +08:00
|
|
|
|
OnBackPressed?.Invoke();
|
2019-07-29 17:45:16 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
|
public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e)
|
2020-01-22 12:22:34 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
2019-07-29 17:45:16 +08:00
|
|
|
|
}
|
2016-11-27 09:21:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|