2020-09-27 18:44:29 +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.
|
|
|
|
|
|
2020-09-29 01:04:39 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Concurrent;
|
2020-09-27 18:44:29 +08:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Scoring
|
|
|
|
|
{
|
2020-11-02 13:50:44 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A global component which calculates and caches results of performance calculations for locally databased scores.
|
|
|
|
|
/// </summary>
|
2020-09-27 18:44:29 +08:00
|
|
|
|
public class ScorePerformanceManager : Component
|
|
|
|
|
{
|
2020-11-02 13:51:19 +08:00
|
|
|
|
// this cache will grow indefinitely per session and should be considered temporary.
|
|
|
|
|
// this whole component should likely be replaced with database persistence.
|
2020-09-29 01:04:39 +08:00
|
|
|
|
private readonly ConcurrentDictionary<PerformanceCacheLookup, double> performanceCache = new ConcurrentDictionary<PerformanceCacheLookup, double>();
|
|
|
|
|
|
2020-09-30 00:32:02 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private BeatmapDifficultyManager difficultyManager { get; set; }
|
|
|
|
|
|
2020-09-27 18:44:29 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Calculates performance for the given <see cref="ScoreInfo"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="score">The score to do the calculation on. </param>
|
|
|
|
|
/// <param name="token">An optional <see cref="CancellationToken"/> to cancel the operation.</param>
|
2020-10-27 20:45:21 +08:00
|
|
|
|
public Task<double?> CalculatePerformanceAsync([NotNull] ScoreInfo score, CancellationToken token = default)
|
2020-09-27 18:44:29 +08:00
|
|
|
|
{
|
2020-10-13 04:10:02 +08:00
|
|
|
|
var lookupKey = new PerformanceCacheLookup(score);
|
2020-09-29 01:04:39 +08:00
|
|
|
|
|
2020-10-13 04:10:02 +08:00
|
|
|
|
if (performanceCache.TryGetValue(lookupKey, out double performance))
|
2020-10-27 20:45:21 +08:00
|
|
|
|
return Task.FromResult((double?)performance);
|
2020-09-27 18:44:29 +08:00
|
|
|
|
|
2020-10-27 20:45:21 +08:00
|
|
|
|
return computePerformanceAsync(score, lookupKey, token);
|
2020-09-29 01:04:39 +08:00
|
|
|
|
}
|
2020-09-27 18:44:29 +08:00
|
|
|
|
|
2020-10-11 01:16:21 +08:00
|
|
|
|
private async Task<double?> computePerformanceAsync(ScoreInfo score, PerformanceCacheLookup lookupKey, CancellationToken token = default)
|
2020-09-29 01:04:39 +08:00
|
|
|
|
{
|
2020-09-30 00:32:02 +08:00
|
|
|
|
var attributes = await difficultyManager.GetDifficultyAsync(score.Beatmap, score.Ruleset, score.Mods, token);
|
2020-09-29 01:04:39 +08:00
|
|
|
|
|
2020-10-10 00:32:03 +08:00
|
|
|
|
// Performance calculation requires the beatmap and ruleset to be locally available. If not, return a default value.
|
|
|
|
|
if (attributes.Attributes == null)
|
2020-10-11 01:16:21 +08:00
|
|
|
|
return null;
|
2020-10-10 00:32:03 +08:00
|
|
|
|
|
2020-10-11 01:16:21 +08:00
|
|
|
|
token.ThrowIfCancellationRequested();
|
2020-09-29 01:04:39 +08:00
|
|
|
|
|
2020-10-07 20:10:25 +08:00
|
|
|
|
var calculator = score.Ruleset.CreateInstance().CreatePerformanceCalculator(attributes.Attributes, score);
|
2020-10-11 01:16:21 +08:00
|
|
|
|
var total = calculator?.Calculate();
|
2020-09-29 01:04:39 +08:00
|
|
|
|
|
2020-10-11 01:16:21 +08:00
|
|
|
|
if (total.HasValue)
|
|
|
|
|
performanceCache[lookupKey] = total.Value;
|
2020-09-29 01:04:39 +08:00
|
|
|
|
|
|
|
|
|
return total;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public readonly struct PerformanceCacheLookup
|
|
|
|
|
{
|
2020-10-09 00:31:29 +08:00
|
|
|
|
public readonly string ScoreHash;
|
2020-10-11 01:19:24 +08:00
|
|
|
|
public readonly int LocalScoreID;
|
2020-09-29 01:04:39 +08:00
|
|
|
|
|
|
|
|
|
public PerformanceCacheLookup(ScoreInfo info)
|
|
|
|
|
{
|
2020-10-09 00:31:29 +08:00
|
|
|
|
ScoreHash = info.Hash;
|
2020-10-11 01:19:24 +08:00
|
|
|
|
LocalScoreID = info.ID;
|
2020-09-29 01:04:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int GetHashCode()
|
|
|
|
|
{
|
|
|
|
|
var hash = new HashCode();
|
|
|
|
|
|
2020-10-09 00:31:29 +08:00
|
|
|
|
hash.Add(ScoreHash);
|
2020-10-11 01:19:24 +08:00
|
|
|
|
hash.Add(LocalScoreID);
|
2020-09-29 01:04:39 +08:00
|
|
|
|
|
|
|
|
|
return hash.ToHashCode();
|
|
|
|
|
}
|
2020-09-27 18:44:29 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|