2019-01-24 16:43:03 +08:00
|
|
|
|
// 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 17:19:50 +08:00
|
|
|
|
|
2020-10-19 13:05:28 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2021-10-10 16:41:16 +08:00
|
|
|
|
using osu.Framework.Extensions.LocalisationExtensions;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-24 04:37:08 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2020-08-04 01:14:17 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
2021-05-07 15:10:57 +08:00
|
|
|
|
public abstract class ScoreCounter : RollingCounter<double>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
protected override double RollingDuration => 1000;
|
|
|
|
|
protected override Easing RollingEasing => Easing.Out;
|
|
|
|
|
|
2020-10-19 13:05:28 +08:00
|
|
|
|
public Bindable<int> RequiredDisplayDigits { get; } = new Bindable<int>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-10-10 16:56:32 +08:00
|
|
|
|
private string formatString;
|
2021-10-10 16:41:16 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Displays score.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="leading">How many leading zeroes the counter will have.</param>
|
2021-10-10 16:56:32 +08:00
|
|
|
|
protected ScoreCounter(int leading = 0)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-10-19 13:05:28 +08:00
|
|
|
|
RequiredDisplayDigits.Value = leading;
|
2021-10-10 16:41:16 +08:00
|
|
|
|
RequiredDisplayDigits.BindValueChanged(displayDigitsChanged, true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-10 16:41:16 +08:00
|
|
|
|
private void displayDigitsChanged(ValueChangedEvent<int> _)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-10-10 16:41:16 +08:00
|
|
|
|
formatString = new string('0', RequiredDisplayDigits.Value);
|
|
|
|
|
UpdateDisplay();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-10 16:56:32 +08:00
|
|
|
|
protected override double GetProportionalDuration(double currentValue, double newValue) =>
|
|
|
|
|
currentValue > newValue ? currentValue - newValue : newValue - currentValue;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-10-10 16:41:16 +08:00
|
|
|
|
protected override LocalisableString FormatCount(double count) => ((long)count).ToLocalisableString(formatString);
|
|
|
|
|
|
2020-08-04 01:14:17 +08:00
|
|
|
|
protected override OsuSpriteText CreateSpriteText()
|
2020-08-19 12:44:45 +08:00
|
|
|
|
=> base.CreateSpriteText().With(s => s.Font = s.Font.With(fixedWidth: true));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|