1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 20:17:34 +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.

85 lines
3.0 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;
2022-09-16 17:31:02 +08:00
using osu.Game.Localisation;
using osu.Game.Overlays.Dialog;
2020-05-13 21:58:05 +08:00
namespace osu.Game.Overlays.Settings.Sections.Maintenance
{
public partial 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;
2022-09-16 17:31:02 +08:00
public override LocalisableString HeaderText => MaintenanceSettingsStrings.SelectNewLocation;
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 || target.Parent == null)
{
// Quick test for whether there's already an osu! install at the target path.
if (fileInfos.Any(f => f.Name == OsuGameBase.CLIENT_DATABASE_FILENAME))
{
2022-09-16 20:08:25 +08:00
dialogOverlay.Push(new ConfirmDialog(MaintenanceSettingsStrings.TargetDirectoryAlreadyInstalledOsu, () =>
{
2022-09-16 20:08:25 +08:00
dialogOverlay.Push(new ConfirmDialog(MaintenanceSettingsStrings.RestartAndReOpenRequiredForCompletion, () =>
{
(storage as OsuStorage)?.ChangeDataPath(target.FullName);
game.Exit();
}, () => { }));
},
() => { }));
return;
}
//We aren't using CreateSubDirectory due to the flaw with a root of a drive
target = Directory.CreateDirectory(Path.Combine(target.FullName, "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
}
}