mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
51 lines
1.6 KiB
C#
51 lines
1.6 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;
|
|
using System.IO;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Localisation;
|
|
using osu.Framework.Logging;
|
|
using osu.Framework.Platform;
|
|
using osu.Framework.Screens;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
{
|
|
public class MigrationSelectScreen : DirectorySelectScreen
|
|
{
|
|
[Resolved]
|
|
private Storage storage { get; set; }
|
|
|
|
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";
|
|
|
|
protected override void OnSelection(DirectoryInfo directory)
|
|
{
|
|
var target = directory;
|
|
|
|
try
|
|
{
|
|
if (target.GetDirectories().Length > 0 || target.GetFiles().Length > 0)
|
|
target = target.CreateSubdirectory("osu-lazer");
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.Log($"Error during migration: {e.Message}", level: LogLevel.Error);
|
|
return;
|
|
}
|
|
|
|
ValidForResume = false;
|
|
BeginMigration(target);
|
|
}
|
|
|
|
protected virtual void BeginMigration(DirectoryInfo target) => this.Push(new MigrationRunScreen(target));
|
|
}
|
|
}
|