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;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Linq.Expressions;
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2018-11-28 18:48:15 +08:00
|
|
|
using osu.Framework.Logging;
|
2018-11-28 15:47:10 +08:00
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Database;
|
|
|
|
using osu.Game.IO.Archives;
|
|
|
|
using osu.Game.Rulesets;
|
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
|
|
|
|
{
|
2018-11-28 17:33:01 +08:00
|
|
|
public class ScoreManager : ArchiveModelManager<ScoreInfo, ScoreFileInfo>
|
2018-11-28 15:47:10 +08:00
|
|
|
{
|
|
|
|
public override string[] HandledExtensions => new[] { ".osr" };
|
|
|
|
|
2018-11-30 16:36:06 +08:00
|
|
|
protected override string[] HashableFileTypes => new[] { ".osr" };
|
|
|
|
|
2018-11-28 15:47:10 +08:00
|
|
|
protected override string ImportFromStablePath => "Replays";
|
|
|
|
|
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;
|
2018-11-28 16:19:58 +08:00
|
|
|
|
2019-05-09 14:15:28 +08:00
|
|
|
public ScoreManager(RulesetStore rulesets, Func<BeatmapManager> beatmaps, Storage storage, IDatabaseContextFactory contextFactory, IIpcHost importHost = null)
|
2018-11-28 15:47:10 +08:00
|
|
|
: base(storage, contextFactory, new ScoreStore(contextFactory, storage), importHost)
|
|
|
|
{
|
2018-11-28 16:19:58 +08:00
|
|
|
this.rulesets = rulesets;
|
|
|
|
this.beatmaps = beatmaps;
|
|
|
|
}
|
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
|
|
|
{
|
|
|
|
if (archive == null)
|
2018-11-28 16:19:58 +08:00
|
|
|
return null;
|
|
|
|
|
|
|
|
using (var stream = archive.GetStream(archive.Filenames.First(f => f.EndsWith(".osr"))))
|
2018-11-28 18:48:15 +08:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2019-05-09 14:15:28 +08:00
|
|
|
return new DatabasedLegacyScoreParser(rulesets, beatmaps()).Parse(stream).ScoreInfo;
|
2018-11-28 18:48:15 +08:00
|
|
|
}
|
|
|
|
catch (LegacyScoreParser.BeatmapNotFoundException e)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
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);
|
2018-11-28 15:47:10 +08:00
|
|
|
}
|
|
|
|
}
|