2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
2020-09-09 15:33:48 +08:00
|
|
|
|
using JetBrains.Annotations;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2020-09-02 23:08:33 +08:00
|
|
|
|
using osu.Game.Collections;
|
2021-05-09 23:12:58 +08:00
|
|
|
|
using osu.Game.Database;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2019-06-20 00:33:51 +08:00
|
|
|
|
using osu.Game.Scoring;
|
2018-08-31 17:28:53 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
|
|
|
{
|
|
|
|
|
public class GeneralSettings : SettingsSubsection
|
|
|
|
|
{
|
2018-09-21 20:08:21 +08:00
|
|
|
|
protected override string Header => "General";
|
|
|
|
|
|
|
|
|
|
private TriangleButton importBeatmapsButton;
|
2019-06-20 00:33:51 +08:00
|
|
|
|
private TriangleButton importScoresButton;
|
2018-09-21 20:08:21 +08:00
|
|
|
|
private TriangleButton importSkinsButton;
|
2020-09-02 23:08:33 +08:00
|
|
|
|
private TriangleButton importCollectionsButton;
|
2018-09-21 20:08:21 +08:00
|
|
|
|
private TriangleButton deleteBeatmapsButton;
|
2019-06-20 00:33:51 +08:00
|
|
|
|
private TriangleButton deleteScoresButton;
|
|
|
|
|
private TriangleButton deleteSkinsButton;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private TriangleButton restoreButton;
|
|
|
|
|
private TriangleButton undeleteButton;
|
|
|
|
|
|
2020-09-09 15:33:48 +08:00
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
2021-05-16 23:49:49 +08:00
|
|
|
|
private void load(BeatmapManager beatmaps, ScoreManager scores, SkinManager skins, [CanBeNull] CollectionManager collectionManager, [CanBeNull] StableImportManager stableImportManager, DialogOverlay dialogOverlay)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-05-18 01:54:21 +08:00
|
|
|
|
if (stableImportManager?.SupportsImportFromStable == true)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-28 12:09:38 +08:00
|
|
|
|
Add(importBeatmapsButton = new SettingsButton
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Text = "Import beatmaps from stable",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
2018-09-21 20:08:21 +08:00
|
|
|
|
importBeatmapsButton.Enabled.Value = false;
|
2021-05-09 23:12:58 +08:00
|
|
|
|
stableImportManager.ImportFromStableAsync(StableContent.Beatmaps).ContinueWith(t => Schedule(() => importBeatmapsButton.Enabled.Value = true));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-02-28 12:09:38 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Add(deleteBeatmapsButton = new DangerousSettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = "Delete ALL beatmaps",
|
|
|
|
|
Action = () =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-28 12:09:38 +08:00
|
|
|
|
dialogOverlay?.Push(new DeleteAllBeatmapsDialog(() =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-28 12:09:38 +08:00
|
|
|
|
deleteBeatmapsButton.Enabled.Value = false;
|
|
|
|
|
Task.Run(() => beatmaps.Delete(beatmaps.GetAllUsableBeatmapSets())).ContinueWith(t => Schedule(() => deleteBeatmapsButton.Enabled.Value = true));
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2021-05-18 01:54:21 +08:00
|
|
|
|
if (stableImportManager?.SupportsImportFromStable == true)
|
2019-06-20 00:33:51 +08:00
|
|
|
|
{
|
|
|
|
|
Add(importScoresButton = new SettingsButton
|
|
|
|
|
{
|
2019-07-05 13:07:14 +08:00
|
|
|
|
Text = "Import scores from stable",
|
2019-06-20 00:33:51 +08:00
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
importScoresButton.Enabled.Value = false;
|
2021-05-09 23:12:58 +08:00
|
|
|
|
stableImportManager.ImportFromStableAsync(StableContent.Scores).ContinueWith(t => Schedule(() => importScoresButton.Enabled.Value = true));
|
2019-06-20 00:33:51 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Add(deleteScoresButton = new DangerousSettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = "Delete ALL scores",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
dialogOverlay?.Push(new DeleteAllBeatmapsDialog(() =>
|
|
|
|
|
{
|
|
|
|
|
deleteScoresButton.Enabled.Value = false;
|
|
|
|
|
Task.Run(() => scores.Delete(scores.GetAllUsableScores())).ContinueWith(t => Schedule(() => deleteScoresButton.Enabled.Value = true));
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2021-05-18 01:54:21 +08:00
|
|
|
|
if (stableImportManager?.SupportsImportFromStable == true)
|
2019-02-28 12:09:38 +08:00
|
|
|
|
{
|
|
|
|
|
Add(importSkinsButton = new SettingsButton
|
2018-08-31 17:28:53 +08:00
|
|
|
|
{
|
|
|
|
|
Text = "Import skins from stable",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
2018-09-21 20:08:21 +08:00
|
|
|
|
importSkinsButton.Enabled.Value = false;
|
2021-05-09 23:12:58 +08:00
|
|
|
|
stableImportManager.ImportFromStableAsync(StableContent.Skins).ContinueWith(t => Schedule(() => importSkinsButton.Enabled.Value = true));
|
2018-08-31 17:28:53 +08:00
|
|
|
|
}
|
2019-02-28 12:09:38 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-02 23:08:33 +08:00
|
|
|
|
Add(deleteSkinsButton = new DangerousSettingsButton
|
2019-02-28 12:09:38 +08:00
|
|
|
|
{
|
2020-09-02 23:08:33 +08:00
|
|
|
|
Text = "Delete ALL skins",
|
|
|
|
|
Action = () =>
|
2018-08-31 17:28:53 +08:00
|
|
|
|
{
|
2020-09-02 23:08:33 +08:00
|
|
|
|
dialogOverlay?.Push(new DeleteAllBeatmapsDialog(() =>
|
|
|
|
|
{
|
|
|
|
|
deleteSkinsButton.Enabled.Value = false;
|
|
|
|
|
Task.Run(() => skins.Delete(skins.GetAllUserSkins())).ContinueWith(t => Schedule(() => deleteSkinsButton.Enabled.Value = true));
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2020-09-09 15:33:48 +08:00
|
|
|
|
if (collectionManager != null)
|
2020-09-02 23:08:33 +08:00
|
|
|
|
{
|
2021-05-18 01:54:21 +08:00
|
|
|
|
if (stableImportManager?.SupportsImportFromStable == true)
|
2020-09-02 23:08:33 +08:00
|
|
|
|
{
|
2020-09-09 15:33:48 +08:00
|
|
|
|
Add(importCollectionsButton = new SettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = "Import collections from stable",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
importCollectionsButton.Enabled.Value = false;
|
2021-05-09 23:12:58 +08:00
|
|
|
|
stableImportManager.ImportFromStableAsync(StableContent.Collections).ContinueWith(t => Schedule(() => importCollectionsButton.Enabled.Value = true));
|
2020-09-09 15:33:48 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Add(new DangerousSettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = "Delete ALL collections",
|
2018-08-31 17:28:53 +08:00
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
2020-09-09 15:33:48 +08:00
|
|
|
|
dialogOverlay?.Push(new DeleteAllBeatmapsDialog(collectionManager.DeleteAll));
|
2018-08-31 17:28:53 +08:00
|
|
|
|
}
|
2020-09-02 23:08:33 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AddRange(new Drawable[]
|
|
|
|
|
{
|
2018-04-13 17:19:50 +08:00
|
|
|
|
restoreButton = new SettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = "Restore all hidden difficulties",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
restoreButton.Enabled.Value = false;
|
|
|
|
|
Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
foreach (var b in beatmaps.QueryBeatmaps(b => b.Hidden).ToList())
|
|
|
|
|
beatmaps.Restore(b);
|
|
|
|
|
}).ContinueWith(t => Schedule(() => restoreButton.Enabled.Value = true));
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
undeleteButton = new SettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = "Restore all recently deleted beatmaps",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
undeleteButton.Enabled.Value = false;
|
|
|
|
|
Task.Run(() => beatmaps.Undelete(beatmaps.QueryBeatmapSets(b => b.DeletePending).ToList())).ContinueWith(t => Schedule(() => undeleteButton.Enabled.Value = true));
|
|
|
|
|
}
|
|
|
|
|
},
|
2019-02-28 12:09:38 +08:00
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|