2020-10-15 15:32:20 +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 osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2021-04-28 17:34:34 +08:00
|
|
|
using osu.Game.Screens.Play.HUD;
|
2020-10-16 17:37:24 +08:00
|
|
|
using osuTK;
|
2020-10-15 15:32:20 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
2021-04-28 17:34:34 +08:00
|
|
|
public class LegacyScoreCounter : ScoreCounter, ISkinnableComponent
|
2020-10-15 15:32:20 +08:00
|
|
|
{
|
|
|
|
private readonly ISkin skin;
|
|
|
|
|
|
|
|
protected override double RollingDuration => 1000;
|
|
|
|
protected override Easing RollingEasing => Easing.Out;
|
|
|
|
|
|
|
|
public new Bindable<double> Current { get; } = new Bindable<double>();
|
|
|
|
|
|
|
|
public LegacyScoreCounter(ISkin skin)
|
|
|
|
: base(6)
|
|
|
|
{
|
|
|
|
Anchor = Anchor.TopRight;
|
|
|
|
Origin = Anchor.TopRight;
|
|
|
|
|
|
|
|
this.skin = skin;
|
|
|
|
|
2020-10-16 12:16:20 +08:00
|
|
|
// base class uses int for display, but externally we bind to ScoreProcessor as a double for now.
|
2020-10-15 15:32:20 +08:00
|
|
|
Current.BindValueChanged(v => base.Current.Value = (int)v.NewValue);
|
|
|
|
|
2020-10-16 17:37:24 +08:00
|
|
|
Scale = new Vector2(0.96f);
|
2020-10-15 15:56:05 +08:00
|
|
|
Margin = new MarginPadding(10);
|
2020-10-15 15:32:20 +08:00
|
|
|
}
|
|
|
|
|
2021-03-07 07:18:31 +08:00
|
|
|
protected sealed override OsuSpriteText CreateSpriteText() => new LegacySpriteText(skin, LegacyFont.Score)
|
|
|
|
{
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
};
|
2020-10-15 15:32:20 +08:00
|
|
|
}
|
|
|
|
}
|