// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using osu.Game.Extensions; using osu.Game.Rulesets.Objects; namespace osu.Game.Rulesets.Edit.Checks.Components { public class Issue { /// /// The time which this issue is associated with, if any, otherwise null. /// public double? Time; /// /// The hitobjects which this issue is associated with. Empty by default. /// public IReadOnlyList HitObjects; /// /// The template which this issue is using. This provides properties /// such as the , and the /// . /// public IssueTemplate Template; /// /// The arguments that give this issue its context, based on the /// . These are then substituted into the /// . /// E.g. timestamps, which diff is being compared to, what some volume is, etc. /// public object[] Arguments; public Issue(IssueTemplate template, params object[] args) { Time = null; HitObjects = Array.Empty(); Template = template; Arguments = args; if (template.Origin == null) { throw new ArgumentException( "A template had no origin. Make sure the `Templates()` method contains all templates used." ); } } public Issue(double? time, IssueTemplate template, params object[] args) : this(template, args) { Time = time; } public Issue(HitObject hitObject, IssueTemplate template, params object[] args) : this(template, args) { Time = hitObject.StartTime; HitObjects = new[] { hitObject }; } public Issue(IEnumerable hitObjects, IssueTemplate template, params object[] args) : this(template, args) { var hitObjectList = hitObjects.ToList(); Time = hitObjectList.FirstOrDefault()?.StartTime; HitObjects = hitObjectList; } public override string ToString() { return Template.Message(Arguments); } public string GetEditorTimestamp() { return Time == null ? string.Empty : Time.Value.ToEditorFormattedString(); } } }