2021-09-30 17:21:16 +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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2022-09-09 12:57:01 +08:00
|
|
|
using System.Diagnostics;
|
2021-09-30 17:21:16 +08:00
|
|
|
using System.Linq;
|
|
|
|
using System.Threading;
|
2022-01-07 23:40:14 +08:00
|
|
|
using Newtonsoft.Json;
|
2021-09-30 17:21:16 +08:00
|
|
|
using osu.Framework.Logging;
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Database;
|
|
|
|
using osu.Game.IO.Archives;
|
2021-12-14 18:47:11 +08:00
|
|
|
using osu.Game.Rulesets;
|
2021-09-30 17:21:16 +08:00
|
|
|
using osu.Game.Scoring.Legacy;
|
2022-07-08 11:16:06 +08:00
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2022-09-08 21:06:44 +08:00
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2021-12-06 21:47:00 +08:00
|
|
|
using Realms;
|
|
|
|
|
2021-09-30 17:21:16 +08:00
|
|
|
namespace osu.Game.Scoring
|
|
|
|
{
|
2022-06-16 17:53:13 +08:00
|
|
|
public class ScoreImporter : RealmArchiveModelImporter<ScoreInfo>
|
2021-09-30 17:21:16 +08:00
|
|
|
{
|
|
|
|
public override IEnumerable<string> HandledExtensions => new[] { ".osr" };
|
|
|
|
|
|
|
|
protected override string[] HashableFileTypes => new[] { ".osr" };
|
|
|
|
|
2021-12-14 18:47:11 +08:00
|
|
|
private readonly RulesetStore rulesets;
|
2021-09-30 17:21:16 +08:00
|
|
|
private readonly Func<BeatmapManager> beatmaps;
|
|
|
|
|
2022-07-08 11:16:06 +08:00
|
|
|
private readonly IAPIProvider api;
|
|
|
|
|
2022-09-09 12:57:01 +08:00
|
|
|
public ScoreImporter(RulesetStore rulesets, Func<BeatmapManager> beatmaps, Storage storage, RealmAccess realm, IAPIProvider api)
|
2022-01-24 18:59:58 +08:00
|
|
|
: base(storage, realm)
|
2021-09-30 17:21:16 +08:00
|
|
|
{
|
|
|
|
this.rulesets = rulesets;
|
|
|
|
this.beatmaps = beatmaps;
|
2022-07-08 11:16:06 +08:00
|
|
|
this.api = api;
|
2021-09-30 17:21:16 +08:00
|
|
|
}
|
|
|
|
|
2021-12-06 21:47:00 +08:00
|
|
|
protected override ScoreInfo? CreateModel(ArchiveReader archive)
|
2021-09-30 17:21:16 +08:00
|
|
|
{
|
|
|
|
using (var stream = archive.GetStream(archive.Filenames.First(f => f.EndsWith(".osr", StringComparison.OrdinalIgnoreCase))))
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return new DatabasedLegacyScoreDecoder(rulesets, beatmaps()).Parse(stream).ScoreInfo;
|
|
|
|
}
|
|
|
|
catch (LegacyScoreDecoder.BeatmapNotFoundException e)
|
|
|
|
{
|
|
|
|
Logger.Log(e.Message, LoggingTarget.Information, LogLevel.Error);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Score GetScore(ScoreInfo score) => new LegacyDatabasedScore(score, rulesets, beatmaps(), Files.Store);
|
|
|
|
|
2022-01-13 15:27:07 +08:00
|
|
|
protected override void Populate(ScoreInfo model, ArchiveReader? archive, Realm realm, CancellationToken cancellationToken = default)
|
2022-01-07 16:27:48 +08:00
|
|
|
{
|
|
|
|
// Ensure the beatmap is not detached.
|
2022-01-12 17:05:25 +08:00
|
|
|
if (!model.BeatmapInfo.IsManaged)
|
|
|
|
model.BeatmapInfo = realm.Find<BeatmapInfo>(model.BeatmapInfo.ID);
|
2022-01-07 16:27:48 +08:00
|
|
|
|
|
|
|
if (!model.Ruleset.IsManaged)
|
|
|
|
model.Ruleset = realm.Find<RulesetInfo>(model.Ruleset.ShortName);
|
|
|
|
|
2022-01-17 13:02:15 +08:00
|
|
|
// These properties are known to be non-null, but these final checks ensure a null hasn't come from somewhere (or the refetch has failed).
|
|
|
|
// Under no circumstance do we want these to be written to realm as null.
|
|
|
|
if (model.BeatmapInfo == null) throw new ArgumentNullException(nameof(model.BeatmapInfo));
|
|
|
|
if (model.Ruleset == null) throw new ArgumentNullException(nameof(model.Ruleset));
|
|
|
|
|
2022-09-09 12:57:01 +08:00
|
|
|
PopulateMaximumStatistics(model);
|
2022-09-08 21:06:44 +08:00
|
|
|
|
2022-01-07 23:40:14 +08:00
|
|
|
if (string.IsNullOrEmpty(model.StatisticsJson))
|
|
|
|
model.StatisticsJson = JsonConvert.SerializeObject(model.Statistics);
|
2022-08-22 20:31:10 +08:00
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(model.MaximumStatisticsJson))
|
|
|
|
model.MaximumStatisticsJson = JsonConvert.SerializeObject(model.MaximumStatistics);
|
2022-01-07 16:27:48 +08:00
|
|
|
}
|
2022-07-08 11:16:06 +08:00
|
|
|
|
2022-09-08 21:06:44 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Populates the <see cref="ScoreInfo.MaximumStatistics"/> for a given <see cref="ScoreInfo"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="score">The score to populate the statistics of.</param>
|
2022-09-09 12:57:01 +08:00
|
|
|
public void PopulateMaximumStatistics(ScoreInfo score)
|
2022-09-08 21:06:44 +08:00
|
|
|
{
|
|
|
|
if (score.MaximumStatistics.Select(kvp => kvp.Value).Sum() > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var beatmap = score.BeatmapInfo.Detach();
|
|
|
|
var ruleset = score.Ruleset.Detach();
|
2022-09-09 12:57:01 +08:00
|
|
|
var rulesetInstance = ruleset.CreateInstance();
|
|
|
|
|
|
|
|
Debug.Assert(rulesetInstance != null);
|
2022-09-08 21:06:44 +08:00
|
|
|
|
|
|
|
// Populate the maximum statistics.
|
2022-09-09 12:57:01 +08:00
|
|
|
HitResult maxBasicResult = rulesetInstance.GetHitResults()
|
|
|
|
.Select(h => h.result)
|
|
|
|
.Where(h => h.IsBasic())
|
|
|
|
.OrderByDescending(Judgement.ToNumericResult).First();
|
2022-09-08 21:06:44 +08:00
|
|
|
|
|
|
|
foreach ((HitResult result, int count) in score.Statistics)
|
|
|
|
{
|
|
|
|
switch (result)
|
|
|
|
{
|
|
|
|
case HitResult.LargeTickHit:
|
|
|
|
case HitResult.LargeTickMiss:
|
|
|
|
score.MaximumStatistics[HitResult.LargeTickHit] = score.MaximumStatistics.GetValueOrDefault(HitResult.LargeTickHit) + count;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HitResult.SmallTickHit:
|
|
|
|
case HitResult.SmallTickMiss:
|
|
|
|
score.MaximumStatistics[HitResult.SmallTickHit] = score.MaximumStatistics.GetValueOrDefault(HitResult.SmallTickHit) + count;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HitResult.IgnoreHit:
|
|
|
|
case HitResult.IgnoreMiss:
|
|
|
|
case HitResult.SmallBonus:
|
|
|
|
case HitResult.LargeBonus:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
score.MaximumStatistics[maxBasicResult] = score.MaximumStatistics.GetValueOrDefault(maxBasicResult) + count;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!score.IsLegacyScore)
|
|
|
|
return;
|
|
|
|
|
|
|
|
#pragma warning disable CS0618
|
|
|
|
// In osu! and osu!mania, some judgements affect combo but aren't stored to scores.
|
|
|
|
// A special hit result is used to pad out the combo value to match, based on the max combo from the difficulty attributes.
|
2022-09-09 12:57:01 +08:00
|
|
|
var calculator = rulesetInstance.CreateDifficultyCalculator(beatmaps().GetWorkingBeatmap(beatmap));
|
|
|
|
var attributes = calculator.Calculate(score.Mods);
|
2022-09-08 21:06:44 +08:00
|
|
|
|
|
|
|
int maxComboFromStatistics = score.MaximumStatistics.Where(kvp => kvp.Key.AffectsCombo()).Select(kvp => kvp.Value).DefaultIfEmpty(0).Sum();
|
2022-09-09 12:57:01 +08:00
|
|
|
if (attributes.MaxCombo > maxComboFromStatistics)
|
|
|
|
score.MaximumStatistics[HitResult.LegacyComboIncrease] = attributes.MaxCombo - maxComboFromStatistics;
|
2022-09-08 21:06:44 +08:00
|
|
|
#pragma warning restore CS0618
|
|
|
|
}
|
|
|
|
|
2022-07-28 15:18:30 +08:00
|
|
|
protected override void PostImport(ScoreInfo model, Realm realm, bool batchImport)
|
2022-07-08 11:16:06 +08:00
|
|
|
{
|
2022-07-28 15:18:30 +08:00
|
|
|
base.PostImport(model, realm, batchImport);
|
2022-07-08 11:16:06 +08:00
|
|
|
|
2022-07-12 02:46:42 +08:00
|
|
|
var userRequest = new GetUserRequest(model.RealmUser.Username);
|
|
|
|
|
2022-07-08 11:16:06 +08:00
|
|
|
api.Perform(userRequest);
|
|
|
|
|
2022-07-12 02:46:42 +08:00
|
|
|
if (userRequest.Response is APIUser user)
|
2022-07-16 11:31:01 +08:00
|
|
|
model.User = user;
|
2022-07-08 11:16:06 +08:00
|
|
|
}
|
2021-09-30 17:21:16 +08:00
|
|
|
}
|
|
|
|
}
|