// 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.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Input.Events; using osu.Game.Graphics; using osuTK; using osuTK.Graphics; using osu.Framework.Utils; namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces { public class SpinnerDisc : CircularContainer, IHasAccentColour { private readonly Spinner spinner; public Color4 AccentColour { get => background.AccentColour; set => background.AccentColour = value; } private readonly SpinnerBackground background; private const float idle_alpha = 0.2f; private const float tracking_alpha = 0.4f; public override bool IsPresent => true; // handle input when hidden public SpinnerDisc(Spinner s) { spinner = s; RelativeSizeAxes = Axes.Both; Children = new Drawable[] { background = new SpinnerBackground { Alpha = idle_alpha }, }; } public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true; private bool tracking; public bool Tracking { get => tracking; set { if ((Enabled && value) == tracking) return; tracking = Enabled && value; background.FadeTo(tracking ? tracking_alpha : idle_alpha, 100); } } private bool complete; public bool Complete { get => complete; set { if (value == complete) return; complete = value; updateCompleteTick(); } } public bool Valid => spinner.StartTime <= Time.Current && spinner.EndTime > Time.Current; public bool Enabled { get; set; } = true; protected override bool OnMouseMove(MouseMoveEvent e) { mousePosition = Parent.ToLocalSpace(e.ScreenSpaceMousePosition); return base.OnMouseMove(e); } private Vector2 mousePosition; private float lastAngle; private float currentRotation; public float RotationAbsolute; private int completeTick; private bool updateCompleteTick() => completeTick != (completeTick = (int)(RotationAbsolute / 360)); private bool rotationTransferred; protected override void Update() { base.Update(); var thisAngle = -MathUtils.RadiansToDegrees(MathF.Atan2(mousePosition.X - DrawSize.X / 2, mousePosition.Y - DrawSize.Y / 2)); var delta = thisAngle - lastAngle; if (Valid && tracking) Rotate(delta); lastAngle = thisAngle; if (Complete && updateCompleteTick()) { background.FinishTransforms(false, nameof(Alpha)); background .FadeTo(tracking_alpha + 0.2f, 60, Easing.OutExpo) .Then() .FadeTo(tracking_alpha, 250, Easing.OutQuint); } this.RotateTo(currentRotation / 2, 500, Easing.OutExpo); } public void Rotate(float angle) { if (!rotationTransferred) { currentRotation = Rotation * 2; rotationTransferred = true; } if (angle > 180) { lastAngle += 360; angle -= 360; } else if (-angle > 180) { lastAngle -= 360; angle += 360; } currentRotation += angle; RotationAbsolute += Math.Abs(angle) * Math.Sign(Clock.ElapsedFrameTime); } } }