2021-04-13 18:50:22 +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.
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Game.Rulesets.Edit.Checks;
|
|
|
|
using osu.Game.Rulesets.Edit.Checks.Components;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Edit
|
|
|
|
{
|
|
|
|
/// <summary>
|
2021-04-13 19:18:18 +08:00
|
|
|
/// A ruleset-agnostic beatmap verifier that identifies issues in common metadata or mapping standards.
|
2021-04-13 18:50:22 +08:00
|
|
|
/// </summary>
|
|
|
|
public class BeatmapVerifier : IBeatmapVerifier
|
|
|
|
{
|
|
|
|
private readonly List<ICheck> checks = new List<ICheck>
|
|
|
|
{
|
2021-04-18 08:07:33 +08:00
|
|
|
// Resources
|
|
|
|
new CheckBackgroundPresence(),
|
|
|
|
new CheckBackgroundQuality(),
|
2021-04-20 07:36:03 +08:00
|
|
|
|
2021-04-18 08:07:33 +08:00
|
|
|
// Audio
|
|
|
|
new CheckAudioPresence(),
|
2021-04-25 11:34:54 +08:00
|
|
|
new CheckAudioQuality(),
|
|
|
|
|
|
|
|
// Compose
|
2021-04-27 02:32:44 +08:00
|
|
|
new CheckUnsnappedObjects(),
|
2021-04-27 02:28:59 +08:00
|
|
|
new CheckConcurrentObjects()
|
2021-04-13 18:50:22 +08:00
|
|
|
};
|
|
|
|
|
2021-05-13 17:24:22 +08:00
|
|
|
public IEnumerable<Issue> Run(BeatmapVerifierContext context)
|
2021-04-20 07:31:51 +08:00
|
|
|
{
|
2021-05-13 17:24:22 +08:00
|
|
|
return checks.SelectMany(check => check.Run(context));
|
2021-04-20 07:31:51 +08:00
|
|
|
}
|
2021-04-13 18:50:22 +08:00
|
|
|
}
|
|
|
|
}
|