2021-04-10 19:03:16 +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.Beatmaps;
|
|
|
|
using osu.Game.Rulesets.Edit.Checks.Components;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Edit.Checks
|
|
|
|
{
|
2021-04-18 08:07:33 +08:00
|
|
|
public abstract class CheckFilePresence : ICheck
|
2021-04-10 19:03:16 +08:00
|
|
|
{
|
2021-04-18 08:07:33 +08:00
|
|
|
protected abstract CheckCategory Category { get; }
|
|
|
|
protected abstract string TypeOfFile { get; }
|
2021-04-20 07:33:19 +08:00
|
|
|
protected abstract string GetFilename(IBeatmap playableBeatmap);
|
2021-04-18 08:07:33 +08:00
|
|
|
|
|
|
|
public CheckMetadata Metadata => new CheckMetadata(Category, $"Missing {TypeOfFile}");
|
2021-04-10 19:03:16 +08:00
|
|
|
|
2021-04-12 23:12:37 +08:00
|
|
|
public IEnumerable<IssueTemplate> PossibleTemplates => new IssueTemplate[]
|
|
|
|
{
|
|
|
|
new IssueTemplateNoneSet(this),
|
|
|
|
new IssueTemplateDoesNotExist(this)
|
|
|
|
};
|
2021-04-12 21:47:26 +08:00
|
|
|
|
2021-04-20 07:31:51 +08:00
|
|
|
public IEnumerable<Issue> Run(IBeatmap playableBeatmap, IWorkingBeatmap workingBeatmap)
|
2021-04-10 19:03:16 +08:00
|
|
|
{
|
2021-04-20 07:33:19 +08:00
|
|
|
var filename = GetFilename(playableBeatmap);
|
2021-04-18 07:19:25 +08:00
|
|
|
|
2021-04-18 08:07:33 +08:00
|
|
|
if (filename == null)
|
2021-04-10 19:03:16 +08:00
|
|
|
{
|
2021-04-18 08:07:33 +08:00
|
|
|
yield return new IssueTemplateNoneSet(this).Create(TypeOfFile);
|
2021-04-10 19:03:16 +08:00
|
|
|
|
|
|
|
yield break;
|
|
|
|
}
|
|
|
|
|
2021-04-18 08:07:33 +08:00
|
|
|
// If the file is set, also make sure it still exists.
|
2021-04-20 07:31:51 +08:00
|
|
|
var storagePath = playableBeatmap.BeatmapInfo.BeatmapSet.GetPathForFile(filename);
|
2021-04-18 07:19:25 +08:00
|
|
|
if (storagePath != null)
|
2021-04-10 19:03:16 +08:00
|
|
|
yield break;
|
|
|
|
|
2021-04-18 08:07:33 +08:00
|
|
|
yield return new IssueTemplateDoesNotExist(this).Create(TypeOfFile, filename);
|
2021-04-10 19:03:16 +08:00
|
|
|
}
|
2021-04-12 22:36:10 +08:00
|
|
|
|
2021-04-13 08:29:25 +08:00
|
|
|
public class IssueTemplateNoneSet : IssueTemplate
|
2021-04-12 22:36:10 +08:00
|
|
|
{
|
2021-04-12 23:28:12 +08:00
|
|
|
public IssueTemplateNoneSet(ICheck check)
|
2021-04-18 08:07:33 +08:00
|
|
|
: base(check, IssueType.Problem, "No {0} has been set.")
|
2021-04-12 22:36:10 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-04-18 08:07:33 +08:00
|
|
|
public Issue Create(string typeOfFile) => new Issue(this, typeOfFile);
|
2021-04-12 22:36:10 +08:00
|
|
|
}
|
|
|
|
|
2021-04-13 08:29:25 +08:00
|
|
|
public class IssueTemplateDoesNotExist : IssueTemplate
|
2021-04-12 22:36:10 +08:00
|
|
|
{
|
2021-04-12 23:28:12 +08:00
|
|
|
public IssueTemplateDoesNotExist(ICheck check)
|
2021-04-18 08:07:33 +08:00
|
|
|
: base(check, IssueType.Problem, "The {0} file \"{1}\" does not exist.")
|
2021-04-12 22:36:10 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-04-18 08:07:33 +08:00
|
|
|
public Issue Create(string typeOfFile, string filename) => new Issue(this, typeOfFile, filename);
|
2021-04-12 22:36:10 +08:00
|
|
|
}
|
2021-04-10 19:03:16 +08:00
|
|
|
}
|
|
|
|
}
|