mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:57:52 +08:00
6adac853e8
`uuid` to `model`
33 lines
997 B
C#
33 lines
997 B
C#
// 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.IO;
|
|
using System.Linq;
|
|
using osu.Framework.Platform;
|
|
using osu.Game.Extensions;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Scoring;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
public class LegacyScoreExporter : LegacyModelExporter<ScoreInfo>
|
|
{
|
|
public LegacyScoreExporter(Storage storage, RealmAccess realm, INotificationOverlay? notifications = null)
|
|
: base(storage, realm, notifications)
|
|
{
|
|
}
|
|
|
|
protected override string FileExtension => ".osr";
|
|
|
|
protected override void ExportToStream(ScoreInfo model, Stream stream)
|
|
{
|
|
var file = model.Files.SingleOrDefault();
|
|
if (file == null)
|
|
return;
|
|
|
|
using (var inputStream = UserFileStorage.GetStream(file.File.GetStoragePath()))
|
|
inputStream.CopyTo(stream);
|
|
}
|
|
}
|
|
}
|