2021-10-05 13:41:14 +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.
|
|
|
|
|
2023-03-06 23:20:36 +08:00
|
|
|
using System.Collections.Generic;
|
2021-10-05 13:41:14 +08:00
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
{
|
|
|
|
public static class BeatmapInfoExtensions
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A user-presentable display title representing this beatmap.
|
|
|
|
/// </summary>
|
2021-11-09 20:51:18 +08:00
|
|
|
public static string GetDisplayTitle(this IBeatmapInfo beatmapInfo) => $"{beatmapInfo.Metadata.GetDisplayTitle()} {getVersionString(beatmapInfo)}".Trim();
|
2021-10-05 13:41:14 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A user-presentable display title representing this beatmap, with localisation handling for potentially romanisable fields.
|
|
|
|
/// </summary>
|
2021-11-01 13:33:24 +08:00
|
|
|
public static RomanisableString GetDisplayTitleRomanisable(this IBeatmapInfo beatmapInfo, bool includeDifficultyName = true, bool includeCreator = true)
|
2021-10-05 13:41:14 +08:00
|
|
|
{
|
2021-11-04 13:25:30 +08:00
|
|
|
var metadata = beatmapInfo.Metadata.GetDisplayTitleRomanisable(includeCreator);
|
2021-10-05 13:41:14 +08:00
|
|
|
|
2021-10-20 17:43:48 +08:00
|
|
|
if (includeDifficultyName)
|
|
|
|
{
|
2021-10-27 12:04:41 +08:00
|
|
|
string versionString = getVersionString(beatmapInfo);
|
2021-10-20 17:43:48 +08:00
|
|
|
return new RomanisableString($"{metadata.GetPreferred(true)} {versionString}".Trim(), $"{metadata.GetPreferred(false)} {versionString}".Trim());
|
|
|
|
}
|
|
|
|
|
|
|
|
return new RomanisableString($"{metadata.GetPreferred(true)}".Trim(), $"{metadata.GetPreferred(false)}".Trim());
|
2021-10-05 13:41:14 +08:00
|
|
|
}
|
|
|
|
|
2023-03-06 23:20:36 +08:00
|
|
|
public static List<string> GetSearchableTerms(this IBeatmapInfo beatmapInfo)
|
2021-10-05 13:41:14 +08:00
|
|
|
{
|
2023-03-06 23:20:36 +08:00
|
|
|
var termsList = new List<string>(BeatmapMetadataInfoExtensions.MAX_SEARCHABLE_TERM_COUNT + 1);
|
|
|
|
|
2023-03-04 22:42:35 +08:00
|
|
|
addIfNotNull(beatmapInfo.DifficultyName);
|
2023-03-06 23:20:36 +08:00
|
|
|
|
|
|
|
BeatmapMetadataInfoExtensions.CollectSearchableTerms(beatmapInfo.Metadata, termsList);
|
|
|
|
return termsList;
|
2023-03-04 22:42:35 +08:00
|
|
|
|
|
|
|
void addIfNotNull(string? s)
|
|
|
|
{
|
|
|
|
if (!string.IsNullOrEmpty(s))
|
2023-03-06 23:20:36 +08:00
|
|
|
termsList.Add(s);
|
2023-03-04 22:42:35 +08:00
|
|
|
}
|
2023-03-04 02:21:50 +08:00
|
|
|
}
|
2021-10-05 13:41:14 +08:00
|
|
|
|
|
|
|
private static string getVersionString(IBeatmapInfo beatmapInfo) => string.IsNullOrEmpty(beatmapInfo.DifficultyName) ? string.Empty : $"[{beatmapInfo.DifficultyName}]";
|
|
|
|
}
|
|
|
|
}
|