mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:58:21 +08:00
144 lines
5.1 KiB
C#
144 lines
5.1 KiB
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.Threading.Tasks;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Logging;
|
|
using osu.Framework.Platform;
|
|
using osu.Framework.Screens;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Overlays.Notifications;
|
|
using osu.Game.Screens;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
{
|
|
public class MigrationRunScreen : OsuScreen
|
|
{
|
|
private readonly DirectoryInfo destination;
|
|
|
|
[Resolved(canBeNull: true)]
|
|
private OsuGame game { get; set; }
|
|
|
|
[Resolved]
|
|
private NotificationOverlay notifications { get; set; }
|
|
|
|
[Resolved]
|
|
private Storage storage { get; set; }
|
|
|
|
[Resolved]
|
|
private GameHost host { get; set; }
|
|
|
|
public override bool AllowBackButton => false;
|
|
|
|
public override bool AllowExternalScreenChange => false;
|
|
|
|
public override bool DisallowExternalBeatmapRulesetChanges => true;
|
|
|
|
public override bool HideOverlaysOnEnter => true;
|
|
|
|
private Task migrationTask;
|
|
|
|
public MigrationRunScreen(DirectoryInfo destination)
|
|
{
|
|
this.destination = destination;
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Vertical,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Spacing = new Vector2(10),
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Text = "Migration in progress",
|
|
Font = OsuFont.Default.With(size: 40)
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Text = "This could take a few minutes depending on the speed of your disk(s).",
|
|
Font = OsuFont.Default.With(size: 30)
|
|
},
|
|
new LoadingSpinner(true)
|
|
{
|
|
State = { Value = Visibility.Visible }
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Text = "Please avoid interacting with the game!",
|
|
Font = OsuFont.Default.With(size: 30)
|
|
},
|
|
}
|
|
},
|
|
};
|
|
|
|
Beatmap.Value = Beatmap.Default;
|
|
|
|
var originalStorage = new NativeStorage(storage.GetFullPath(string.Empty), host);
|
|
|
|
migrationTask = Task.Run(PerformMigration)
|
|
.ContinueWith(task =>
|
|
{
|
|
if (task.IsFaulted)
|
|
{
|
|
Logger.Error(task.Exception, $"Error during migration: {task.Exception?.Message}");
|
|
}
|
|
else if (!task.GetResultSafely())
|
|
{
|
|
notifications.Post(new SimpleNotification
|
|
{
|
|
Text = "Some files couldn't be cleaned up during migration. Clicking this notification will open the folder so you can manually clean things up.",
|
|
Activated = () =>
|
|
{
|
|
originalStorage.PresentExternally();
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
|
|
Schedule(this.Exit);
|
|
});
|
|
}
|
|
|
|
protected virtual bool PerformMigration() => game?.Migrate(destination.FullName) != false;
|
|
|
|
public override void OnEntering(IScreen last)
|
|
{
|
|
base.OnEntering(last);
|
|
|
|
this.FadeOut().Delay(250).Then().FadeIn(250);
|
|
}
|
|
|
|
public override bool OnExiting(IScreen next)
|
|
{
|
|
// block until migration is finished
|
|
if (migrationTask?.IsCompleted == false)
|
|
return true;
|
|
|
|
return base.OnExiting(next);
|
|
}
|
|
}
|
|
}
|