// 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.Graphics; using osu.Framework.Input; using osu.Framework.Input.Events; using osu.Game.Rulesets.Edit; using osu.Game.Rulesets.Mania.Objects; using osu.Game.Rulesets.Mania.Objects.Drawables.Pieces; using osu.Game.Rulesets.Mania.UI; using osu.Game.Rulesets.UI.Scrolling; using osuTK; namespace osu.Game.Rulesets.Mania.Edit.Blueprints { public abstract class ManiaPlacementBlueprint : PlacementBlueprint, IRequireHighFrequencyMousePosition // the playfield could be moving behind us where T : ManiaHitObject { protected new T HitObject => (T)base.HitObject; protected Column Column; /// /// The current mouse position, snapped to the closest column. /// protected Vector2 SnappedMousePosition { get; private set; } /// /// The width of the closest column to the current mouse position. /// protected float SnappedWidth { get; private set; } [Resolved] private IManiaHitObjectComposer composer { get; set; } [Resolved] private IScrollingInfo scrollingInfo { get; set; } protected ManiaPlacementBlueprint(T hitObject) : base(hitObject) { RelativeSizeAxes = Axes.None; } protected override bool OnMouseDown(MouseDownEvent e) { if (Column == null) return base.OnMouseDown(e); HitObject.StartTime = TimeAt(e.ScreenSpaceMousePosition); HitObject.Column = Column.Index; BeginPlacement(); return true; } protected override bool OnMouseUp(MouseUpEvent e) { EndPlacement(); return base.OnMouseUp(e); } public override void UpdatePosition(Vector2 screenSpacePosition) { if (!PlacementBegun) Column = ColumnAt(screenSpacePosition); if (Column == null) return; SnappedWidth = Column.DrawWidth; // Snap to the column var parentPos = Parent.ToLocalSpace(Column.ToScreenSpace(new Vector2(Column.DrawWidth / 2, 0))); SnappedMousePosition = new Vector2(parentPos.X, Parent.ToLocalSpace(screenSpacePosition).Y); } protected double TimeAt(Vector2 screenSpacePosition) { if (Column == null) return 0; var hitObjectContainer = Column.HitObjectContainer; // If we're scrolling downwards, a position of 0 is actually further away from the hit target // so we need to flip the vertical coordinate in the hitobject container's space var hitObjectPos = mouseToHitObjectPosition(Column.HitObjectContainer.ToLocalSpace(screenSpacePosition)).Y; if (scrollingInfo.Direction.Value == ScrollingDirection.Down) hitObjectPos = hitObjectContainer.DrawHeight - hitObjectPos; return scrollingInfo.Algorithm.TimeAt(hitObjectPos, EditorClock.CurrentTime, scrollingInfo.TimeRange.Value, hitObjectContainer.DrawHeight); } protected float PositionAt(double time) { var pos = scrollingInfo.Algorithm.PositionAt(time, EditorClock.CurrentTime, scrollingInfo.TimeRange.Value, Column.HitObjectContainer.DrawHeight); if (scrollingInfo.Direction.Value == ScrollingDirection.Down) pos = Column.HitObjectContainer.DrawHeight - pos; return hitObjectToMousePosition(Column.HitObjectContainer.ToSpaceOfOtherDrawable(new Vector2(0, pos), Parent)).Y; } protected Column ColumnAt(Vector2 screenSpacePosition) => composer.ColumnAt(screenSpacePosition); /// /// Converts a mouse position to a hitobject position. /// /// /// Blueprints are centred on the mouse position, such that the hitobject position is anchored at the top or bottom of the blueprint depending on the scroll direction. /// /// The mouse position. /// The resulting hitobject position, acnhored at the top or bottom of the blueprint depending on the scroll direction. private Vector2 mouseToHitObjectPosition(Vector2 mousePosition) { switch (scrollingInfo.Direction.Value) { case ScrollingDirection.Up: mousePosition.Y -= NotePiece.NOTE_HEIGHT / 2; break; case ScrollingDirection.Down: mousePosition.Y += NotePiece.NOTE_HEIGHT / 2; break; } return mousePosition; } /// /// Converts a hitobject position to a mouse position. /// /// The hitobject position. /// The resulting mouse position, anchored at the centre of the hitobject. private Vector2 hitObjectToMousePosition(Vector2 hitObjectPosition) { switch (scrollingInfo.Direction.Value) { case ScrollingDirection.Up: hitObjectPosition.Y += NotePiece.NOTE_HEIGHT / 2; break; case ScrollingDirection.Down: hitObjectPosition.Y -= NotePiece.NOTE_HEIGHT / 2; break; } return hitObjectPosition; } } }