osu/osu.Game/Rulesets/Edit/BeatmapVerifier.cs

45 lines
1.3 KiB
C#
Raw Normal View History

// 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.
/// </summary>
public class BeatmapVerifier : IBeatmapVerifier
{
private readonly List<ICheck> checks = new List<ICheck>
{
// Resources
new CheckBackgroundPresence(),
new CheckBackgroundQuality(),
2021-04-19 23:36:03 +00:00
// Audio
new CheckAudioPresence(),
2021-04-25 03:34:54 +00:00
new CheckAudioQuality(),
2021-06-26 17:20:34 +00:00
new CheckMutedObjects(),
2021-06-26 17:20:46 +00:00
new CheckFewHitsounds(),
new CheckTooShortAudioFiles(),
2021-07-13 02:17:41 +00:00
new CheckAudioInVideo(),
2021-04-25 03:34:54 +00:00
2021-07-13 01:45:21 +00:00
// Files
new CheckZeroByteFiles(),
2021-04-25 03:34:54 +00:00
// Compose
new CheckUnsnappedObjects(),
2021-07-13 08:53:25 +00:00
new CheckConcurrentObjects(),
new CheckZeroLengthObjects(),
};
2021-05-13 09:24:22 +00:00
public IEnumerable<Issue> Run(BeatmapVerifierContext context)
{
2021-05-13 09:24:22 +00:00
return checks.SelectMany(check => check.Run(context));
}
}
}