2019-04-11 05:47:32 +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.
|
|
|
|
|
|
2020-06-04 12:07:50 +08:00
|
|
|
|
using System;
|
2019-05-08 18:03:26 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
2021-04-07 17:29:45 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-05-08 18:03:26 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2021-04-07 17:29:45 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2020-06-04 12:07:50 +08:00
|
|
|
|
using osu.Game.Input.Bindings;
|
2021-04-07 17:29:45 +08:00
|
|
|
|
using osuTK;
|
2019-04-11 05:47:32 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
|
|
|
|
public class FooterButtonRandom : FooterButton
|
|
|
|
|
{
|
2020-06-04 17:00:29 +08:00
|
|
|
|
public Action NextRandom { get; set; }
|
|
|
|
|
public Action PreviousRandom { get; set; }
|
2020-06-04 12:07:50 +08:00
|
|
|
|
|
2020-06-04 16:58:19 +08:00
|
|
|
|
private bool rewindSearch;
|
2019-04-11 05:47:32 +08:00
|
|
|
|
|
2019-05-08 18:03:26 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
SelectedColour = colours.Green;
|
|
|
|
|
DeselectedColour = SelectedColour.Opacity(0.5f);
|
|
|
|
|
Text = @"random";
|
2021-04-07 17:29:45 +08:00
|
|
|
|
|
2020-06-07 11:34:19 +08:00
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
if (rewindSearch)
|
|
|
|
|
{
|
2021-04-07 17:29:45 +08:00
|
|
|
|
const double fade_time = 500;
|
|
|
|
|
|
|
|
|
|
OsuSpriteText rewindSpriteText;
|
|
|
|
|
|
|
|
|
|
TextContainer.Add(rewindSpriteText = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
Text = @"rewind",
|
|
|
|
|
AlwaysPresent = true, // make sure the button is sized large enough to always show this
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
rewindSpriteText.FadeOutFromOne(fade_time, Easing.In);
|
|
|
|
|
rewindSpriteText.MoveTo(Vector2.Zero).MoveTo(new Vector2(0, 10), fade_time, Easing.In);
|
|
|
|
|
rewindSpriteText.Expire();
|
|
|
|
|
|
|
|
|
|
SpriteText.FadeInFromZero(fade_time, Easing.In);
|
|
|
|
|
|
2020-06-07 11:34:19 +08:00
|
|
|
|
PreviousRandom.Invoke();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
NextRandom.Invoke();
|
|
|
|
|
}
|
|
|
|
|
};
|
2019-04-11 05:47:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-04 12:07:50 +08:00
|
|
|
|
public override bool OnPressed(GlobalAction action)
|
|
|
|
|
{
|
2020-06-07 11:34:19 +08:00
|
|
|
|
rewindSearch = action == GlobalAction.SelectPreviousRandom;
|
2020-06-07 12:06:18 +08:00
|
|
|
|
|
2020-06-10 09:05:11 +08:00
|
|
|
|
if (action != GlobalAction.SelectNextRandom && action != GlobalAction.SelectPreviousRandom)
|
2020-06-04 12:07:50 +08:00
|
|
|
|
{
|
2020-06-07 11:34:19 +08:00
|
|
|
|
return false;
|
2020-06-04 12:07:50 +08:00
|
|
|
|
}
|
2020-06-07 12:06:18 +08:00
|
|
|
|
|
2020-06-07 11:34:19 +08:00
|
|
|
|
Click();
|
|
|
|
|
return true;
|
2020-06-04 12:07:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnReleased(GlobalAction action)
|
|
|
|
|
{
|
|
|
|
|
if (action == GlobalAction.SelectPreviousRandom)
|
|
|
|
|
{
|
2020-06-04 16:58:19 +08:00
|
|
|
|
rewindSearch = false;
|
2020-06-04 12:07:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-11 05:47:32 +08:00
|
|
|
|
}
|
|
|
|
|
}
|