2021-05-10 01:50:43 +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.
|
|
|
|
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
|
using osu.Game.Overlays.Dialog;
|
2022-04-18 16:49:28 +08:00
|
|
|
|
using osu.Game.Screens;
|
2021-05-10 01:50:43 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
|
|
|
{
|
|
|
|
|
public class StableDirectoryLocationDialog : PopupDialog
|
|
|
|
|
{
|
2022-04-18 20:48:46 +08:00
|
|
|
|
[Resolved]
|
2022-04-18 16:49:28 +08:00
|
|
|
|
private IPerformFromScreenRunner performer { get; set; }
|
2021-05-10 01:50:43 +08:00
|
|
|
|
|
|
|
|
|
public StableDirectoryLocationDialog(TaskCompletionSource<string> taskCompletionSource)
|
|
|
|
|
{
|
2021-05-13 18:09:37 +08:00
|
|
|
|
HeaderText = "Failed to automatically locate an osu!stable installation.";
|
2021-05-13 18:10:26 +08:00
|
|
|
|
BodyText = "An existing install could not be located. If you know where it is, you can help locate it.";
|
2021-05-10 01:50:43 +08:00
|
|
|
|
Icon = FontAwesome.Solid.QuestionCircle;
|
|
|
|
|
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = "Sure! I know where it is located!",
|
2022-04-18 16:49:28 +08:00
|
|
|
|
Action = () => Schedule(() => performer.PerformFromScreen(screen => screen.Push(new StableDirectorySelectScreen(taskCompletionSource))))
|
2021-05-10 01:50:43 +08:00
|
|
|
|
},
|
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
|
{
|
|
|
|
|
Text = "Actually I don't have osu!stable installed.",
|
|
|
|
|
Action = () => taskCompletionSource.TrySetCanceled()
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|