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