2019-04-10 21:47:32 +00: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 04:07:50 +00:00
|
|
|
|
using System;
|
2019-05-08 10:03:26 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Game.Graphics;
|
2020-06-04 04:07:50 +00:00
|
|
|
|
using osu.Game.Input.Bindings;
|
2019-04-10 21:47:32 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
|
|
|
|
public class FooterButtonRandom : FooterButton
|
|
|
|
|
{
|
2020-06-04 09:00:29 +00:00
|
|
|
|
public Action NextRandom { get; set; }
|
|
|
|
|
public Action PreviousRandom { get; set; }
|
2020-06-04 04:07:50 +00:00
|
|
|
|
|
2020-06-04 08:58:19 +00:00
|
|
|
|
private bool rewindSearch;
|
2019-04-10 21:47:32 +00:00
|
|
|
|
|
2019-05-08 10:03:26 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
SelectedColour = colours.Green;
|
|
|
|
|
DeselectedColour = SelectedColour.Opacity(0.5f);
|
|
|
|
|
Text = @"random";
|
2020-06-07 03:34:19 +00:00
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
if (rewindSearch)
|
|
|
|
|
{
|
|
|
|
|
PreviousRandom.Invoke();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
NextRandom.Invoke();
|
|
|
|
|
}
|
|
|
|
|
};
|
2019-04-10 21:47:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-04 04:07:50 +00:00
|
|
|
|
public override bool OnPressed(GlobalAction action)
|
|
|
|
|
{
|
2020-06-07 03:34:19 +00:00
|
|
|
|
rewindSearch = action == GlobalAction.SelectPreviousRandom;
|
2020-06-07 04:06:18 +00:00
|
|
|
|
|
2020-06-10 01:05:11 +00:00
|
|
|
|
if (action != GlobalAction.SelectNextRandom && action != GlobalAction.SelectPreviousRandom)
|
2020-06-04 04:07:50 +00:00
|
|
|
|
{
|
2020-06-07 03:34:19 +00:00
|
|
|
|
return false;
|
2020-06-04 04:07:50 +00:00
|
|
|
|
}
|
2020-06-07 04:06:18 +00:00
|
|
|
|
|
2020-06-07 03:34:19 +00:00
|
|
|
|
Click();
|
|
|
|
|
return true;
|
2020-06-04 04:07:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnReleased(GlobalAction action)
|
|
|
|
|
{
|
|
|
|
|
if (action == GlobalAction.SelectPreviousRandom)
|
|
|
|
|
{
|
2020-06-04 08:58:19 +00:00
|
|
|
|
rewindSearch = false;
|
2020-06-04 04:07:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-10 21:47:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|