forked from ppy/osu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ppy#18802 from Supersonicboss1/reorganised-mainten…
…ance-section Added subheadings to maintenance section in settings
- Loading branch information
Showing
6 changed files
with
238 additions
and
180 deletions.
There are no files selected for viewing
88 changes: 88 additions & 0 deletions
88
osu.Game/Overlays/Settings/Sections/Maintenance/BeatmapSettings.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. | ||
// See the LICENCE file in the repository root for full licence text. | ||
|
||
using System.Threading.Tasks; | ||
using osu.Framework.Allocation; | ||
using osu.Framework.Graphics; | ||
using osu.Framework.Localisation; | ||
using osu.Game.Beatmaps; | ||
using osu.Game.Database; | ||
using osu.Game.Localisation; | ||
|
||
namespace osu.Game.Overlays.Settings.Sections.Maintenance | ||
{ | ||
public class BeatmapSettings : SettingsSubsection | ||
{ | ||
protected override LocalisableString Header => "Beatmaps"; | ||
|
||
private SettingsButton importBeatmapsButton = null!; | ||
private SettingsButton deleteBeatmapsButton = null!; | ||
private SettingsButton deleteBeatmapVideosButton = null!; | ||
private SettingsButton restoreButton = null!; | ||
private SettingsButton undeleteButton = null!; | ||
|
||
[BackgroundDependencyLoader] | ||
private void load(BeatmapManager beatmaps, LegacyImportManager? legacyImportManager, IDialogOverlay? dialogOverlay) | ||
{ | ||
if (legacyImportManager?.SupportsImportFromStable == true) | ||
{ | ||
Add(importBeatmapsButton = new SettingsButton | ||
{ | ||
Text = MaintenanceSettingsStrings.ImportBeatmapsFromStable, | ||
Action = () => | ||
{ | ||
importBeatmapsButton.Enabled.Value = false; | ||
legacyImportManager.ImportFromStableAsync(StableContent.Beatmaps).ContinueWith(t => Schedule(() => importBeatmapsButton.Enabled.Value = true)); | ||
} | ||
}); | ||
} | ||
|
||
Add(deleteBeatmapsButton = new DangerousSettingsButton | ||
{ | ||
Text = MaintenanceSettingsStrings.DeleteAllBeatmaps, | ||
Action = () => | ||
{ | ||
dialogOverlay?.Push(new MassDeleteConfirmationDialog(() => | ||
{ | ||
deleteBeatmapsButton.Enabled.Value = false; | ||
Task.Run(() => beatmaps.Delete()).ContinueWith(t => Schedule(() => deleteBeatmapsButton.Enabled.Value = true)); | ||
})); | ||
} | ||
}); | ||
|
||
Add(deleteBeatmapVideosButton = new DangerousSettingsButton | ||
{ | ||
Text = MaintenanceSettingsStrings.DeleteAllBeatmapVideos, | ||
Action = () => | ||
{ | ||
dialogOverlay?.Push(new MassVideoDeleteConfirmationDialog(() => | ||
{ | ||
deleteBeatmapVideosButton.Enabled.Value = false; | ||
Task.Run(beatmaps.DeleteAllVideos).ContinueWith(t => Schedule(() => deleteBeatmapVideosButton.Enabled.Value = true)); | ||
})); | ||
} | ||
}); | ||
AddRange(new Drawable[] | ||
{ | ||
restoreButton = new SettingsButton | ||
{ | ||
Text = MaintenanceSettingsStrings.RestoreAllHiddenDifficulties, | ||
Action = () => | ||
{ | ||
restoreButton.Enabled.Value = false; | ||
Task.Run(beatmaps.RestoreAll).ContinueWith(t => Schedule(() => restoreButton.Enabled.Value = true)); | ||
} | ||
}, | ||
undeleteButton = new SettingsButton | ||
{ | ||
Text = MaintenanceSettingsStrings.RestoreAllRecentlyDeletedBeatmaps, | ||
Action = () => | ||
{ | ||
undeleteButton.Enabled.Value = false; | ||
Task.Run(beatmaps.UndeleteAll).ContinueWith(t => Schedule(() => undeleteButton.Enabled.Value = true)); | ||
} | ||
} | ||
}); | ||
} | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
osu.Game/Overlays/Settings/Sections/Maintenance/CollectionsSettings.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. | ||
// See the LICENCE file in the repository root for full licence text. | ||
|
||
using osu.Framework.Allocation; | ||
using osu.Framework.Localisation; | ||
using osu.Game.Collections; | ||
using osu.Game.Database; | ||
using osu.Game.Localisation; | ||
|
||
namespace osu.Game.Overlays.Settings.Sections.Maintenance | ||
{ | ||
public class CollectionsSettings : SettingsSubsection | ||
{ | ||
protected override LocalisableString Header => "Collections"; | ||
|
||
private SettingsButton importCollectionsButton = null!; | ||
|
||
[BackgroundDependencyLoader] | ||
private void load(CollectionManager? collectionManager, LegacyImportManager? legacyImportManager, IDialogOverlay? dialogOverlay) | ||
{ | ||
if (collectionManager == null) return; | ||
|
||
if (legacyImportManager?.SupportsImportFromStable == true) | ||
{ | ||
Add(importCollectionsButton = new SettingsButton | ||
{ | ||
Text = MaintenanceSettingsStrings.ImportCollectionsFromStable, | ||
Action = () => | ||
{ | ||
importCollectionsButton.Enabled.Value = false; | ||
legacyImportManager.ImportFromStableAsync(StableContent.Collections).ContinueWith(t => Schedule(() => importCollectionsButton.Enabled.Value = true)); | ||
} | ||
}); | ||
} | ||
|
||
Add(new DangerousSettingsButton | ||
{ | ||
Text = MaintenanceSettingsStrings.DeleteAllCollections, | ||
Action = () => | ||
{ | ||
dialogOverlay?.Push(new MassDeleteConfirmationDialog(collectionManager.DeleteAll)); | ||
} | ||
}); | ||
} | ||
} | ||
} |
177 changes: 0 additions & 177 deletions
177
osu.Game/Overlays/Settings/Sections/Maintenance/GeneralSettings.cs
This file was deleted.
Oops, something went wrong.
50 changes: 50 additions & 0 deletions
50
osu.Game/Overlays/Settings/Sections/Maintenance/ScoreSettings.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. | ||
// See the LICENCE file in the repository root for full licence text. | ||
|
||
using System.Threading.Tasks; | ||
using osu.Framework.Allocation; | ||
using osu.Framework.Localisation; | ||
using osu.Game.Database; | ||
using osu.Game.Localisation; | ||
using osu.Game.Scoring; | ||
|
||
namespace osu.Game.Overlays.Settings.Sections.Maintenance | ||
{ | ||
public class ScoreSettings : SettingsSubsection | ||
{ | ||
protected override LocalisableString Header => "Scores"; | ||
|
||
private SettingsButton importScoresButton = null!; | ||
private SettingsButton deleteScoresButton = null!; | ||
|
||
[BackgroundDependencyLoader] | ||
private void load(ScoreManager scores, LegacyImportManager? legacyImportManager, IDialogOverlay? dialogOverlay) | ||
{ | ||
if (legacyImportManager?.SupportsImportFromStable == true) | ||
{ | ||
Add(importScoresButton = new SettingsButton | ||
{ | ||
Text = MaintenanceSettingsStrings.ImportScoresFromStable, | ||
Action = () => | ||
{ | ||
importScoresButton.Enabled.Value = false; | ||
legacyImportManager.ImportFromStableAsync(StableContent.Scores).ContinueWith(t => Schedule(() => importScoresButton.Enabled.Value = true)); | ||
} | ||
}); | ||
} | ||
|
||
Add(deleteScoresButton = new DangerousSettingsButton | ||
{ | ||
Text = MaintenanceSettingsStrings.DeleteAllScores, | ||
Action = () => | ||
{ | ||
dialogOverlay?.Push(new MassDeleteConfirmationDialog(() => | ||
{ | ||
deleteScoresButton.Enabled.Value = false; | ||
Task.Run(() => scores.Delete()).ContinueWith(t => Schedule(() => deleteScoresButton.Enabled.Value = true)); | ||
})); | ||
} | ||
}); | ||
} | ||
} | ||
} |
Oops, something went wrong.