2022-06-22 13:02:33 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 17:43:03 +09:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-07-28 12:46:38 +09:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 12:50:34 +09:00
|
|
|
|
using osu.Framework.Localisation;
|
2017-07-28 12:46:38 +09:00
|
|
|
|
using osu.Game.Beatmaps;
|
2021-08-12 12:26:42 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-07-28 12:46:38 +09:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
|
|
|
{
|
2022-06-21 23:00:03 +01:00
|
|
|
|
public partial class BeatmapSettings : SettingsSubsection
|
2017-07-28 12:46:38 +09:00
|
|
|
|
{
|
2022-09-16 21:08:25 +09:00
|
|
|
|
protected override LocalisableString Header => CommonStrings.Beatmaps;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2022-06-22 13:07:44 +09:00
|
|
|
|
private SettingsButton deleteBeatmapsButton = null!;
|
|
|
|
|
private SettingsButton deleteBeatmapVideosButton = null!;
|
|
|
|
|
private SettingsButton restoreButton = null!;
|
|
|
|
|
private SettingsButton undeleteButton = null!;
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2023-01-09 21:17:40 +03:00
|
|
|
|
private void load(BeatmapManager beatmaps, IDialogOverlay? dialogOverlay)
|
2017-07-28 12:46:38 +09:00
|
|
|
|
{
|
2022-06-22 13:13:04 +09:00
|
|
|
|
Add(deleteBeatmapsButton = new DangerousSettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = MaintenanceSettingsStrings.DeleteAllBeatmaps,
|
|
|
|
|
Action = () =>
|
2022-06-21 23:00:03 +01:00
|
|
|
|
{
|
2022-06-22 13:13:04 +09:00
|
|
|
|
dialogOverlay?.Push(new MassDeleteConfirmationDialog(() =>
|
2022-06-21 23:00:03 +01:00
|
|
|
|
{
|
2022-06-22 13:13:04 +09:00
|
|
|
|
deleteBeatmapsButton.Enabled.Value = false;
|
2022-06-24 21:25:23 +09:00
|
|
|
|
Task.Run(() => beatmaps.Delete()).ContinueWith(_ => Schedule(() => deleteBeatmapsButton.Enabled.Value = true));
|
2022-06-22 13:13:04 +09:00
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
});
|
2019-02-28 13:09:38 +09:00
|
|
|
|
|
2022-06-22 13:13:04 +09:00
|
|
|
|
Add(deleteBeatmapVideosButton = new DangerousSettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = MaintenanceSettingsStrings.DeleteAllBeatmapVideos,
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
dialogOverlay?.Push(new MassVideoDeleteConfirmationDialog(() =>
|
|
|
|
|
{
|
|
|
|
|
deleteBeatmapVideosButton.Enabled.Value = false;
|
2022-06-24 21:25:23 +09:00
|
|
|
|
Task.Run(beatmaps.DeleteAllVideos).ContinueWith(_ => Schedule(() => deleteBeatmapVideosButton.Enabled.Value = true));
|
2022-06-22 13:13:04 +09:00
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
AddRange(new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
restoreButton = new SettingsButton
|
2022-05-18 01:09:58 -05:00
|
|
|
|
{
|
2022-06-22 13:13:04 +09:00
|
|
|
|
Text = MaintenanceSettingsStrings.RestoreAllHiddenDifficulties,
|
2017-09-01 18:26:01 +09:00
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
2022-06-22 13:13:04 +09:00
|
|
|
|
restoreButton.Enabled.Value = false;
|
2022-06-24 21:25:23 +09:00
|
|
|
|
Task.Run(beatmaps.RestoreAll).ContinueWith(_ => Schedule(() => restoreButton.Enabled.Value = true));
|
2017-09-01 18:26:01 +09:00
|
|
|
|
}
|
2022-06-22 13:13:04 +09:00
|
|
|
|
},
|
|
|
|
|
undeleteButton = new SettingsButton
|
2017-11-30 10:58:32 +01:00
|
|
|
|
{
|
2022-06-22 13:13:04 +09:00
|
|
|
|
Text = MaintenanceSettingsStrings.RestoreAllRecentlyDeletedBeatmaps,
|
|
|
|
|
Action = () =>
|
2017-11-30 10:58:32 +01:00
|
|
|
|
{
|
2022-06-22 13:13:04 +09:00
|
|
|
|
undeleteButton.Enabled.Value = false;
|
2022-06-24 21:25:23 +09:00
|
|
|
|
Task.Run(beatmaps.UndeleteAll).ContinueWith(_ => Schedule(() => undeleteButton.Enabled.Value = true));
|
2017-11-30 10:58:32 +01:00
|
|
|
|
}
|
2022-06-22 13:13:04 +09:00
|
|
|
|
}
|
|
|
|
|
});
|
2017-07-28 12:46:38 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|