mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 21:38:00 +08:00
56 lines
1.7 KiB
C#
56 lines
1.7 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.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public class ScoreCounter : RollingCounter<double>
|
|
{
|
|
protected override double RollingDuration => 1000;
|
|
protected override Easing RollingEasing => Easing.Out;
|
|
|
|
public bool UseCommaSeparator;
|
|
|
|
/// <summary>
|
|
/// How many leading zeroes the counter has.
|
|
/// </summary>
|
|
public uint LeadingZeroes { get; }
|
|
|
|
/// <summary>
|
|
/// Displays score.
|
|
/// </summary>
|
|
/// <param name="leading">How many leading zeroes the counter will have.</param>
|
|
public ScoreCounter(uint leading = 0)
|
|
{
|
|
LeadingZeroes = leading;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours) => Colour = colours.BlueLighter;
|
|
|
|
protected override double GetProportionalDuration(double currentValue, double newValue)
|
|
{
|
|
return currentValue > newValue ? currentValue - newValue : newValue - currentValue;
|
|
}
|
|
|
|
protected override string FormatCount(double count)
|
|
{
|
|
string format = new string('0', (int)LeadingZeroes);
|
|
|
|
if (UseCommaSeparator)
|
|
{
|
|
for (int i = format.Length - 3; i > 0; i -= 3)
|
|
format = format.Insert(i, @",");
|
|
}
|
|
|
|
return ((long)count).ToString(format);
|
|
}
|
|
|
|
protected override OsuSpriteText CreateSpriteText()
|
|
=> base.CreateSpriteText().With(s => s.Font = s.Font.With(fixedWidth: true));
|
|
}
|
|
}
|