// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Graphics; using osu.Game.Graphics.Sprites; using osu.Game.Graphics.UserInterface; using osu.Game.Screens.Ranking.Expanded.Accuracy; using osuTK; namespace osu.Game.Screens.Ranking.Expanded.Statistics { /// /// A to display general numeric values. /// public class CounterStatistic : StatisticDisplay { private readonly int count; private readonly int? maxCount; private RollingCounter counter; /// /// Creates a new . /// /// The name of the statistic. /// The value to display. /// The maximum value of . Not displayed if null. public CounterStatistic(string header, int count, int? maxCount = null) : base(header) { this.count = count; this.maxCount = maxCount; } public override void Appear() { base.Appear(); counter.Current.Value = count; } protected override Drawable CreateContent() { var container = new FillFlowContainer { AutoSizeAxes = Axes.Both, Direction = FillDirection.Horizontal, Child = counter = new Counter { Anchor = Anchor.TopCentre, Origin = Anchor.TopCentre } }; if (maxCount != null) { container.Add(new OsuSpriteText { Anchor = Anchor.BottomCentre, Origin = Anchor.BottomCentre, Font = OsuFont.Torus.With(size: 12, fixedWidth: true), Spacing = new Vector2(-2, 0), Text = $"/{maxCount}" }); } return container; } private class Counter : RollingCounter { protected override double RollingDuration => AccuracyCircle.ACCURACY_TRANSFORM_DURATION; protected override Easing RollingEasing => AccuracyCircle.ACCURACY_TRANSFORM_EASING; protected override OsuSpriteText CreateSpriteText() => base.CreateSpriteText().With(s => { s.Font = OsuFont.Torus.With(size: 20, fixedWidth: true); s.Spacing = new Vector2(-2, 0); }); } } }