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