osu/osu.Game/Graphics/UserInterface/BackButton.cs

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

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