2018-01-05 20:21:19 +09:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-07-28 12:46:38 +09:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-10-23 16:35:35 +09:00
|
|
|
|
using System.Linq;
|
2017-07-28 12:46:38 +09:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
|
|
|
{
|
|
|
|
|
public class GeneralSettings : SettingsSubsection
|
|
|
|
|
{
|
2017-11-26 01:52:52 +09:00
|
|
|
|
private TriangleButton importButton;
|
|
|
|
|
private TriangleButton deleteButton;
|
|
|
|
|
private TriangleButton restoreButton;
|
2017-11-30 10:58:32 +01:00
|
|
|
|
private TriangleButton undeleteButton;
|
2017-07-28 12:46:38 +09:00
|
|
|
|
|
|
|
|
|
protected override string Header => "General";
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2017-12-09 13:39:11 +01:00
|
|
|
|
private void load(BeatmapManager beatmaps, DialogOverlay dialogOverlay)
|
2017-07-28 12:46:38 +09:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-10-21 13:16:06 +10:30
|
|
|
|
importButton = new SettingsButton
|
2017-07-28 12:46:38 +09:00
|
|
|
|
{
|
|
|
|
|
Text = "Import beatmaps from stable",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
importButton.Enabled.Value = false;
|
2017-12-26 00:37:50 +09:00
|
|
|
|
beatmaps.ImportFromStable().ContinueWith(t => Schedule(() => importButton.Enabled.Value = true));
|
2017-07-28 12:46:38 +09:00
|
|
|
|
}
|
|
|
|
|
},
|
2017-12-18 17:04:35 +01:00
|
|
|
|
deleteButton = new DangerousSettingsButton
|
2017-07-28 12:46:38 +09:00
|
|
|
|
{
|
|
|
|
|
Text = "Delete ALL beatmaps",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
2017-12-14 17:33:56 +01:00
|
|
|
|
dialogOverlay?.Push(new DeleteAllBeatmapsDialog(() =>
|
2017-12-08 14:27:07 +01:00
|
|
|
|
{
|
|
|
|
|
deleteButton.Enabled.Value = false;
|
2018-02-15 13:30:17 +09:00
|
|
|
|
Task.Run(() => beatmaps.Delete(beatmaps.GetAllUsableBeatmapSets())).ContinueWith(t => Schedule(() => deleteButton.Enabled.Value = true));
|
2017-12-14 17:33:56 +01:00
|
|
|
|
}));
|
2017-07-28 12:46:38 +09:00
|
|
|
|
}
|
|
|
|
|
},
|
2017-10-21 13:16:06 +10:30
|
|
|
|
restoreButton = new SettingsButton
|
2017-09-01 18:26:01 +09:00
|
|
|
|
{
|
|
|
|
|
Text = "Restore all hidden difficulties",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
restoreButton.Enabled.Value = false;
|
|
|
|
|
Task.Run(() =>
|
|
|
|
|
{
|
2017-10-23 16:35:35 +09:00
|
|
|
|
foreach (var b in beatmaps.QueryBeatmaps(b => b.Hidden).ToList())
|
2017-09-01 18:26:01 +09:00
|
|
|
|
beatmaps.Restore(b);
|
|
|
|
|
}).ContinueWith(t => Schedule(() => restoreButton.Enabled.Value = true));
|
|
|
|
|
}
|
|
|
|
|
},
|
2017-11-30 10:58:32 +01:00
|
|
|
|
undeleteButton = new SettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = "Restore all recently deleted beatmaps",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
undeleteButton.Enabled.Value = false;
|
2018-02-15 15:14:55 +09:00
|
|
|
|
Task.Run(() => beatmaps.Undelete(beatmaps.QueryBeatmapSets(b => b.DeletePending).ToList())).ContinueWith(t => Schedule(() => undeleteButton.Enabled.Value = true));
|
2017-11-30 10:58:32 +01:00
|
|
|
|
}
|
|
|
|
|
},
|
2017-07-28 12:46:38 +09:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|