2021-04-20 07:36:03 +08: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 osu.Game.Rulesets.Edit.Checks.Components;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Edit.Checks
|
|
|
|
{
|
|
|
|
public class CheckAudioQuality : ICheck
|
|
|
|
{
|
|
|
|
// This is a requirement as stated in the Ranking Criteria.
|
|
|
|
// See https://osu.ppy.sh/wiki/en/Ranking_Criteria#rules.4
|
|
|
|
private const int max_bitrate = 192;
|
|
|
|
|
|
|
|
// "A song's audio file /.../ must be of reasonable quality. Try to find the highest quality source file available"
|
|
|
|
// There not existing a version with a bitrate of 128 kbps or higher is extremely rare.
|
|
|
|
private const int min_bitrate = 128;
|
|
|
|
|
2021-04-20 08:13:26 +08:00
|
|
|
public CheckMetadata Metadata { get; } = new CheckMetadata(CheckCategory.Audio, "Too high or low audio bitrate");
|
2021-04-20 07:36:03 +08:00
|
|
|
|
|
|
|
public IEnumerable<IssueTemplate> PossibleTemplates => new IssueTemplate[]
|
|
|
|
{
|
|
|
|
new IssueTemplateTooHighBitrate(this),
|
|
|
|
new IssueTemplateTooLowBitrate(this),
|
|
|
|
new IssueTemplateNoBitrate(this)
|
|
|
|
};
|
|
|
|
|
2021-05-13 17:24:22 +08:00
|
|
|
public IEnumerable<Issue> Run(BeatmapVerifierContext context)
|
2021-04-20 07:36:03 +08:00
|
|
|
{
|
2022-10-30 16:28:49 +08:00
|
|
|
string? audioFile = context.Beatmap.Metadata?.AudioFile;
|
2021-11-04 13:11:21 +08:00
|
|
|
if (string.IsNullOrEmpty(audioFile))
|
2021-04-20 07:36:03 +08:00
|
|
|
yield break;
|
|
|
|
|
2021-05-12 08:29:18 +08:00
|
|
|
var track = context.WorkingBeatmap.Track;
|
2021-04-20 07:36:03 +08:00
|
|
|
|
|
|
|
if (track?.Bitrate == null || track.Bitrate.Value == 0)
|
|
|
|
yield return new IssueTemplateNoBitrate(this).Create();
|
|
|
|
else if (track.Bitrate.Value > max_bitrate)
|
|
|
|
yield return new IssueTemplateTooHighBitrate(this).Create(track.Bitrate.Value);
|
|
|
|
else if (track.Bitrate.Value < min_bitrate)
|
|
|
|
yield return new IssueTemplateTooLowBitrate(this).Create(track.Bitrate.Value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public class IssueTemplateTooHighBitrate : IssueTemplate
|
|
|
|
{
|
|
|
|
public IssueTemplateTooHighBitrate(ICheck check)
|
|
|
|
: base(check, IssueType.Problem, "The audio bitrate ({0} kbps) exceeds {1} kbps.")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public Issue Create(int bitrate) => new Issue(this, bitrate, max_bitrate);
|
|
|
|
}
|
|
|
|
|
|
|
|
public class IssueTemplateTooLowBitrate : IssueTemplate
|
|
|
|
{
|
|
|
|
public IssueTemplateTooLowBitrate(ICheck check)
|
|
|
|
: base(check, IssueType.Problem, "The audio bitrate ({0} kbps) is lower than {1} kbps.")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public Issue Create(int bitrate) => new Issue(this, bitrate, min_bitrate);
|
|
|
|
}
|
|
|
|
|
|
|
|
public class IssueTemplateNoBitrate : IssueTemplate
|
|
|
|
{
|
|
|
|
public IssueTemplateNoBitrate(ICheck check)
|
|
|
|
: base(check, IssueType.Error, "The audio bitrate could not be retrieved.")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public Issue Create() => new Issue(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|