2021-11-25 07:36:30 +00: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.
|
|
|
|
|
2022-11-18 16:02:35 +00:00
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
2021-11-25 07:36:30 +00:00
|
|
|
using osu.Framework.Platform;
|
2022-11-18 16:02:35 +00:00
|
|
|
using osu.Game.Extensions;
|
2022-12-11 09:30:24 +00:00
|
|
|
using osu.Game.Overlays.Notifications;
|
2021-11-25 07:36:30 +00:00
|
|
|
using osu.Game.Scoring;
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
{
|
2022-11-17 14:38:24 +00:00
|
|
|
public class LegacyScoreExporter : LegacyModelExporter<ScoreInfo>
|
2021-11-25 07:36:30 +00:00
|
|
|
{
|
2022-12-11 09:30:24 +00:00
|
|
|
public LegacyScoreExporter(Storage storage, RealmAccess realm)
|
|
|
|
: base(storage, realm)
|
2021-11-25 07:36:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-11-21 09:58:01 +00:00
|
|
|
protected override string FileExtension => ".osr";
|
|
|
|
|
2022-12-11 09:30:24 +00:00
|
|
|
protected override void ExportToStream(ScoreInfo model, Stream stream, ProgressNotification notification)
|
2022-11-18 16:02:35 +00:00
|
|
|
{
|
2022-11-27 00:58:54 +00:00
|
|
|
var file = model.Files.SingleOrDefault();
|
|
|
|
if (file == null)
|
|
|
|
return;
|
2022-11-21 09:58:01 +00:00
|
|
|
|
2022-11-27 00:58:54 +00:00
|
|
|
using (var inputStream = UserFileStorage.GetStream(file.File.GetStoragePath()))
|
|
|
|
inputStream.CopyTo(stream);
|
2022-11-18 16:02:35 +00:00
|
|
|
}
|
2021-11-25 07:36:30 +00:00
|
|
|
}
|
|
|
|
}
|