2019-03-01 09:52:53 +08:00
|
|
|
|
// 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.
|
2019-01-05 03:13:32 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Overlays.Dialog;
|
|
|
|
|
using osu.Game.Scoring;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
2019-03-01 09:09:03 +08:00
|
|
|
|
using System.Threading.Tasks;
|
2019-03-27 18:29:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2019-01-05 03:13:32 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
2019-01-05 03:32:52 +08:00
|
|
|
|
public class BeatmapClearScoresDialog : PopupDialog
|
2019-01-05 03:13:32 +08:00
|
|
|
|
{
|
2020-01-04 03:34:26 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private ScoreManager scoreManager { get; set; }
|
2019-01-05 03:13:32 +08:00
|
|
|
|
|
2019-03-01 09:09:03 +08:00
|
|
|
|
public BeatmapClearScoresDialog(BeatmapInfo beatmap, Action onCompletion)
|
2019-01-05 03:13:32 +08:00
|
|
|
|
{
|
|
|
|
|
BodyText = $@"{beatmap.Metadata?.Artist} - {beatmap.Metadata?.Title}";
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Solid.Eraser;
|
2019-03-01 08:49:36 +08:00
|
|
|
|
HeaderText = @"Clearing all local scores. Are you sure?";
|
2019-01-05 03:13:32 +08:00
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Yes. Please.",
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
2019-03-01 09:09:03 +08:00
|
|
|
|
Task.Run(() => scoreManager.Delete(scoreManager.QueryScores(s => !s.DeletePending && s.Beatmap.ID == beatmap.ID).ToList()))
|
2019-03-01 19:52:34 +08:00
|
|
|
|
.ContinueWith(_ => onCompletion);
|
2019-01-05 03:13:32 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"No, I'm still attached.",
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|