1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 21:17:18 +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.

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