2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-10-07 07:24:46 +00:00
|
|
|
|
|
2016-10-13 22:13:20 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-10-07 07:05:02 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
2017-03-10 04:08:59 +00:00
|
|
|
|
public class ScoreCounter : RollingCounter<double>
|
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;
|
2016-10-13 22:13:20 +00:00
|
|
|
|
|
2017-04-14 11:09:01 +00:00
|
|
|
|
public bool UseCommaSeparator;
|
|
|
|
|
|
2016-10-07 07:05:02 +00:00
|
|
|
|
/// <summary>
|
2016-10-13 01:57:06 +00:00
|
|
|
|
/// How many leading zeroes the counter has.
|
2016-10-07 07:05:02 +00:00
|
|
|
|
/// </summary>
|
2016-10-13 01:57:06 +00:00
|
|
|
|
public uint LeadingZeroes
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
protected set;
|
|
|
|
|
}
|
2016-10-07 07:05:02 +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>
|
2016-10-13 02:46:51 +00:00
|
|
|
|
public ScoreCounter(uint leading = 0)
|
2016-10-12 19:33:04 +00:00
|
|
|
|
{
|
2016-10-16 00:07:07 +00:00
|
|
|
|
DisplayedCountSpriteText.FixedWidth = true;
|
2016-10-13 01:57:06 +00:00
|
|
|
|
LeadingZeroes = leading;
|
2016-10-12 19:33:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-10 04:08:59 +00:00
|
|
|
|
protected override double GetProportionalDuration(double currentValue, double newValue)
|
2016-10-13 22:13:20 +00:00
|
|
|
|
{
|
|
|
|
|
return currentValue > newValue ? currentValue - newValue : newValue - currentValue;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-10 04:08:59 +00:00
|
|
|
|
protected override string FormatCount(double count)
|
2016-10-07 07:05:02 +00:00
|
|
|
|
{
|
2017-04-12 11:28:04 +00:00
|
|
|
|
string format = new string('0', (int)LeadingZeroes);
|
2017-04-14 11:09:01 +00:00
|
|
|
|
if (UseCommaSeparator)
|
|
|
|
|
for (int i = format.Length - 3; i > 0; i -= 3)
|
|
|
|
|
format = format.Insert(i, @",");
|
2017-04-12 11:28:04 +00:00
|
|
|
|
|
|
|
|
|
return ((long)count).ToString(format);
|
2016-10-07 07:05:02 +00:00
|
|
|
|
}
|
2016-10-13 22:13:20 +00:00
|
|
|
|
|
2017-03-10 04:08:59 +00:00
|
|
|
|
public override void Increment(double amount)
|
2016-10-19 10:44:03 +00:00
|
|
|
|
{
|
2017-03-10 04:08:59 +00:00
|
|
|
|
Current.Value = Current + amount;
|
2016-10-19 10:44:03 +00:00
|
|
|
|
}
|
2016-10-07 07:05:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|