1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 10:47:24 +08:00
osu-lazer/osu.Game/Screens/Edit/Compose/Components/Timeline/TimelineBlueprintContainer.cs

243 lines
8.5 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
2020-01-22 16:11:37 +08:00
using JetBrains.Annotations;
using osu.Framework.Allocation;
2020-01-22 16:11:37 +08:00
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input.Events;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Screens.Edit.Components.Timelines.Summary.Parts;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Screens.Edit.Compose.Components.Timeline
{
internal class TimelineBlueprintContainer : BlueprintContainer
{
[Resolved(CanBeNull = true)]
private Timeline timeline { get; set; }
private DragEvent lastDragEvent;
public TimelineBlueprintContainer(EditorBeatmap beatmap)
2019-12-05 19:12:25 +08:00
{
2019-12-06 10:26:50 +08:00
RelativeSizeAxes = Axes.Both;
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
Height = 0.4f;
AddInternal(new Box
{
Colour = Color4.Black,
RelativeSizeAxes = Axes.Both,
Alpha = 0.1f,
});
2019-12-05 19:12:25 +08:00
}
protected override SelectionBlueprintContainer CreateSelectionBlueprintContainer() => new TimelineSelectionBlueprintContainer { RelativeSizeAxes = Axes.Both };
protected override void LoadComplete()
{
base.LoadComplete();
DragBox.Alpha = 0;
}
2020-01-22 14:42:49 +08:00
protected override bool OnDrag(DragEvent e)
{
if (timeline != null)
{
var timelineQuad = timeline.ScreenSpaceDrawQuad;
var mouseX = e.ScreenSpaceMousePosition.X;
// scroll if in a drag and dragging outside visible extents
if (mouseX > timelineQuad.TopRight.X)
timeline.ScrollBy((float)((mouseX - timelineQuad.TopRight.X) / 10 * Clock.ElapsedFrameTime));
else if (mouseX < timelineQuad.TopLeft.X)
timeline.ScrollBy((float)((mouseX - timelineQuad.TopLeft.X) / 10 * Clock.ElapsedFrameTime));
}
2020-01-22 14:42:49 +08:00
lastDragEvent = e;
return base.OnDrag(e);
}
protected override bool OnDragEnd(DragEndEvent e)
{
lastDragEvent = null;
return base.OnDragEnd(e);
}
2020-01-22 14:42:49 +08:00
protected override void Update()
{
// trigger every frame so drags continue to update selection while playback is scrolling the timeline.
if (IsDragged)
OnDrag(lastDragEvent);
2020-01-22 14:42:49 +08:00
base.Update();
2019-12-05 22:31:21 +08:00
}
protected override SelectionHandler CreateSelectionHandler() => new TimelineSelectionHandler();
internal class TimelineSelectionHandler : SelectionHandler
{
public override bool HandleMovement(MoveSelectionEvent moveEvent) => true;
}
protected override SelectionBlueprint CreateBlueprintFor(HitObject hitObject) => new TimelineHitObjectBlueprint(hitObject);
2020-01-22 14:42:49 +08:00
protected override DragBox CreateDragBox(Action<RectangleF> performSelect) => new TimelineDragBox(performSelect);
private class TimelineDragBox : DragBox
{
private Vector2 lastMouseDown;
private float localMouseDown;
public TimelineDragBox(Action<RectangleF> performSelect)
: base(performSelect)
{
}
protected override Drawable CreateBox() => new Box
{
RelativeSizeAxes = Axes.Y,
Alpha = 0.3f
};
public override bool HandleDrag(MouseButtonEvent e)
{
// store the original position of the mouse down, as we may be scrolled during selection.
if (lastMouseDown != e.ScreenSpaceMouseDownPosition)
{
lastMouseDown = e.ScreenSpaceMouseDownPosition;
localMouseDown = e.MouseDownPosition.X;
}
float selection1 = localMouseDown;
float selection2 = e.MousePosition.X;
Box.X = Math.Min(selection1, selection2);
Box.Width = Math.Abs(selection1 - selection2);
PerformSelection?.Invoke(Box.ScreenSpaceDrawQuad.AABBFloat);
return true;
}
}
2020-01-22 14:42:49 +08:00
protected class TimelineSelectionBlueprintContainer : SelectionBlueprintContainer
{
protected override Container<SelectionBlueprint> Content { get; }
public TimelineSelectionBlueprintContainer()
{
AddInternal(new TimelinePart<SelectionBlueprint>(Content = new Container<SelectionBlueprint> { RelativeSizeAxes = Axes.Both }) { RelativeSizeAxes = Axes.Both });
}
}
private class TimelineHitObjectBlueprint : SelectionBlueprint
{
2020-01-21 19:54:50 +08:00
private readonly Circle circle;
2020-01-21 13:21:00 +08:00
2020-01-22 14:42:49 +08:00
private readonly Container extensionBar;
2020-01-22 14:31:58 +08:00
2020-01-22 16:11:37 +08:00
[UsedImplicitly]
private readonly Bindable<double> startTime;
2019-12-06 09:48:18 +08:00
public const float THICKNESS = 3;
2020-01-21 21:24:04 +08:00
private const float circle_size = 16;
2020-01-21 16:37:35 +08:00
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => base.ReceivePositionalInputAt(screenSpacePos) || circle.ReceivePositionalInputAt(screenSpacePos);
public TimelineHitObjectBlueprint(HitObject hitObject)
: base(hitObject)
{
Anchor = Anchor.CentreLeft;
Origin = Anchor.CentreLeft;
2020-01-22 16:11:37 +08:00
startTime = hitObject.StartTimeBindable.GetBoundCopy();
startTime.BindValueChanged(time => X = (float)time.NewValue, true);
RelativePositionAxes = Axes.X;
2020-01-22 14:31:58 +08:00
RelativeSizeAxes = Axes.X;
2020-01-22 14:31:58 +08:00
AutoSizeAxes = Axes.Y;
if (hitObject is IHasEndTime)
{
2020-01-22 14:31:58 +08:00
AddInternal(extensionBar = new Container
{
2019-12-05 22:31:21 +08:00
CornerRadius = 2,
Masking = true,
2019-12-06 09:48:18 +08:00
Size = new Vector2(1, THICKNESS),
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
RelativePositionAxes = Axes.X,
RelativeSizeAxes = Axes.X,
2019-12-05 22:31:21 +08:00
Colour = Color4.Black,
Child = new Box
{
RelativeSizeAxes = Axes.Both,
}
});
}
2019-12-05 22:31:21 +08:00
2020-01-21 13:21:00 +08:00
AddInternal(circle = new Circle
2019-12-05 22:31:21 +08:00
{
2020-01-21 21:24:04 +08:00
Size = new Vector2(circle_size),
2019-12-05 22:31:21 +08:00
Anchor = Anchor.CentreLeft,
Origin = Anchor.Centre,
RelativePositionAxes = Axes.X,
AlwaysPresent = true,
Colour = Color4.White,
BorderColour = Color4.Black,
2019-12-06 09:48:18 +08:00
BorderThickness = THICKNESS,
2019-12-05 22:31:21 +08:00
});
}
2020-01-21 13:21:00 +08:00
2020-01-22 16:11:37 +08:00
protected override void Update()
{
base.Update();
// no bindable so we perform this every update
Width = (float)(HitObject.GetEndTime() - HitObject.StartTime);
}
2020-01-22 14:31:58 +08:00
protected override void OnSelected()
{
circle.BorderColour = Color4.Orange;
if (extensionBar != null)
extensionBar.Colour = Color4.Orange;
}
protected override void OnDeselected()
{
circle.BorderColour = Color4.Black;
if (extensionBar != null)
extensionBar.Colour = Color4.Black;
}
public override Quad SelectionQuad
{
get
{
// correctly include the circle in the selection quad region, as it is usually outside the blueprint itself.
var circleQuad = circle.ScreenSpaceDrawQuad;
var actualQuad = ScreenSpaceDrawQuad;
2020-01-21 13:21:00 +08:00
2020-01-22 14:31:58 +08:00
return new Quad(circleQuad.TopLeft, Vector2.ComponentMax(actualQuad.TopRight, circleQuad.TopRight),
circleQuad.BottomLeft, Vector2.ComponentMax(actualQuad.BottomRight, circleQuad.BottomRight));
}
}
public override Vector2 SelectionPoint => ScreenSpaceDrawQuad.TopLeft;
}
}
}