mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 00:37:40 +08:00
51 lines
2.1 KiB
C#
51 lines
2.1 KiB
C#
// 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.Framework.Localisation;
|
|
|
|
namespace osu.Game.Beatmaps
|
|
{
|
|
public static class BeatmapInfoExtensions
|
|
{
|
|
/// <summary>
|
|
/// A user-presentable display title representing this beatmap.
|
|
/// </summary>
|
|
public static string GetDisplayTitle(this IBeatmapInfo beatmapInfo) => $"{beatmapInfo.Metadata.GetDisplayTitle()} {getVersionString(beatmapInfo)}".Trim();
|
|
|
|
/// <summary>
|
|
/// A user-presentable display title representing this beatmap, with localisation handling for potentially romanisable fields.
|
|
/// </summary>
|
|
public static RomanisableString GetDisplayTitleRomanisable(this IBeatmapInfo beatmapInfo, bool includeDifficultyName = true, bool includeCreator = true)
|
|
{
|
|
var metadata = beatmapInfo.Metadata.GetDisplayTitleRomanisable(includeCreator);
|
|
|
|
if (includeDifficultyName)
|
|
{
|
|
string versionString = getVersionString(beatmapInfo);
|
|
return new RomanisableString($"{metadata.GetPreferred(true)} {versionString}".Trim(), $"{metadata.GetPreferred(false)} {versionString}".Trim());
|
|
}
|
|
|
|
return new RomanisableString($"{metadata.GetPreferred(true)}".Trim(), $"{metadata.GetPreferred(false)}".Trim());
|
|
}
|
|
|
|
public static List<string> GetSearchableTerms(this IBeatmapInfo beatmapInfo)
|
|
{
|
|
var termsList = new List<string>(BeatmapMetadataInfoExtensions.MAX_SEARCHABLE_TERM_COUNT + 1);
|
|
|
|
addIfNotNull(beatmapInfo.DifficultyName);
|
|
|
|
BeatmapMetadataInfoExtensions.CollectSearchableTerms(beatmapInfo.Metadata, termsList);
|
|
return termsList;
|
|
|
|
void addIfNotNull(string? s)
|
|
{
|
|
if (!string.IsNullOrEmpty(s))
|
|
termsList.Add(s);
|
|
}
|
|
}
|
|
|
|
private static string getVersionString(IBeatmapInfo beatmapInfo) => string.IsNullOrEmpty(beatmapInfo.DifficultyName) ? string.Empty : $"[{beatmapInfo.DifficultyName}]";
|
|
}
|
|
}
|