1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 22:07:27 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Maintenance/GeneralSettings.cs

162 lines
6.7 KiB
C#
Raw Normal View History

// 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.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.Framework.Localisation;
2018-04-13 17:19:50 +08:00
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;
using osu.Game.Localisation;
2019-06-20 00:33:51 +08:00
using osu.Game.Scoring;
using osu.Game.Skinning;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.Maintenance
{
public class GeneralSettings : SettingsSubsection
{
protected override LocalisableString Header => "General";
2021-10-11 02:32:56 +08:00
private SettingsButton importBeatmapsButton;
private SettingsButton importScoresButton;
private SettingsButton importSkinsButton;
private SettingsButton importCollectionsButton;
private SettingsButton deleteBeatmapsButton;
private SettingsButton deleteScoresButton;
private SettingsButton deleteSkinsButton;
private SettingsButton restoreButton;
private SettingsButton undeleteButton;
2018-04-13 17:19:50 +08:00
2020-09-09 15:33:48 +08:00
[BackgroundDependencyLoader(permitNulls: true)]
2021-11-25 16:12:15 +08:00
private void load(BeatmapManager beatmaps, ScoreManager scores, SkinManager skins, [CanBeNull] CollectionManager collectionManager, [CanBeNull] LegacyImportManager legacyImportManager, DialogOverlay dialogOverlay)
2018-04-13 17:19:50 +08:00
{
2021-11-25 16:12:15 +08:00
if (legacyImportManager?.SupportsImportFromStable == true)
2018-04-13 17:19:50 +08:00
{
Add(importBeatmapsButton = new SettingsButton
2018-04-13 17:19:50 +08:00
{
Text = MaintenanceSettingsStrings.ImportBeatmapsFromStable,
2018-04-13 17:19:50 +08:00
Action = () =>
{
importBeatmapsButton.Enabled.Value = false;
2021-11-25 16:12:15 +08:00
legacyImportManager.ImportFromStableAsync(StableContent.Beatmaps).ContinueWith(t => Schedule(() => importBeatmapsButton.Enabled.Value = true));
2018-04-13 17:19:50 +08:00
}
});
}
Add(deleteBeatmapsButton = new DangerousSettingsButton
{
Text = MaintenanceSettingsStrings.DeleteAllBeatmaps,
Action = () =>
2018-04-13 17:19:50 +08:00
{
dialogOverlay?.Push(new MassDeleteConfirmationDialog(() =>
2018-04-13 17:19:50 +08:00
{
deleteBeatmapsButton.Enabled.Value = false;
2022-01-11 21:57:47 +08:00
Task.Run(() => beatmaps.Delete()).ContinueWith(t => Schedule(() => deleteBeatmapsButton.Enabled.Value = true));
}));
}
});
2021-11-25 16:12:15 +08:00
if (legacyImportManager?.SupportsImportFromStable == true)
2019-06-20 00:33:51 +08:00
{
Add(importScoresButton = new SettingsButton
{
Text = MaintenanceSettingsStrings.ImportScoresFromStable,
2019-06-20 00:33:51 +08:00
Action = () =>
{
importScoresButton.Enabled.Value = false;
2021-11-25 16:12:15 +08:00
legacyImportManager.ImportFromStableAsync(StableContent.Scores).ContinueWith(t => Schedule(() => importScoresButton.Enabled.Value = true));
2019-06-20 00:33:51 +08:00
}
});
}
Add(deleteScoresButton = new DangerousSettingsButton
{
Text = MaintenanceSettingsStrings.DeleteAllScores,
2019-06-20 00:33:51 +08:00
Action = () =>
{
dialogOverlay?.Push(new MassDeleteConfirmationDialog(() =>
2019-06-20 00:33:51 +08:00
{
deleteScoresButton.Enabled.Value = false;
2021-12-13 18:01:20 +08:00
Task.Run(() => scores.Delete()).ContinueWith(t => Schedule(() => deleteScoresButton.Enabled.Value = true));
2019-06-20 00:33:51 +08:00
}));
}
});
2021-11-25 16:12:15 +08:00
if (legacyImportManager?.SupportsImportFromStable == true)
{
Add(importSkinsButton = new SettingsButton
{
Text = MaintenanceSettingsStrings.ImportSkinsFromStable,
Action = () =>
{
importSkinsButton.Enabled.Value = false;
2021-11-25 16:12:15 +08:00
legacyImportManager.ImportFromStableAsync(StableContent.Skins).ContinueWith(t => Schedule(() => importSkinsButton.Enabled.Value = true));
}
});
}
2020-09-02 23:08:33 +08:00
Add(deleteSkinsButton = new DangerousSettingsButton
{
Text = MaintenanceSettingsStrings.DeleteAllSkins,
2020-09-02 23:08:33 +08:00
Action = () =>
{
dialogOverlay?.Push(new MassDeleteConfirmationDialog(() =>
2020-09-02 23:08:33 +08:00
{
deleteSkinsButton.Enabled.Value = false;
2022-01-11 22:04:36 +08:00
Task.Run(() => skins.Delete()).ContinueWith(t => Schedule(() => deleteSkinsButton.Enabled.Value = true));
2020-09-02 23:08:33 +08:00
}));
}
});
2020-09-09 15:33:48 +08:00
if (collectionManager != null)
2020-09-02 23:08:33 +08:00
{
2021-11-25 16:12:15 +08:00
if (legacyImportManager?.SupportsImportFromStable == true)
2020-09-02 23:08:33 +08:00
{
2020-09-09 15:33:48 +08:00
Add(importCollectionsButton = new SettingsButton
{
Text = MaintenanceSettingsStrings.ImportCollectionsFromStable,
2020-09-09 15:33:48 +08:00
Action = () =>
{
importCollectionsButton.Enabled.Value = false;
2021-11-25 16:12:15 +08:00
legacyImportManager.ImportFromStableAsync(StableContent.Collections).ContinueWith(t => Schedule(() => importCollectionsButton.Enabled.Value = true));
2020-09-09 15:33:48 +08:00
}
});
}
Add(new DangerousSettingsButton
{
Text = MaintenanceSettingsStrings.DeleteAllCollections,
Action = () =>
{
dialogOverlay?.Push(new MassDeleteConfirmationDialog(collectionManager.DeleteAll));
}
2020-09-02 23:08:33 +08:00
});
}
AddRange(new Drawable[]
{
2018-04-13 17:19:50 +08:00
restoreButton = new SettingsButton
{
Text = MaintenanceSettingsStrings.RestoreAllHiddenDifficulties,
2018-04-13 17:19:50 +08:00
Action = () =>
{
restoreButton.Enabled.Value = false;
2022-01-11 22:04:36 +08:00
Task.Run(beatmaps.RestoreAll).ContinueWith(t => Schedule(() => restoreButton.Enabled.Value = true));
2018-04-13 17:19:50 +08:00
}
},
undeleteButton = new SettingsButton
{
Text = MaintenanceSettingsStrings.RestoreAllRecentlyDeletedBeatmaps,
2018-04-13 17:19:50 +08:00
Action = () =>
{
undeleteButton.Enabled.Value = false;
2022-01-11 22:04:36 +08:00
Task.Run(beatmaps.UndeleteAll).ContinueWith(t => Schedule(() => undeleteButton.Enabled.Value = true));
2018-04-13 17:19:50 +08:00
}
},
});
2018-04-13 17:19:50 +08:00
}
}
}