2017-07-28 11:46:38 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-10-23 15:35:35 +08:00
|
|
|
|
using System.Linq;
|
2017-07-28 11:46:38 +08: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 00:52:52 +08:00
|
|
|
|
private TriangleButton importButton;
|
|
|
|
|
private TriangleButton deleteButton;
|
|
|
|
|
private TriangleButton restoreButton;
|
2017-07-28 11:46:38 +08:00
|
|
|
|
|
|
|
|
|
protected override string Header => "General";
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2017-12-09 20:39:11 +08:00
|
|
|
|
private void load(BeatmapManager beatmaps, DialogOverlay dialogOverlay)
|
2017-07-28 11:46:38 +08:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-10-21 10:46:06 +08:00
|
|
|
|
importButton = new SettingsButton
|
2017-07-28 11:46:38 +08:00
|
|
|
|
{
|
|
|
|
|
Text = "Import beatmaps from stable",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
importButton.Enabled.Value = false;
|
2017-10-25 10:42:55 +08:00
|
|
|
|
Task.Factory.StartNew(beatmaps.ImportFromStable)
|
|
|
|
|
.ContinueWith(t => Schedule(() => importButton.Enabled.Value = true), TaskContinuationOptions.LongRunning);
|
2017-07-28 11:46:38 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2017-10-21 10:46:06 +08:00
|
|
|
|
deleteButton = new SettingsButton
|
2017-07-28 11:46:38 +08:00
|
|
|
|
{
|
|
|
|
|
Text = "Delete ALL beatmaps",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
2017-12-15 00:33:56 +08:00
|
|
|
|
dialogOverlay?.Push(new DeleteAllBeatmapsDialog(() =>
|
2017-12-08 21:27:07 +08:00
|
|
|
|
{
|
|
|
|
|
deleteButton.Enabled.Value = false;
|
|
|
|
|
Task.Run(() => beatmaps.DeleteAll()).ContinueWith(t => Schedule(() => deleteButton.Enabled.Value = true));
|
2017-12-15 00:33:56 +08:00
|
|
|
|
}));
|
2017-07-28 11:46:38 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2017-10-21 10:46:06 +08:00
|
|
|
|
restoreButton = new SettingsButton
|
2017-09-01 17:26:01 +08:00
|
|
|
|
{
|
|
|
|
|
Text = "Restore all hidden difficulties",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
restoreButton.Enabled.Value = false;
|
|
|
|
|
Task.Run(() =>
|
|
|
|
|
{
|
2017-10-23 15:35:35 +08:00
|
|
|
|
foreach (var b in beatmaps.QueryBeatmaps(b => b.Hidden).ToList())
|
2017-09-01 17:26:01 +08:00
|
|
|
|
beatmaps.Restore(b);
|
|
|
|
|
}).ContinueWith(t => Schedule(() => restoreButton.Enabled.Value = true));
|
|
|
|
|
}
|
|
|
|
|
},
|
2017-07-28 11:46:38 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|