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-11-20 01:48:59 +08:00
|
|
|
|
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-11-20 01:48:59 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
|
using osu.Framework.Input.Events;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Input
|
|
|
|
|
{
|
2018-11-26 15:32:59 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Track whether the end-user is in an idle state, based on their last interaction with the game.
|
|
|
|
|
/// </summary>
|
2019-08-27 17:42:49 +08:00
|
|
|
|
public class IdleTracker : Component, IKeyBindingHandler<PlatformAction>, IHandleGlobalKeyboardInput
|
2018-11-20 01:48:59 +08:00
|
|
|
|
{
|
2018-11-26 15:32:59 +08:00
|
|
|
|
private readonly double timeToIdle;
|
|
|
|
|
|
2018-11-20 01:48:59 +08:00
|
|
|
|
private double lastInteractionTime;
|
2018-11-26 15:32:59 +08:00
|
|
|
|
|
|
|
|
|
protected double TimeSpentIdle => Clock.CurrentTime - lastInteractionTime;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the user is currently in an idle state.
|
|
|
|
|
/// </summary>
|
2018-11-26 16:07:30 +08:00
|
|
|
|
public IBindable<bool> IsIdle => isIdle;
|
|
|
|
|
|
|
|
|
|
private readonly BindableBool isIdle = new BindableBool();
|
2018-11-26 15:32:59 +08:00
|
|
|
|
|
2018-12-26 17:39:57 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the game can currently enter an idle state.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected virtual bool AllowIdle => true;
|
|
|
|
|
|
2018-11-26 15:32:59 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Intstantiate a new <see cref="IdleTracker"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="timeToIdle">The length in milliseconds until an idle state should be assumed.</param>
|
|
|
|
|
public IdleTracker(double timeToIdle)
|
|
|
|
|
{
|
|
|
|
|
this.timeToIdle = timeToIdle;
|
2018-11-26 16:07:20 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2018-11-26 15:32:59 +08:00
|
|
|
|
}
|
2018-11-20 01:48:59 +08:00
|
|
|
|
|
2018-11-26 15:32:59 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
2018-12-26 17:39:57 +08:00
|
|
|
|
isIdle.Value = TimeSpentIdle > timeToIdle && AllowIdle;
|
2018-11-26 15:32:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 01:48:59 +08:00
|
|
|
|
public bool OnPressed(PlatformAction action) => updateLastInteractionTime();
|
|
|
|
|
|
2020-01-22 12:22:34 +08:00
|
|
|
|
public void OnReleased(PlatformAction action) => updateLastInteractionTime();
|
2018-11-20 01:48:59 +08:00
|
|
|
|
|
|
|
|
|
protected override bool Handle(UIEvent e)
|
|
|
|
|
{
|
|
|
|
|
switch (e)
|
|
|
|
|
{
|
|
|
|
|
case KeyDownEvent _:
|
|
|
|
|
case KeyUpEvent _:
|
|
|
|
|
case MouseDownEvent _:
|
|
|
|
|
case MouseUpEvent _:
|
|
|
|
|
case MouseMoveEvent _:
|
|
|
|
|
return updateLastInteractionTime();
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-11-20 01:48:59 +08:00
|
|
|
|
default:
|
|
|
|
|
return base.Handle(e);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-11-26 15:33:58 +08:00
|
|
|
|
|
|
|
|
|
private bool updateLastInteractionTime()
|
|
|
|
|
{
|
|
|
|
|
lastInteractionTime = Clock.CurrentTime;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-11-20 01:48:59 +08:00
|
|
|
|
}
|
|
|
|
|
}
|