// 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 System.Globalization; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Graphics; using osu.Game.Graphics.Sprites; using osu.Game.Rulesets.Objects.Drawables; using osu.Game.Rulesets.Osu.Objects.Drawables; namespace osu.Game.Rulesets.Osu.Skinning.Default { public partial class DefaultSpinner : CompositeDrawable { private DrawableSpinner drawableSpinner = null!; private OsuSpriteText bonusCounter = null!; private Container spmContainer = null!; private OsuSpriteText spmCounter = null!; [Resolved] private OsuColour colours { get; set; } = null!; public DefaultSpinner() { RelativeSizeAxes = Axes.Both; Anchor = Anchor.Centre; Origin = Anchor.Centre; } [BackgroundDependencyLoader] private void load(DrawableHitObject drawableHitObject) { drawableSpinner = (DrawableSpinner)drawableHitObject; AddRangeInternal(new Drawable[] { new DefaultSpinnerDisc { RelativeSizeAxes = Axes.Both, Anchor = Anchor.Centre, Origin = Anchor.Centre, }, bonusCounter = new OsuSpriteText { Alpha = 0, Anchor = Anchor.Centre, Origin = Anchor.Centre, Font = OsuFont.Numeric.With(size: 24), Y = -120, }, spmContainer = new Container { Alpha = 0f, Anchor = Anchor.Centre, Origin = Anchor.Centre, Y = 120, Children = new[] { spmCounter = new OsuSpriteText { Anchor = Anchor.TopCentre, Origin = Anchor.TopCentre, Text = @"0", Font = OsuFont.Numeric.With(size: 24) }, new OsuSpriteText { Anchor = Anchor.TopCentre, Origin = Anchor.TopCentre, Text = @"SPINS PER MINUTE", Font = OsuFont.Numeric.With(size: 12), Y = 30 } } } }); } private IBindable completedSpins = null!; private IBindable spinsPerMinute = null!; protected override void LoadComplete() { base.LoadComplete(); completedSpins = drawableSpinner.CompletedFullSpins.GetBoundCopy(); completedSpins.BindValueChanged(bonus => { if (drawableSpinner.CurrentBonusScore <= 0) return; if (drawableSpinner.CurrentBonusScore == drawableSpinner.MaximumBonusScore) { bonusCounter.Text = "MAX"; bonusCounter.ScaleTo(1.5f).Then().ScaleTo(2.8f, 1000, Easing.OutQuint); bonusCounter.FlashColour(colours.YellowLight, 400); bonusCounter.FadeOutFromOne(500); } else { bonusCounter.Text = drawableSpinner.CurrentBonusScore.ToString(NumberFormatInfo.InvariantInfo); bonusCounter.FadeOutFromOne(1500); bonusCounter.ScaleTo(1.5f).Then().ScaleTo(1f, 1000, Easing.OutQuint); } }); spinsPerMinute = drawableSpinner.SpinsPerMinute.GetBoundCopy(); spinsPerMinute.BindValueChanged(spm => { spmCounter.Text = Math.Truncate(spm.NewValue).ToString(@"#0"); }, true); } protected override void Update() { base.Update(); updateSpmAlpha(); } private void updateSpmAlpha() { if (drawableSpinner.Result?.TimeStarted is double startTime) spmContainer.Alpha = (float)Math.Clamp((Clock.CurrentTime - startTime) / drawableSpinner.HitObject.TimeFadeIn, 0, 1); else spmContainer.Alpha = 0; } } }