2018-11-20 01:48:59 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2018-11-26 15:32:59 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
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>
|
2018-11-20 01:50:46 +08:00
|
|
|
|
public class IdleTracker : Component, IKeyBindingHandler<PlatformAction>, IHandleGlobalInput
|
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
|
|
|
|
|
|
|
|
|
/// <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-11-26 16:07:30 +08:00
|
|
|
|
isIdle.Value = TimeSpentIdle > timeToIdle;
|
2018-11-26 15:32:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 01:48:59 +08:00
|
|
|
|
public bool OnPressed(PlatformAction action) => updateLastInteractionTime();
|
|
|
|
|
|
|
|
|
|
public bool OnReleased(PlatformAction action) => updateLastInteractionTime();
|
|
|
|
|
|
|
|
|
|
protected override bool Handle(UIEvent e)
|
|
|
|
|
{
|
|
|
|
|
switch (e)
|
|
|
|
|
{
|
|
|
|
|
case KeyDownEvent _:
|
|
|
|
|
case KeyUpEvent _:
|
|
|
|
|
case MouseDownEvent _:
|
|
|
|
|
case MouseUpEvent _:
|
|
|
|
|
case MouseMoveEvent _:
|
|
|
|
|
return updateLastInteractionTime();
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|