2017-02-07 12:59:30 +08: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-14 06:13:20 +08:00
|
|
|
|
|
2017-03-10 12:08:59 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
2016-10-12 15:11:40 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-10-07 15:05:02 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2016-10-14 06:13:20 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-03-10 12:08:59 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2016-10-07 15:05:02 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2017-04-13 09:04:12 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2016-10-07 15:05:02 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
2017-04-13 09:04:12 +08:00
|
|
|
|
public abstract class RollingCounter<T> : Container, IHasAccentColour
|
2017-07-14 21:46:00 +08:00
|
|
|
|
where T : struct, IEquatable<T>
|
2016-10-07 15:05:02 +08:00
|
|
|
|
{
|
2017-03-10 12:08:59 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The current value.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Bindable<T> Current = new Bindable<T>();
|
|
|
|
|
|
2016-10-16 08:07:07 +08:00
|
|
|
|
protected SpriteText DisplayedCountSpriteText;
|
2016-10-07 15:05:02 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2016-10-14 08:50:06 +08:00
|
|
|
|
/// If true, the roll-up duration will be proportional to change in value.
|
2016-10-07 15:05:02 +08:00
|
|
|
|
/// </summary>
|
2016-10-18 10:40:50 +08:00
|
|
|
|
protected virtual bool IsRollingProportional => false;
|
2016-10-07 15:05:02 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2016-10-10 03:48:24 +08:00
|
|
|
|
/// If IsRollingProportional = false, duration in milliseconds for the counter roll-up animation for each
|
|
|
|
|
/// element; else duration in milliseconds for the counter roll-up animation in total.
|
2016-10-07 15:05:02 +08:00
|
|
|
|
/// </summary>
|
2016-10-18 10:40:50 +08:00
|
|
|
|
protected virtual double RollingDuration => 0;
|
2016-10-07 15:05:02 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Easing for the counter rollover animation.
|
|
|
|
|
/// </summary>
|
2017-07-23 02:50:25 +08:00
|
|
|
|
protected virtual Easing RollingEasing => Easing.OutQuint;
|
2016-10-07 15:05:02 +08:00
|
|
|
|
|
2016-10-16 08:07:07 +08:00
|
|
|
|
private T displayedCount;
|
2016-10-07 15:05:02 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Value shown at the current moment.
|
|
|
|
|
/// </summary>
|
2016-10-16 08:07:07 +08:00
|
|
|
|
public virtual T DisplayedCount
|
2016-10-07 15:05:02 +08:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-10-16 08:07:07 +08:00
|
|
|
|
return displayedCount;
|
2016-10-07 15:05:02 +08:00
|
|
|
|
}
|
2017-07-15 00:14:07 +08:00
|
|
|
|
|
|
|
|
|
set
|
2016-10-07 15:05:02 +08:00
|
|
|
|
{
|
2016-11-14 06:00:27 +08:00
|
|
|
|
if (EqualityComparer<T>.Default.Equals(displayedCount, value))
|
2016-10-07 15:05:02 +08:00
|
|
|
|
return;
|
2016-10-16 08:07:07 +08:00
|
|
|
|
displayedCount = value;
|
|
|
|
|
DisplayedCountSpriteText.Text = FormatCount(value);
|
2016-10-07 15:05:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-19 18:44:03 +08:00
|
|
|
|
public abstract void Increment(T amount);
|
|
|
|
|
|
2017-02-07 15:15:45 +08:00
|
|
|
|
private float textSize;
|
2016-10-14 06:13:20 +08:00
|
|
|
|
|
|
|
|
|
public float TextSize
|
|
|
|
|
{
|
|
|
|
|
get { return textSize; }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
textSize = value;
|
2016-10-16 08:07:07 +08:00
|
|
|
|
DisplayedCountSpriteText.TextSize = value;
|
2016-10-14 06:13:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-13 09:04:12 +08:00
|
|
|
|
public Color4 AccentColour
|
|
|
|
|
{
|
|
|
|
|
get { return DisplayedCountSpriteText.Colour; }
|
|
|
|
|
set { DisplayedCountSpriteText.Colour = value; }
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-14 06:13:20 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Skeleton of a numeric counter which value rolls over time.
|
|
|
|
|
/// </summary>
|
2016-10-13 10:46:51 +08:00
|
|
|
|
protected RollingCounter()
|
2016-10-08 05:59:52 +08:00
|
|
|
|
{
|
2016-10-14 06:13:20 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
DisplayedCountSpriteText = new OsuSpriteText
|
2017-02-16 21:44:41 +08:00
|
|
|
|
{
|
|
|
|
|
Font = @"Venera"
|
|
|
|
|
},
|
2016-10-14 06:13:20 +08:00
|
|
|
|
};
|
2016-10-19 18:44:03 +08:00
|
|
|
|
|
|
|
|
|
TextSize = 40;
|
2016-10-22 16:50:42 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both;
|
2016-10-08 05:59:52 +08:00
|
|
|
|
|
2017-03-10 12:08:59 +08:00
|
|
|
|
DisplayedCount = Current;
|
|
|
|
|
|
2017-04-03 18:34:00 +08:00
|
|
|
|
Current.ValueChanged += newValue =>
|
|
|
|
|
{
|
|
|
|
|
if (IsLoaded) TransformCount(displayedCount, newValue);
|
|
|
|
|
};
|
2016-10-07 15:05:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-06 18:13:52 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2017-03-10 12:08:59 +08:00
|
|
|
|
DisplayedCountSpriteText.Text = FormatCount(Current);
|
2016-11-06 18:13:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-08 05:59:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets count value, bypassing rollover animation.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="count">New count value.</param>
|
|
|
|
|
public virtual void SetCountWithoutRolling(T count)
|
|
|
|
|
{
|
2017-03-10 12:08:59 +08:00
|
|
|
|
Current.Value = count;
|
2016-10-08 05:59:52 +08:00
|
|
|
|
StopRolling();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2016-10-16 08:07:07 +08:00
|
|
|
|
/// Stops rollover animation, forcing the displayed count to be the actual count.
|
2016-10-08 05:59:52 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual void StopRolling()
|
|
|
|
|
{
|
2017-07-21 23:24:09 +08:00
|
|
|
|
FinishTransforms(false, nameof(DisplayedCount));
|
2017-03-10 12:08:59 +08:00
|
|
|
|
DisplayedCount = Current;
|
2016-10-08 05:59:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resets count to default value.
|
|
|
|
|
/// </summary>
|
2016-10-14 06:13:20 +08:00
|
|
|
|
public virtual void ResetCount()
|
|
|
|
|
{
|
|
|
|
|
SetCountWithoutRolling(default(T));
|
|
|
|
|
}
|
2016-10-08 05:59:52 +08:00
|
|
|
|
|
2016-10-07 15:05:02 +08:00
|
|
|
|
/// <summary>
|
2016-10-08 05:14:35 +08:00
|
|
|
|
/// Calculates the duration of the roll-up animation by using the difference between the current visible value
|
|
|
|
|
/// and the new final value.
|
2016-10-07 15:05:02 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
2016-10-08 05:59:52 +08:00
|
|
|
|
/// To be used in conjunction with IsRollingProportional = true.
|
2016-10-08 05:14:35 +08:00
|
|
|
|
/// Unless a derived class needs to have a proportional rolling, it is not necessary to override this function.
|
2016-10-07 15:05:02 +08:00
|
|
|
|
/// </remarks>
|
|
|
|
|
/// <param name="currentValue">Current visible value.</param>
|
|
|
|
|
/// <param name="newValue">New final value.</param>
|
|
|
|
|
/// <returns>Calculated rollover duration in milliseconds.</returns>
|
2016-10-15 07:23:27 +08:00
|
|
|
|
protected virtual double GetProportionalDuration(T currentValue, T newValue)
|
2016-10-07 15:05:02 +08:00
|
|
|
|
{
|
|
|
|
|
return RollingDuration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Used to format counts.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="count">Count to format.</param>
|
|
|
|
|
/// <returns>Count formatted as a string.</returns>
|
2016-10-15 07:23:27 +08:00
|
|
|
|
protected virtual string FormatCount(T count)
|
2016-10-07 15:05:02 +08:00
|
|
|
|
{
|
|
|
|
|
return count.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2016-10-08 05:14:35 +08:00
|
|
|
|
/// Called when the count is updated to add a transformer that changes the value of the visible count (i.e.
|
|
|
|
|
/// implement the rollover animation).
|
2016-10-07 15:05:02 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="currentValue">Count value before modification.</param>
|
2017-07-22 17:15:31 +08:00
|
|
|
|
/// <param name="newValue">Expected count value after modification.</param>
|
2016-10-15 07:23:27 +08:00
|
|
|
|
protected virtual void TransformCount(T currentValue, T newValue)
|
2016-10-07 15:05:02 +08:00
|
|
|
|
{
|
2016-10-14 11:54:02 +08:00
|
|
|
|
double rollingTotalDuration =
|
|
|
|
|
IsRollingProportional
|
2016-10-15 07:23:27 +08:00
|
|
|
|
? GetProportionalDuration(currentValue, newValue)
|
2016-10-14 11:54:02 +08:00
|
|
|
|
: RollingDuration;
|
|
|
|
|
|
2017-07-16 18:59:26 +08:00
|
|
|
|
this.TransformTo(nameof(DisplayedCount), newValue, rollingTotalDuration, RollingEasing);
|
2016-10-07 15:05:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|