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
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
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;
|
2016-10-13 22:13:20 +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
|
|
|
|
|
2016-10-07 07:05:02 +00:00
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
2022-11-06 22:59:27 +00:00
|
|
|
|
public abstract partial class ScoreCounter : RollingCounter<long>
|
2016-10-07 07:05:02 +00:00
|
|
|
|
{
|
2016-10-18 02:40:50 +00:00
|
|
|
|
protected override double RollingDuration => 1000;
|
2017-07-22 18:50:25 +00:00
|
|
|
|
protected override Easing RollingEasing => Easing.Out;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
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
|
|
|
|
|
2016-10-13 01:57:06 +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)
|
2016-10-12 19:33:04 +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);
|
2016-10-12 19:33:04 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-10-10 08:41:16 +00:00
|
|
|
|
private void displayDigitsChanged(ValueChangedEvent<int> _)
|
2016-10-13 22:13:20 +00:00
|
|
|
|
{
|
2021-10-10 08:41:16 +00:00
|
|
|
|
formatString = new string('0', RequiredDisplayDigits.Value);
|
|
|
|
|
UpdateDisplay();
|
2016-10-13 22:13:20 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-11-06 22:59:27 +00:00
|
|
|
|
protected override double GetProportionalDuration(long currentValue, long newValue) =>
|
2021-10-10 08:56:32 +00:00
|
|
|
|
currentValue > newValue ? currentValue - newValue : newValue - currentValue;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-11-06 22:59:27 +00:00
|
|
|
|
protected override LocalisableString FormatCount(long count) => count.ToLocalisableString(formatString);
|
2021-10-10 08:41:16 +00:00
|
|
|
|
|
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));
|
2016-10-07 07:05:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|