1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 14:07:25 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/ClicksPerSecond/ClicksPerSecondCalculator.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.9 KiB
C#
Raw Normal View History

// 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.
using System.Collections.Generic;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Rulesets.UI;
namespace osu.Game.Screens.Play.HUD.ClicksPerSecond
{
public partial class ClicksPerSecondCalculator : Component
{
2022-09-08 17:22:53 +08:00
private readonly List<double> timestamps = new List<double>();
[Resolved]
2022-08-24 23:12:52 +08:00
private IGameplayClock gameplayClock { get; set; } = null!;
2022-09-08 17:22:53 +08:00
[Resolved(canBeNull: true)]
private DrawableRuleset? drawableRuleset { get; set; }
2022-08-24 23:12:52 +08:00
public int Value { get; private set; }
// Even though `FrameStabilityContainer` caches as a `GameplayClock`, we need to check it directly via `drawableRuleset`
// as this calculator is not contained within the `FrameStabilityContainer` and won't see the dependency.
2022-09-08 17:22:53 +08:00
private IGameplayClock clock => drawableRuleset?.FrameStableClock ?? gameplayClock;
public ClicksPerSecondCalculator()
{
RelativeSizeAxes = Axes.Both;
}
2022-09-08 17:22:53 +08:00
public void AddInputTimestamp() => timestamps.Add(clock.CurrentTime);
2022-08-24 23:12:52 +08:00
protected override void Update()
{
2022-08-24 23:12:52 +08:00
base.Update();
2022-09-08 17:22:53 +08:00
double latestValidTime = clock.CurrentTime;
2022-09-08 22:03:15 +08:00
double earliestTimeValid = latestValidTime - 1000 * gameplayClock.GetTrueGameplayRate();
2022-09-08 17:22:53 +08:00
int count = 0;
2022-09-08 17:22:53 +08:00
for (int i = timestamps.Count - 1; i >= 0; i--)
{
2022-09-08 17:22:53 +08:00
// handle rewinding by removing future timestamps as we go
if (timestamps[i] > latestValidTime)
{
timestamps.RemoveAt(i);
continue;
}
if (timestamps[i] >= earliestTimeValid)
count++;
}
2022-09-08 17:22:53 +08:00
Value = count;
}
}
}