// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Game.Graphics.Sprites; namespace osu.Game.Graphics.UserInterface { /// /// Used as an accuracy counter. Represented visually as a percentage. /// public class SimpleComboCounter : RollingCounter { protected override double RollingDuration => 750; public SimpleComboCounter() { Current.Value = DisplayedCount = 0; } [BackgroundDependencyLoader] private void load(OsuColour colours) => Colour = colours.BlueLighter; protected override string FormatCount(int count) { return $@"{count}x"; } protected override double GetProportionalDuration(int currentValue, int newValue) { return Math.Abs(currentValue - newValue) * RollingDuration * 100.0f; } protected override OsuSpriteText CreateSpriteText() => base.CreateSpriteText().With(s => s.Font = s.Font.With(size: 20f)); } }