1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 14:47:26 +08:00
osu-lazer/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 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;
using osu.Framework.Input.Bindings;
2021-09-16 17:26:12 +08:00
using osu.Framework.Input.Events;
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 partial 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;
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
{
Anchor = Anchor.TopLeft,
Origin = Anchor.TopLeft,
2019-06-25 17:30:43 +08: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 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 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
public partial 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
{
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)
{
}
2019-07-29 17:45:16 +08:00
}
2016-11-27 09:21:12 +08:00
}
}