2020-09-26 01:15:40 +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.
|
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2020-10-11 01:58:06 +08:00
|
|
|
|
using System;
|
2020-09-26 01:15:40 +08:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
2022-01-03 16:31:12 +08:00
|
|
|
|
using osu.Framework.Extensions;
|
2020-11-01 20:25:36 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2022-01-28 12:53:48 +08:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2020-09-26 01:15:40 +08:00
|
|
|
|
using osu.Game.Scoring;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Ranking.Expanded.Statistics
|
|
|
|
|
{
|
2022-02-05 21:18:23 +08:00
|
|
|
|
public partial class PerformanceStatistic : StatisticDisplay
|
2020-09-26 01:15:40 +08:00
|
|
|
|
{
|
|
|
|
|
private readonly ScoreInfo score;
|
|
|
|
|
|
|
|
|
|
private readonly Bindable<int> performance = new Bindable<int>();
|
|
|
|
|
|
|
|
|
|
private readonly CancellationTokenSource cancellationTokenSource = new CancellationTokenSource();
|
|
|
|
|
|
2020-11-01 20:25:36 +08:00
|
|
|
|
private RollingCounter<int> counter;
|
|
|
|
|
|
2020-09-26 01:15:40 +08:00
|
|
|
|
public PerformanceStatistic(ScoreInfo score)
|
2022-01-28 12:53:48 +08:00
|
|
|
|
: base(BeatmapsetsStrings.ShowScoreboardHeaderspp)
|
2020-09-26 01:15:40 +08:00
|
|
|
|
{
|
|
|
|
|
this.score = score;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2022-02-05 21:18:23 +08:00
|
|
|
|
private void load(ScorePerformanceCache performanceCache)
|
2020-09-26 01:15:40 +08:00
|
|
|
|
{
|
2022-02-05 21:18:23 +08:00
|
|
|
|
if (score.PP.HasValue)
|
|
|
|
|
{
|
|
|
|
|
setPerformanceValue(score.PP.Value);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
performanceCache.CalculatePerformanceAsync(score, cancellationTokenSource.Token)
|
2022-03-02 01:43:20 +08:00
|
|
|
|
.ContinueWith(t => Schedule(() => setPerformanceValue(t.GetResultSafely()?.Total)), cancellationTokenSource.Token);
|
2022-02-05 21:18:23 +08:00
|
|
|
|
}
|
2022-01-18 21:57:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-05 21:18:23 +08:00
|
|
|
|
private void setPerformanceValue(double? pp)
|
2022-01-18 21:57:12 +08:00
|
|
|
|
{
|
2022-02-05 21:18:23 +08:00
|
|
|
|
if (pp.HasValue)
|
|
|
|
|
performance.Value = (int)Math.Round(pp.Value, MidpointRounding.AwayFromZero);
|
2020-10-13 04:14:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-26 01:15:40 +08:00
|
|
|
|
public override void Appear()
|
|
|
|
|
{
|
|
|
|
|
base.Appear();
|
2020-11-01 20:25:36 +08:00
|
|
|
|
counter.Current.BindTo(performance);
|
2020-09-26 01:15:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
2020-09-29 01:05:22 +08:00
|
|
|
|
cancellationTokenSource?.Cancel();
|
2020-09-26 01:15:40 +08:00
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
}
|
2020-11-01 20:25:36 +08:00
|
|
|
|
|
|
|
|
|
protected override Drawable CreateContent() => counter = new StatisticCounter
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre
|
|
|
|
|
};
|
2020-09-26 01:15:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|