1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 19:27:31 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/BackButton.cs

74 lines
2.0 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
2019-06-25 17:30:43 +08:00
using System;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2019-06-25 17:30:43 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Input.Bindings;
using osu.Game.Input.Bindings;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Graphics.UserInterface
{
2019-07-29 17:45:16 +08:00
public class BackButton : VisibilityContainer
2018-04-13 17:19:50 +08:00
{
2019-06-25 17:30:43 +08:00
public Action Action;
private readonly TwoLayerButton button;
public BackButton(Receptor receptor)
2018-04-13 17:19:50 +08:00
{
2019-09-25 21:14:42 +08:00
receptor.OnBackPressed = () => Action?.Invoke();
2019-07-29 17:45:16 +08:00
2019-06-25 17:30:43 +08:00
Size = TwoLayerButton.SIZE_EXTENDED;
Child = button = new TwoLayerButton
{
Anchor = Anchor.TopLeft,
Origin = Anchor.TopLeft,
2019-06-25 17:30:43 +08:00
Text = @"back",
Icon = OsuIcon.LeftCircle,
Action = () => Action?.Invoke()
};
2018-04-13 17:19:50 +08:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
2019-06-25 17:30:43 +08:00
button.BackgroundColour = colours.Pink;
button.HoverColour = colours.PinkDark;
2018-04-13 17:19:50 +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 class Receptor : Drawable, IKeyBindingHandler<GlobalAction>
2019-07-29 17:45:16 +08:00
{
public Action OnBackPressed;
public bool OnPressed(GlobalAction action)
{
switch (action)
{
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;
}
public bool OnReleased(GlobalAction action) => action == GlobalAction.Back;
}
2018-04-13 17:19:50 +08:00
}
}