1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 12:47:25 +08:00
osu-lazer/osu.Game/Rulesets/Edit/BeatmapVerifier.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.5 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 19:18:18 +08: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-20 07:36:03 +08:00
// Audio
new CheckAudioPresence(),
2021-04-25 11:34:54 +08:00
new CheckAudioQuality(),
2021-06-27 01:20:34 +08:00
new CheckMutedObjects(),
2021-06-27 01:20:46 +08:00
new CheckFewHitsounds(),
new CheckTooShortAudioFiles(),
2021-07-13 10:17:41 +08:00
new CheckAudioInVideo(),
2021-04-25 11:34:54 +08:00
2021-07-13 09:45:21 +08:00
// Files
new CheckZeroByteFiles(),
2021-04-25 11:34:54 +08:00
// Compose
new CheckUnsnappedObjects(),
2021-07-13 16:53:25 +08:00
new CheckConcurrentObjects(),
new CheckZeroLengthObjects(),
new CheckDrainLength(),
2023-01-18 23:37:36 +08:00
// Timing
new CheckPreviewTime(),
2023-07-17 04:03:21 +08:00
// Events
new CheckBreaks()
};
2021-05-13 17:24:22 +08:00
public IEnumerable<Issue> Run(BeatmapVerifierContext context)
{
2021-05-13 17:24:22 +08:00
return checks.SelectMany(check => check.Run(context));
}
}
}