// 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.Allocation; using osu.Framework.Caching; using osu.Framework.Graphics; using osu.Framework.Graphics.Colour; using osu.Framework.Graphics.Containers; using osu.Game.Beatmaps; using osu.Game.Beatmaps.ControlPoints; using osu.Game.Graphics; using osu.Game.Rulesets.Objects; using osu.Game.Rulesets.Objects.Types; using osuTK; namespace osu.Game.Screens.Edit.Compose.Components { /// /// A grid which takes user input and returns a quantized ("snapped") position and time. /// public abstract class DistanceSnapGrid : CompositeDrawable { /// /// The velocity of the beatmap at the point of placement in pixels per millisecond. /// protected double Velocity { get; private set; } /// /// The spacing between each tick of the beat snapping grid. /// protected float DistanceSpacing { get; private set; } /// /// The position which the grid is centred on. /// The first beat snapping tick is located at + in the desired direction. /// protected readonly Vector2 CentrePosition; [Resolved] private IEditorBeatmap beatmap { get; set; } [Resolved] private BindableBeatDivisor beatDivisor { get; set; } [Resolved] private OsuColour colours { get; set; } private readonly Cached gridCache = new Cached(); private readonly HitObject hitObject; private double startTime; private double beatLength; protected DistanceSnapGrid(HitObject hitObject, Vector2 centrePosition) { this.hitObject = hitObject; this.CentrePosition = centrePosition; RelativeSizeAxes = Axes.Both; } [BackgroundDependencyLoader] private void load() { startTime = (hitObject as IHasEndTime)?.EndTime ?? hitObject.StartTime; beatLength = beatmap.ControlPointInfo.TimingPointAt(startTime).BeatLength; } protected override void LoadComplete() { base.LoadComplete(); beatDivisor.BindValueChanged(_ => updateSpacing(), true); } private void updateSpacing() { Velocity = GetVelocity(startTime, beatmap.ControlPointInfo, beatmap.BeatmapInfo.BaseDifficulty); DistanceSpacing = (float)(beatLength / beatDivisor.Value * Velocity); gridCache.Invalidate(); } public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true) { if ((invalidation & Invalidation.RequiredParentSizeToFit) > 0) gridCache.Invalidate(); return base.Invalidate(invalidation, source, shallPropagate); } protected override void Update() { base.Update(); if (!gridCache.IsValid) { ClearInternal(); CreateContent(CentrePosition); gridCache.Validate(); } } /// /// Creates the content which visualises the grid ticks. /// protected abstract void CreateContent(Vector2 centrePosition); /// /// Retrieves the velocity of gameplay at a point in time in pixels per millisecond. /// /// The time to retrieve the velocity at. /// The beatmap's at the point in time. /// The beatmap's at the point in time. /// The velocity. protected abstract float GetVelocity(double time, ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty); /// /// Snaps a position to this grid. /// /// The original position in coordinate space local to this . /// The snapped position in coordinate space local to this . public abstract Vector2 GetSnapPosition(Vector2 position); /// /// Retrieves the time at a snapped position. /// /// The snapped position in coordinate space local to this . /// The time at the snapped position. public double GetSnapTime(Vector2 position) => startTime + (position - CentrePosition).Length / Velocity; /// /// Retrieves the applicable colour for a beat index. /// /// The 0-based beat index. /// The applicable colour. protected ColourInfo GetColourForBeatIndex(int index) { int beat = (index + 1) % beatDivisor.Value; ColourInfo colour = colours.Gray5; for (int i = 0; i < BindableBeatDivisor.VALID_DIVISORS.Length; i++) { int divisor = BindableBeatDivisor.VALID_DIVISORS[i]; if ((beat * divisor) % beatDivisor.Value == 0) { colour = BindableBeatDivisor.GetColourFor(divisor, colours); break; } } int repeatIndex = index / beatDivisor.Value; return colour.MultiplyAlpha(0.5f / (repeatIndex + 1)); } } }