// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using osu.Framework.Localisation; using osu.Game.Screens.Select; namespace osu.Game.Beatmaps { public static class BeatmapMetadataInfoExtensions { internal const int MAX_SEARCHABLE_TERM_COUNT = 7; /// /// An array of all searchable terms provided in contained metadata. /// public static string[] GetSearchableTerms(this IBeatmapMetadataInfo metadataInfo) { var termsList = new List(MAX_SEARCHABLE_TERM_COUNT); CollectSearchableTerms(metadataInfo, termsList); return termsList.ToArray(); } public static bool Match(IBeatmapMetadataInfo metadataInfo, FilterCriteria.OptionalTextFilter filter) { if (filter.Matches(metadataInfo.Author.Username)) return true; if (filter.Matches(metadataInfo.Artist)) return true; if (filter.Matches(metadataInfo.ArtistUnicode)) return true; if (filter.Matches(metadataInfo.Title)) return true; if (filter.Matches(metadataInfo.TitleUnicode)) return true; if (filter.Matches(metadataInfo.Source)) return true; if (filter.Matches(metadataInfo.Tags)) return true; return false; } internal static void CollectSearchableTerms(IBeatmapMetadataInfo metadataInfo, IList termsList) { addIfNotNull(metadataInfo.Author.Username); addIfNotNull(metadataInfo.Artist); addIfNotNull(metadataInfo.ArtistUnicode); addIfNotNull(metadataInfo.Title); addIfNotNull(metadataInfo.TitleUnicode); addIfNotNull(metadataInfo.Source); addIfNotNull(metadataInfo.Tags); void addIfNotNull(string s) { if (!string.IsNullOrEmpty(s)) termsList.Add(s); } } /// /// A user-presentable display title representing this metadata. /// public static string GetDisplayTitle(this IBeatmapMetadataInfo metadataInfo) { string author = string.IsNullOrEmpty(metadataInfo.Author.Username) ? string.Empty : $" ({metadataInfo.Author.Username})"; string artist = string.IsNullOrEmpty(metadataInfo.Artist) ? "unknown artist" : metadataInfo.Artist; string title = string.IsNullOrEmpty(metadataInfo.Title) ? "unknown title" : metadataInfo.Title; return $"{artist} - {title}{author}".Trim(); } /// /// A user-presentable display title representing this beatmap, with localisation handling for potentially romanisable fields. /// public static RomanisableString GetDisplayTitleRomanisable(this IBeatmapMetadataInfo metadataInfo, bool includeCreator = true) { string author = !includeCreator || string.IsNullOrEmpty(metadataInfo.Author.Username) ? string.Empty : $"({metadataInfo.Author.Username})"; string artistUnicode = string.IsNullOrEmpty(metadataInfo.ArtistUnicode) ? metadataInfo.Artist : metadataInfo.ArtistUnicode; string titleUnicode = string.IsNullOrEmpty(metadataInfo.TitleUnicode) ? metadataInfo.Title : metadataInfo.TitleUnicode; return new RomanisableString($"{artistUnicode} - {titleUnicode} {author}".Trim(), $"{metadataInfo.Artist} - {metadataInfo.Title} {author}".Trim()); } } }