mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 05:27:40 +08:00
62 lines
2.0 KiB
C#
62 lines
2.0 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 osu.Game.Beatmaps;
|
|
using osu.Game.Rulesets;
|
|
using osu.Game.Scoring;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Extensions
|
|
{
|
|
public static class ModelExtensions
|
|
{
|
|
/// <summary>
|
|
/// Returns a user-facing string representing the <paramref name="model"/>.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>
|
|
/// Non-interface types without special handling will fall back to <see cref="object.ToString()"/>.
|
|
/// </para>
|
|
/// <para>
|
|
/// Warning: This method is _purposefully_ not called <c>GetDisplayTitle()</c> like the others, because otherwise
|
|
/// extension method type inference rules cause this method to call itself and cause a stack overflow.
|
|
/// </para>
|
|
/// </remarks>
|
|
public static string GetDisplayString(this object model)
|
|
{
|
|
string result = null;
|
|
|
|
switch (model)
|
|
{
|
|
case IBeatmapSetInfo beatmapSetInfo:
|
|
result = beatmapSetInfo.Metadata?.GetDisplayTitle();
|
|
break;
|
|
|
|
case IBeatmapInfo beatmapInfo:
|
|
result = beatmapInfo.GetDisplayTitle();
|
|
break;
|
|
|
|
case IBeatmapMetadataInfo metadataInfo:
|
|
result = metadataInfo.GetDisplayTitle();
|
|
break;
|
|
|
|
case IScoreInfo scoreInfo:
|
|
result = scoreInfo.GetDisplayTitle();
|
|
break;
|
|
|
|
case IRulesetInfo rulesetInfo:
|
|
result = rulesetInfo.Name;
|
|
break;
|
|
|
|
case IUser user:
|
|
result = user.Username;
|
|
break;
|
|
}
|
|
|
|
// fallback in case none of the above happens to match.
|
|
result ??= model?.ToString() ?? @"null";
|
|
return result;
|
|
}
|
|
}
|
|
}
|