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 osu.Game.Database;
|
2021-12-10 17:32:06 +08:00
|
|
|
using osu.Game.Extensions;
|
2021-09-30 17:21:16 +08:00
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
|
|
|
namespace osu.Game.Scoring
|
|
|
|
{
|
2021-11-05 16:37:05 +08:00
|
|
|
public class ScoreModelDownloader : ModelDownloader<ScoreInfo, IScoreInfo>
|
2021-09-30 17:21:16 +08:00
|
|
|
{
|
2021-11-25 16:42:41 +08:00
|
|
|
public ScoreModelDownloader(IModelImporter<ScoreInfo> scoreManager, IAPIProvider api)
|
|
|
|
: base(scoreManager, api)
|
2021-09-30 17:21:16 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-11-05 16:37:05 +08:00
|
|
|
protected override ArchiveDownloadRequest<IScoreInfo> CreateDownloadRequest(IScoreInfo score, bool minimiseDownload) => new DownloadReplayRequest(score);
|
2021-10-27 19:02:51 +08:00
|
|
|
|
2021-11-05 16:37:05 +08:00
|
|
|
public override ArchiveDownloadRequest<IScoreInfo> GetExistingDownload(IScoreInfo model)
|
2021-12-10 17:32:06 +08:00
|
|
|
=> CurrentDownloads.Find(r => r.Model.MatchesOnlineID(model));
|
2021-09-30 17:21:16 +08:00
|
|
|
}
|
|
|
|
}
|