1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 00:17:21 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.6 KiB
C#
Raw Normal View History

// 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.
2018-04-13 18:19:50 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
using osu.Framework.Bindables;
2016-10-13 17:13:20 -05:00
using osu.Framework.Graphics;
2021-07-23 22:37:08 +02:00
using osu.Framework.Localisation;
using osu.Game.Graphics.Sprites;
2018-04-13 18:19:50 +09:00
2016-10-07 02:05:02 -05:00
namespace osu.Game.Graphics.UserInterface
{
2022-11-06 19:59:27 -03:00
public abstract partial class ScoreCounter : RollingCounter<long>
2016-10-07 02:05:02 -05:00
{
2016-10-17 21:40:50 -05:00
protected override double RollingDuration => 1000;
2017-07-22 20:50:25 +02:00
protected override Easing RollingEasing => Easing.Out;
2018-04-13 18:19:50 +09:00
public Bindable<int> RequiredDisplayDigits { get; } = new Bindable<int>();
2018-04-13 18:19:50 +09:00
private string formatString;
/// <summary>
/// Displays score.
/// </summary>
/// <param name="leading">How many leading zeroes the counter will have.</param>
protected ScoreCounter(int leading = 0)
2016-10-12 14:33:04 -05:00
{
RequiredDisplayDigits.Value = leading;
RequiredDisplayDigits.BindValueChanged(displayDigitsChanged, true);
2016-10-12 14:33:04 -05:00
}
2018-04-13 18:19:50 +09:00
private void displayDigitsChanged(ValueChangedEvent<int> _)
2016-10-13 17:13:20 -05:00
{
formatString = new string('0', RequiredDisplayDigits.Value);
UpdateDisplay();
2016-10-13 17:13:20 -05:00
}
2018-04-13 18:19:50 +09:00
2022-11-06 19:59:27 -03:00
protected override double GetProportionalDuration(long currentValue, long newValue) =>
currentValue > newValue ? currentValue - newValue : newValue - currentValue;
2018-04-13 18:19:50 +09:00
protected override LocalisableString FormatCount(long count) => count.ToString(formatString);
protected override OsuSpriteText CreateSpriteText()
=> base.CreateSpriteText().With(s => s.Font = s.Font.With(fixedWidth: true));
2016-10-07 02:05:02 -05:00
}
}