mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 02:59:48 +08:00
129 lines
4.4 KiB
C#
129 lines
4.4 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.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
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.Graphics.UserInterfaceV2;
|
|
using osu.Game.Screens;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
{
|
|
public class MigrationSelectScreen : OsuScreen
|
|
{
|
|
private DirectorySelector directorySelector;
|
|
|
|
public override bool AllowExternalScreenChange => false;
|
|
|
|
public override bool DisallowExternalBeatmapRulesetChanges => true;
|
|
|
|
public override bool HideOverlaysOnEnter => true;
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
private void load(OsuGame game, Storage storage, OsuColour colours)
|
|
{
|
|
game?.Toolbar.Hide();
|
|
|
|
// begin selection in the parent directory of the current storage location
|
|
var initialPath = new DirectoryInfo(storage.GetFullPath(string.Empty)).Parent?.FullName;
|
|
|
|
InternalChild = new Container
|
|
{
|
|
Masking = true,
|
|
CornerRadius = 10,
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Size = new Vector2(0.5f, 0.8f),
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
Colour = colours.GreySeafoamDark,
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
RowDimensions = new[]
|
|
{
|
|
new Dimension(),
|
|
new Dimension(GridSizeMode.Relative, 0.8f),
|
|
new Dimension(),
|
|
},
|
|
Content = new[]
|
|
{
|
|
new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Text = "Please select a new location",
|
|
Font = OsuFont.Default.With(size: 40)
|
|
},
|
|
},
|
|
new Drawable[]
|
|
{
|
|
directorySelector = new DirectorySelector(initialPath)
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
}
|
|
},
|
|
new Drawable[]
|
|
{
|
|
new TriangleButton
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Width = 300,
|
|
Text = "Begin folder migration",
|
|
Action = start
|
|
},
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
public override void OnSuspending(IScreen next)
|
|
{
|
|
base.OnSuspending(next);
|
|
|
|
this.FadeOut(250);
|
|
}
|
|
|
|
private void start()
|
|
{
|
|
var target = directorySelector.CurrentPath.Value;
|
|
|
|
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));
|
|
}
|
|
}
|