2019-01-24 16:43:03 +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.
2018-11-28 15:47:10 +08:00
2018-11-28 16:19:58 +08:00
using System ;
using System.Collections.Generic ;
2019-06-21 23:32:47 +08:00
using System.IO ;
2018-11-28 16:19:58 +08:00
using System.Linq ;
using System.Linq.Expressions ;
2020-09-09 16:37:11 +08:00
using System.Threading ;
2021-06-27 12:06:20 +08:00
using System.Threading.Tasks ;
2020-08-28 18:16:46 +08:00
using JetBrains.Annotations ;
2018-11-28 16:19:58 +08:00
using Microsoft.EntityFrameworkCore ;
2020-08-28 20:34:34 +08:00
using osu.Framework.Bindables ;
2018-11-28 18:48:15 +08:00
using osu.Framework.Logging ;
2018-11-28 15:47:10 +08:00
using osu.Framework.Platform ;
2021-09-01 19:56:23 +08:00
using osu.Framework.Threading ;
2018-11-28 15:47:10 +08:00
using osu.Game.Beatmaps ;
2020-08-28 20:34:34 +08:00
using osu.Game.Configuration ;
2018-11-28 15:47:10 +08:00
using osu.Game.Database ;
using osu.Game.IO.Archives ;
2019-06-12 04:01:57 +08:00
using osu.Game.Online.API ;
using osu.Game.Online.API.Requests ;
2018-11-28 15:47:10 +08:00
using osu.Game.Rulesets ;
2021-03-18 18:19:53 +08:00
using osu.Game.Rulesets.Judgements ;
2020-08-28 18:16:46 +08:00
using osu.Game.Rulesets.Scoring ;
2018-11-28 16:19:58 +08:00
using osu.Game.Scoring.Legacy ;
2018-11-28 15:47:10 +08:00
namespace osu.Game.Scoring
{
2019-06-26 23:40:21 +08:00
public class ScoreManager : DownloadableArchiveModelManager < ScoreInfo , ScoreFileInfo >
2018-11-28 15:47:10 +08:00
{
2020-10-02 15:17:10 +08:00
public override IEnumerable < string > HandledExtensions = > new [ ] { ".osr" } ;
2018-11-28 15:47:10 +08:00
2018-11-30 16:36:06 +08:00
protected override string [ ] HashableFileTypes = > new [ ] { ".osr" } ;
2019-07-05 13:15:29 +08:00
protected override string ImportFromStablePath = > Path . Combine ( "Data" , "r" ) ;
2019-06-20 00:33:51 +08:00
2018-11-28 16:19:58 +08:00
private readonly RulesetStore rulesets ;
2019-05-09 14:15:28 +08:00
private readonly Func < BeatmapManager > beatmaps ;
2021-09-01 19:56:23 +08:00
private readonly Scheduler scheduler ;
2018-11-28 16:19:58 +08:00
2020-08-28 18:16:46 +08:00
[CanBeNull]
2020-11-06 12:14:23 +08:00
private readonly Func < BeatmapDifficultyCache > difficulties ;
2020-08-28 18:16:46 +08:00
2020-08-28 20:34:34 +08:00
[CanBeNull]
private readonly OsuConfigManager configManager ;
2021-09-01 19:56:23 +08:00
public ScoreManager ( RulesetStore rulesets , Func < BeatmapManager > beatmaps , Storage storage , IAPIProvider api , IDatabaseContextFactory contextFactory , Scheduler scheduler ,
IIpcHost importHost = null , Func < BeatmapDifficultyCache > difficulties = null , OsuConfigManager configManager = null )
2019-06-12 04:01:57 +08:00
: base ( storage , contextFactory , api , new ScoreStore ( contextFactory , storage ) , importHost )
2018-11-28 15:47:10 +08:00
{
2018-11-28 16:19:58 +08:00
this . rulesets = rulesets ;
this . beatmaps = beatmaps ;
2021-09-01 19:56:23 +08:00
this . scheduler = scheduler ;
2020-08-28 18:16:46 +08:00
this . difficulties = difficulties ;
2020-08-28 20:34:34 +08:00
this . configManager = configManager ;
2018-11-28 16:19:58 +08:00
}
2018-11-28 15:47:10 +08:00
2018-11-28 17:33:01 +08:00
protected override ScoreInfo CreateModel ( ArchiveReader archive )
2018-11-28 15:47:10 +08:00
{
2019-06-20 02:38:43 +08:00
if ( archive = = null )
2018-11-28 16:19:58 +08:00
return null ;
2020-10-16 12:21:47 +08:00
using ( var stream = archive . GetStream ( archive . Filenames . First ( f = > f . EndsWith ( ".osr" , StringComparison . OrdinalIgnoreCase ) ) ) )
2018-11-28 18:48:15 +08:00
{
try
{
2020-03-24 09:38:24 +08:00
return new DatabasedLegacyScoreDecoder ( rulesets , beatmaps ( ) ) . Parse ( stream ) . ScoreInfo ;
2018-11-28 18:48:15 +08:00
}
2020-03-24 09:38:24 +08:00
catch ( LegacyScoreDecoder . BeatmapNotFoundException e )
2018-11-28 18:48:15 +08:00
{
Logger . Log ( e . Message , LoggingTarget . Information , LogLevel . Error ) ;
return null ;
}
}
2018-11-28 15:47:10 +08:00
}
2018-11-28 16:19:58 +08:00
2021-06-27 12:06:20 +08:00
protected override Task Populate ( ScoreInfo model , ArchiveReader archive , CancellationToken cancellationToken = default )
= > Task . CompletedTask ;
2021-04-26 19:46:44 +08:00
protected override void ExportModelTo ( ScoreInfo model , Stream outputStream )
{
var file = model . Files . SingleOrDefault ( ) ;
if ( file = = null )
return ;
using ( var inputStream = Files . Storage . GetStream ( file . FileInfo . StoragePath ) )
inputStream . CopyTo ( outputStream ) ;
}
2021-02-12 11:48:32 +08:00
protected override IEnumerable < string > GetStableImportPaths ( Storage storage )
= > storage . GetFiles ( ImportFromStablePath ) . Where ( p = > HandledExtensions . Any ( ext = > Path . GetExtension ( p ) ? . Equals ( ext , StringComparison . OrdinalIgnoreCase ) ? ? false ) )
. Select ( path = > storage . GetFullPath ( path ) ) ;
2019-06-21 23:32:47 +08:00
2019-05-09 14:15:28 +08:00
public Score GetScore ( ScoreInfo score ) = > new LegacyDatabasedScore ( score , rulesets , beatmaps ( ) , Files . Store ) ;
2018-11-28 17:45:17 +08:00
public List < ScoreInfo > GetAllUsableScores ( ) = > ModelStore . ConsumableItems . Where ( s = > ! s . DeletePending ) . ToList ( ) ;
2018-11-28 16:19:58 +08:00
2018-11-29 17:30:43 +08:00
public IEnumerable < ScoreInfo > QueryScores ( Expression < Func < ScoreInfo , bool > > query ) = > ModelStore . ConsumableItems . AsNoTracking ( ) . Where ( query ) ;
2018-11-28 17:33:01 +08:00
public ScoreInfo Query ( Expression < Func < ScoreInfo , bool > > query ) = > ModelStore . ConsumableItems . AsNoTracking ( ) . FirstOrDefault ( query ) ;
2019-06-12 04:01:57 +08:00
2019-06-26 23:40:21 +08:00
protected override ArchiveDownloadRequest < ScoreInfo > CreateDownloadRequest ( ScoreInfo score , bool minimiseDownload ) = > new DownloadReplayRequest ( score ) ;
2019-06-29 13:25:30 +08:00
2019-12-17 14:34:16 +08:00
protected override bool CheckLocalAvailability ( ScoreInfo model , IQueryable < ScoreInfo > items )
= > base . CheckLocalAvailability ( model , items )
| | ( model . OnlineScoreID ! = null & & items . Any ( i = > i . OnlineScoreID = = model . OnlineScoreID ) ) ;
2020-08-28 18:16:46 +08:00
2021-09-01 14:41:52 +08:00
/// <summary>
/// Orders an array of <see cref="ScoreInfo"/>s by total score.
/// </summary>
/// <param name="scores">The array of <see cref="ScoreInfo"/>s to reorder.</param>
/// <param name="cancellationToken">A <see cref="CancellationToken"/> to cancel the process.</param>
/// <returns>The given <paramref name="scores"/> ordered by decreasing total score.</returns>
public async Task < ScoreInfo [ ] > OrderByTotalScoreAsync ( ScoreInfo [ ] scores , CancellationToken cancellationToken = default )
2021-08-31 20:36:31 +08:00
{
var difficultyCache = difficulties ? . Invoke ( ) ;
2021-09-07 17:52:25 +08:00
if ( difficultyCache ! = null )
2021-08-31 20:36:31 +08:00
{
2021-09-07 17:52:25 +08:00
// Compute difficulties asynchronously first to prevent blocking via the GetTotalScore() call below.
foreach ( var s in scores )
{
await difficultyCache . GetDifficultyAsync ( s . Beatmap , s . Ruleset , s . Mods , cancellationToken ) . ConfigureAwait ( false ) ;
cancellationToken . ThrowIfCancellationRequested ( ) ;
}
2021-08-31 20:36:31 +08:00
}
2021-09-07 17:52:25 +08:00
// We're calling .Result, but this should not be a blocking call due to the above GetDifficultyAsync() calls.
return scores . OrderByDescending ( s = > GetTotalScoreAsync ( s , cancellationToken : cancellationToken ) . Result )
. ThenBy ( s = > s . OnlineScoreID )
. ToArray ( ) ;
2021-08-31 20:36:31 +08:00
}
2020-09-09 16:04:02 +08:00
/// <summary>
/// Retrieves a bindable that represents the total score of a <see cref="ScoreInfo"/>.
/// </summary>
/// <remarks>
/// Responds to changes in the currently-selected <see cref="ScoringMode"/>.
/// </remarks>
/// <param name="score">The <see cref="ScoreInfo"/> to retrieve the bindable for.</param>
/// <returns>The bindable containing the total score.</returns>
2021-09-01 19:56:23 +08:00
public Bindable < long > GetBindableTotalScore ( [ NotNull ] ScoreInfo score )
2020-08-28 18:16:46 +08:00
{
2021-08-30 18:33:09 +08:00
var bindable = new TotalScoreBindable ( score , this ) ;
2020-08-28 20:34:34 +08:00
configManager ? . BindWith ( OsuSetting . ScoreDisplayMode , bindable . ScoringMode ) ;
return bindable ;
}
2020-08-28 18:16:46 +08:00
2020-09-09 16:04:02 +08:00
/// <summary>
/// Retrieves a bindable that represents the formatted total score string of a <see cref="ScoreInfo"/>.
/// </summary>
/// <remarks>
/// Responds to changes in the currently-selected <see cref="ScoringMode"/>.
/// </remarks>
/// <param name="score">The <see cref="ScoreInfo"/> to retrieve the bindable for.</param>
/// <returns>The bindable containing the formatted total score string.</returns>
2021-09-01 19:56:23 +08:00
public Bindable < string > GetBindableTotalScoreString ( [ NotNull ] ScoreInfo score ) = > new TotalScoreStringBindable ( GetBindableTotalScore ( score ) ) ;
2020-09-09 16:04:02 +08:00
2021-09-01 14:41:52 +08:00
/// <summary>
/// Retrieves the total score of a <see cref="ScoreInfo"/> in the given <see cref="ScoringMode"/>.
2021-09-01 19:56:23 +08:00
/// The score is returned in a callback that is run on the update thread.
2021-09-01 14:41:52 +08:00
/// </summary>
/// <param name="score">The <see cref="ScoreInfo"/> to calculate the total score of.</param>
2021-09-01 19:56:23 +08:00
/// <param name="callback">The callback to be invoked with the total score.</param>
2021-09-01 14:41:52 +08:00
/// <param name="mode">The <see cref="ScoringMode"/> to return the total score as.</param>
2021-09-01 19:56:23 +08:00
/// <param name="cancellationToken">A <see cref="CancellationToken"/> to cancel the process.</param>
public void GetTotalScore ( [ NotNull ] ScoreInfo score , [ NotNull ] Action < long > callback , ScoringMode mode = ScoringMode . Standardised , CancellationToken cancellationToken = default )
{
GetTotalScoreAsync ( score , mode , cancellationToken )
. ContinueWith ( s = > scheduler . Add ( ( ) = > callback ( s . Result ) ) , TaskContinuationOptions . OnlyOnRanToCompletion ) ;
}
2021-08-30 18:33:09 +08:00
2021-09-01 14:41:52 +08:00
/// <summary>
/// Retrieves the total score of a <see cref="ScoreInfo"/> in the given <see cref="ScoringMode"/>.
/// </summary>
/// <param name="score">The <see cref="ScoreInfo"/> to calculate the total score of.</param>
/// <param name="mode">The <see cref="ScoringMode"/> to return the total score as.</param>
/// <param name="cancellationToken">A <see cref="CancellationToken"/> to cancel the process.</param>
/// <returns>The total score.</returns>
2021-09-01 19:56:23 +08:00
public async Task < long > GetTotalScoreAsync ( [ NotNull ] ScoreInfo score , ScoringMode mode = ScoringMode . Standardised , CancellationToken cancellationToken = default )
2021-08-30 18:33:09 +08:00
{
if ( score . Beatmap = = null )
return score . TotalScore ;
int beatmapMaxCombo ;
double accuracy = score . Accuracy ;
if ( score . IsLegacyScore )
{
if ( score . RulesetID = = 3 )
{
// In osu!stable, a full-GREAT score has 100% accuracy in mania. Along with a full combo, the score becomes indistinguishable from a full-PERFECT score.
// To get around this, recalculate accuracy based on the hit statistics.
// Note: This cannot be applied universally to all legacy scores, as some rulesets (e.g. catch) group multiple judgements together.
double maxBaseScore = score . Statistics . Select ( kvp = > kvp . Value ) . Sum ( ) * Judgement . ToNumericResult ( HitResult . Perfect ) ;
double baseScore = score . Statistics . Select ( kvp = > Judgement . ToNumericResult ( kvp . Key ) * kvp . Value ) . Sum ( ) ;
if ( maxBaseScore > 0 )
accuracy = baseScore / maxBaseScore ;
}
// This score is guaranteed to be an osu!stable score.
// The combo must be determined through either the beatmap's max combo value or the difficulty calculator, as lazer's scoring has changed and the score statistics cannot be used.
if ( score . Beatmap . MaxCombo ! = null )
beatmapMaxCombo = score . Beatmap . MaxCombo . Value ;
else
{
if ( score . Beatmap . ID = = 0 | | difficulties = = null )
{
// We don't have enough information (max combo) to compute the score, so use the provided score.
return score . TotalScore ;
}
// We can compute the max combo locally after the async beatmap difficulty computation.
var difficulty = await difficulties ( ) . GetDifficultyAsync ( score . Beatmap , score . Ruleset , score . Mods , cancellationToken ) . ConfigureAwait ( false ) ;
beatmapMaxCombo = difficulty . MaxCombo ;
}
}
else
{
// This is guaranteed to be a non-legacy score.
// The combo must be determined through the score's statistics, as both the beatmap's max combo and the difficulty calculator will provide osu!stable combo values.
beatmapMaxCombo = Enum . GetValues ( typeof ( HitResult ) ) . OfType < HitResult > ( ) . Where ( r = > r . AffectsCombo ( ) ) . Select ( r = > score . Statistics . GetValueOrDefault ( r ) ) . Sum ( ) ;
}
if ( beatmapMaxCombo = = 0 )
return 0 ;
var ruleset = score . Ruleset . CreateInstance ( ) ;
var scoreProcessor = ruleset . CreateScoreProcessor ( ) ;
scoreProcessor . Mods . Value = score . Mods ;
2021-09-01 14:41:52 +08:00
return ( long ) Math . Round ( scoreProcessor . GetScore ( mode , beatmapMaxCombo , accuracy , ( double ) score . MaxCombo / beatmapMaxCombo , score . Statistics ) ) ;
2021-08-30 18:33:09 +08:00
}
2020-09-09 16:04:02 +08:00
/// <summary>
/// Provides the total score of a <see cref="ScoreInfo"/>. Responds to changes in the currently-selected <see cref="ScoringMode"/>.
/// </summary>
2020-08-28 21:51:19 +08:00
private class TotalScoreBindable : Bindable < long >
2020-08-28 20:34:34 +08:00
{
public readonly Bindable < ScoringMode > ScoringMode = new Bindable < ScoringMode > ( ) ;
2021-09-01 19:56:23 +08:00
private readonly ScoreInfo score ;
private readonly ScoreManager scoreManager ;
private CancellationTokenSource difficultyCalculationCancellationSource ;
2020-09-09 16:04:02 +08:00
/// <summary>
/// Creates a new <see cref="TotalScoreBindable"/>.
/// </summary>
/// <param name="score">The <see cref="ScoreInfo"/> to provide the total score of.</param>
2021-08-30 18:33:09 +08:00
/// <param name="scoreManager">The <see cref="ScoreManager"/>.</param>
public TotalScoreBindable ( ScoreInfo score , ScoreManager scoreManager )
2020-08-28 18:16:46 +08:00
{
2021-09-01 19:56:23 +08:00
this . score = score ;
this . scoreManager = scoreManager ;
ScoringMode . BindValueChanged ( onScoringModeChanged , true ) ;
}
private void onScoringModeChanged ( ValueChangedEvent < ScoringMode > mode )
{
difficultyCalculationCancellationSource ? . Cancel ( ) ;
difficultyCalculationCancellationSource = new CancellationTokenSource ( ) ;
scoreManager . GetTotalScore ( score , s = > Value = s , mode . NewValue , difficultyCalculationCancellationSource . Token ) ;
2020-08-28 21:51:19 +08:00
}
}
2020-09-09 16:04:02 +08:00
/// <summary>
/// Provides the total score of a <see cref="ScoreInfo"/> as a formatted string. Responds to changes in the currently-selected <see cref="ScoringMode"/>.
/// </summary>
2020-08-28 21:51:19 +08:00
private class TotalScoreStringBindable : Bindable < string >
{
// ReSharper disable once PrivateFieldCanBeConvertedToLocalVariable (need to hold a reference)
private readonly IBindable < long > totalScore ;
public TotalScoreStringBindable ( IBindable < long > totalScore )
{
this . totalScore = totalScore ;
this . totalScore . BindValueChanged ( v = > Value = v . NewValue . ToString ( "N0" ) , true ) ;
2020-08-28 20:34:34 +08:00
}
2020-08-28 18:16:46 +08:00
}
2018-11-28 15:47:10 +08:00
}
}