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

60 lines
1.7 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 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(),
2024-03-23 19:22:47 -03:00
new CheckVideoResolution(),
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(),
new CheckDelayedHitsounds(),
2024-04-16 06:15:21 -03:00
new CheckSongFormat(),
new CheckHitsoundsFormat(),
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(),
new CheckDrainLength(),
new CheckUnusedAudioAtEnd(),
2023-01-19 00:37:36 +09:00
// Timing
new CheckPreviewTime(),
2023-07-16 23:03:21 +03:00
// Events
new CheckBreaks(),
2024-07-02 17:20:00 -03:00
// Metadata
new CheckTitleMarkers(),
};
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));
}
}
}