mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 15:07:44 +08:00
32 lines
1.1 KiB
C#
32 lines
1.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;
|
|
using Humanizer;
|
|
|
|
namespace osu.Game.Utils
|
|
{
|
|
public static class FormatUtils
|
|
{
|
|
/// <summary>
|
|
/// Turns the provided accuracy into a percentage with 2 decimal places.
|
|
/// </summary>
|
|
/// <param name="accuracy">The accuracy to be formatted</param>
|
|
/// <returns>formatted accuracy in percentage</returns>
|
|
public static string FormatAccuracy(this double accuracy)
|
|
{
|
|
// we don't ever want to show 100% when the accuracy is below perfect, even if it rounds to 100%.
|
|
if (accuracy < 1 && accuracy > 0.9999)
|
|
accuracy = 0.9999;
|
|
|
|
return $"{accuracy:0.00%}";
|
|
}
|
|
|
|
/// <summary>
|
|
/// Formats the supplied rank/leaderboard position in a consistent, simplified way.
|
|
/// </summary>
|
|
/// <param name="rank">The rank/position to be formatted.</param>
|
|
public static string FormatRank(this int rank) => rank.ToMetric(decimals: rank < 100_000 ? 1 : 0);
|
|
}
|
|
}
|