1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game/Skinning/LegacyRollingCounter.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.1 KiB
C#
Raw Normal View History

2020-09-13 04:34:57 +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.
using System;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Skinning
{
/// <summary>
/// An integer <see cref="RollingCounter{T}"/> that uses number sprites from a legacy skin.
/// </summary>
public partial class LegacyRollingCounter : RollingCounter<int>
{
2021-03-07 07:28:08 +08:00
private readonly LegacyFont font;
2020-09-13 04:34:57 +08:00
protected override bool IsRollingProportional => true;
/// <summary>
/// Creates a new <see cref="LegacyRollingCounter"/>.
/// </summary>
2021-03-07 07:28:08 +08:00
/// <param name="font">The legacy font to use for the counter.</param>
public LegacyRollingCounter(LegacyFont font)
2020-09-13 04:34:57 +08:00
{
2021-03-07 07:28:08 +08:00
this.font = font;
2020-09-13 04:34:57 +08:00
}
protected override double GetProportionalDuration(int currentValue, int newValue)
{
return Math.Abs(newValue - currentValue) * 75.0;
}
protected sealed override OsuSpriteText CreateSpriteText() => new LegacySpriteText(font);
2020-09-13 04:34:57 +08:00
}
}