2019-01-24 16:43:03 +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.
|
2018-05-22 00:44:06 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2019-09-19 13:04:51 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-05-22 00:44:06 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-09-19 13:04:51 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2018-05-22 00:44:06 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.Containers
|
|
|
|
|
{
|
2018-05-22 15:04:36 +08:00
|
|
|
|
public abstract class HoldToConfirmContainer : Container
|
2018-05-22 00:44:06 +08:00
|
|
|
|
{
|
|
|
|
|
public Action Action;
|
|
|
|
|
|
|
|
|
|
private const int fadeout_delay = 200;
|
|
|
|
|
|
2019-09-19 19:17:58 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether currently in a fired state (and the confirm <see cref="Action"/> has been sent).
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool Fired { get; private set; }
|
|
|
|
|
|
2018-05-22 00:44:06 +08:00
|
|
|
|
private bool confirming;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the overlay should be allowed to return from a fired state.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected virtual bool AllowMultipleFires => false;
|
|
|
|
|
|
2022-03-21 15:07:26 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specify a custom activation delay, overriding the game-wide user setting.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// This should be used in special cases where we want to be extra sure the user knows what they are doing. An example is when changes would be lost.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
protected virtual double? HoldActivationDelay => null;
|
|
|
|
|
|
2018-05-22 00:44:06 +08:00
|
|
|
|
public Bindable<double> Progress = new BindableDouble();
|
|
|
|
|
|
2022-03-04 11:21:05 +08:00
|
|
|
|
private Bindable<double> holdActivationDelay;
|
2019-09-19 13:04:51 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
2019-08-16 12:21:41 +08:00
|
|
|
|
{
|
2022-03-21 15:07:26 +08:00
|
|
|
|
holdActivationDelay = HoldActivationDelay != null
|
|
|
|
|
? new Bindable<double>(HoldActivationDelay.Value)
|
|
|
|
|
: config.GetBindable<double>(OsuSetting.UIHoldActivationDelay);
|
2019-08-16 12:21:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-22 00:44:06 +08:00
|
|
|
|
protected void BeginConfirm()
|
|
|
|
|
{
|
2019-09-19 19:17:58 +08:00
|
|
|
|
if (confirming || (!AllowMultipleFires && Fired)) return;
|
2018-05-22 00:44:06 +08:00
|
|
|
|
|
|
|
|
|
confirming = true;
|
|
|
|
|
|
2019-09-19 13:04:51 +08:00
|
|
|
|
this.TransformBindableTo(Progress, 1, holdActivationDelay.Value * (1 - Progress.Value), Easing.Out).OnComplete(_ => Confirm());
|
2018-05-22 00:44:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected virtual void Confirm()
|
|
|
|
|
{
|
|
|
|
|
Action?.Invoke();
|
2019-09-19 19:17:58 +08:00
|
|
|
|
Fired = true;
|
2018-05-22 00:44:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void AbortConfirm()
|
|
|
|
|
{
|
2019-09-19 19:17:58 +08:00
|
|
|
|
if (!AllowMultipleFires && Fired) return;
|
2018-05-22 00:44:06 +08:00
|
|
|
|
|
|
|
|
|
confirming = false;
|
2019-09-19 19:17:58 +08:00
|
|
|
|
Fired = false;
|
2018-05-22 00:44:06 +08:00
|
|
|
|
|
2022-04-14 11:33:59 +08:00
|
|
|
|
this
|
|
|
|
|
.TransformBindableTo(Progress, Progress.Value)
|
|
|
|
|
.Delay(200)
|
|
|
|
|
.TransformBindableTo(Progress, 0, fadeout_delay, Easing.InSine);
|
2018-05-22 00:44:06 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|