// 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.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Effects; using osu.Framework.Graphics.Shapes; using osu.Game.Graphics; using osu.Game.Online.Leaderboards; using osu.Game.Scoring; using osuTK; namespace osu.Game.Screens.Ranking.Expanded.Accuracy { /// /// Contains a that is positioned around the . /// public class RankBadge : CompositeDrawable { /// /// The accuracy value corresponding to the displayed by this badge. /// public readonly double Accuracy; private readonly ScoreRank rank; private Drawable rankContainer; private Drawable overlay; /// /// Creates a new . /// /// The accuracy value corresponding to . /// The to be displayed in this . public RankBadge(double accuracy, ScoreRank rank) { Accuracy = accuracy; this.rank = rank; RelativeSizeAxes = Axes.Both; Alpha = 0; } [BackgroundDependencyLoader] private void load() { InternalChild = rankContainer = new Container { Origin = Anchor.Centre, Size = new Vector2(28, 14), Children = new[] { new DrawableRank(rank), overlay = new CircularContainer { RelativeSizeAxes = Axes.Both, Blending = BlendingParameters.Additive, Masking = true, EdgeEffect = new EdgeEffectParameters { Type = EdgeEffectType.Glow, Colour = OsuColour.ForRank(rank).Opacity(0.2f), Radius = 10, }, Child = new Box { RelativeSizeAxes = Axes.Both, Alpha = 0, AlwaysPresent = true, } } } }; } /// /// Shows this . /// public void Appear() { this.FadeIn(50); overlay.FadeIn().FadeOut(500, Easing.In); } protected override void Update() { base.Update(); // Starts at -90deg (top) and moves counter-clockwise by the accuracy rankContainer.Position = circlePosition(-MathF.PI / 2 - (1 - (float)Accuracy) * MathF.PI * 2); } private Vector2 circlePosition(float t) => DrawSize / 2 + new Vector2(MathF.Cos(t), MathF.Sin(t)) * DrawSize / 2; } }