1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 06:27:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Maintenance/MigrationSelectScreen.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
2.9 KiB
C#
Raw Normal View History

2020-05-13 21:58:05 +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.
2022-06-17 15:37:17 +08:00
#nullable disable
2020-05-14 16:40:43 +08:00
using System;
using System.IO;
using System.Linq;
2020-05-13 21:58:05 +08:00
using osu.Framework.Allocation;
using osu.Framework.Localisation;
2020-05-14 16:40:43 +08:00
using osu.Framework.Logging;
using osu.Framework.Platform;
2020-05-13 21:58:05 +08:00
using osu.Framework.Screens;
using osu.Game.IO;
using osu.Game.Overlays.Dialog;
2020-05-13 21:58:05 +08:00
namespace osu.Game.Overlays.Settings.Sections.Maintenance
{
public class MigrationSelectScreen : DirectorySelectScreen
2020-05-13 21:58:05 +08:00
{
[Resolved]
private Storage storage { get; set; }
2020-05-13 21:58:05 +08:00
[Resolved]
private OsuGameBase game { get; set; }
[Resolved(canBeNull: true)]
private IDialogOverlay dialogOverlay { get; set; }
2021-05-06 04:13:25 +08:00
protected override DirectoryInfo InitialPath => new DirectoryInfo(storage.GetFullPath(string.Empty)).Parent;
public override bool AllowExternalScreenChange => false;
public override bool DisallowExternalBeatmapRulesetChanges => true;
public override bool HideOverlaysOnEnter => true;
public override LocalisableString HeaderText => "Please select a new location";
2020-05-14 16:40:43 +08:00
protected override void OnSelection(DirectoryInfo directory)
2020-05-13 21:58:05 +08:00
{
var target = directory;
2020-05-14 16:40:43 +08:00
try
{
var directoryInfos = target.GetDirectories();
var fileInfos = target.GetFiles();
if (directoryInfos.Length > 0 || fileInfos.Length > 0)
{
// Quick test for whether there's already an osu! install at the target path.
if (fileInfos.Any(f => f.Name == OsuGameBase.CLIENT_DATABASE_FILENAME))
{
dialogOverlay.Push(new ConfirmDialog("The target directory already seems to have an osu! install. Use that data instead?", () =>
{
dialogOverlay.Push(new ConfirmDialog("To complete this operation, osu! will close. Please open it again to use the new data location.", () =>
{
(storage as OsuStorage)?.ChangeDataPath(target.FullName);
game.Exit();
}, () => { }));
},
() => { }));
return;
}
2020-05-14 16:40:43 +08:00
target = target.CreateSubdirectory("osu-lazer");
}
2020-05-14 16:40:43 +08:00
}
catch (Exception e)
{
2020-05-14 18:05:35 +08:00
Logger.Log($"Error during migration: {e.Message}", level: LogLevel.Error);
2020-05-14 16:40:43 +08:00
return;
}
2020-05-13 21:58:05 +08:00
ValidForResume = false;
2020-05-14 18:05:35 +08:00
BeginMigration(target);
2020-05-13 21:58:05 +08:00
}
2020-05-14 18:05:35 +08:00
protected virtual void BeginMigration(DirectoryInfo target) => this.Push(new MigrationRunScreen(target));
2020-05-13 21:58:05 +08:00
}
}