2019-12-05 18:31:40 +08:00
|
|
|
// 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.
|
|
|
|
|
2020-01-15 18:09:49 +08:00
|
|
|
using System;
|
2019-12-05 18:31:40 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-01-15 18:09:49 +08:00
|
|
|
using osu.Framework.Graphics.Primitives;
|
2019-12-05 18:31:40 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2020-01-15 18:09:49 +08:00
|
|
|
using osu.Framework.Input.Events;
|
2020-01-20 23:53:59 +08:00
|
|
|
using osu.Game.Rulesets.Edit;
|
2019-12-05 18:31:40 +08:00
|
|
|
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
|
|
|
|
{
|
2020-01-02 18:09:37 +08:00
|
|
|
internal class TimelineHitObjectDisplay : BlueprintContainer
|
2019-12-05 18:31:40 +08:00
|
|
|
{
|
2019-12-27 18:46:33 +08:00
|
|
|
public TimelineHitObjectDisplay(EditorBeatmap beatmap)
|
2019-12-05 19:12:25 +08:00
|
|
|
{
|
2019-12-06 10:26:50 +08:00
|
|
|
RelativeSizeAxes = Axes.Both;
|
2019-12-05 19:12:25 +08:00
|
|
|
}
|
2019-12-05 18:31:40 +08:00
|
|
|
|
2020-01-20 23:53:59 +08:00
|
|
|
protected override SelectionBlueprintContainer CreateSelectionBlueprintContainer() => new TimelineSelectionBlueprintContainer { RelativeSizeAxes = Axes.Both };
|
|
|
|
|
|
|
|
protected class TimelineSelectionBlueprintContainer : SelectionBlueprintContainer
|
2019-12-05 18:31:40 +08:00
|
|
|
{
|
2020-01-20 23:53:59 +08:00
|
|
|
protected override Container<SelectionBlueprint> Content { get; }
|
2019-12-05 18:31:40 +08:00
|
|
|
|
2020-01-20 23:53:59 +08:00
|
|
|
public TimelineSelectionBlueprintContainer()
|
2019-12-05 19:12:25 +08:00
|
|
|
{
|
2020-01-20 23:53:59 +08:00
|
|
|
AddInternal(new TimelinePart<SelectionBlueprint>(Content = new Container<SelectionBlueprint> { RelativeSizeAxes = Axes.Both }) { RelativeSizeAxes = Axes.Both });
|
|
|
|
}
|
2019-12-05 18:31:40 +08:00
|
|
|
}
|
|
|
|
|
2020-01-15 18:09:49 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
DragBox.Alpha = 0;
|
|
|
|
}
|
|
|
|
|
2020-01-20 23:53:59 +08:00
|
|
|
protected override SelectionBlueprint CreateBlueprintFor(HitObject hitObject)
|
2019-12-05 18:31:40 +08:00
|
|
|
{
|
2020-01-20 23:53:59 +08:00
|
|
|
//var yOffset = content.Count(d => d.X == h.StartTime);
|
2020-01-21 18:51:44 +08:00
|
|
|
//var yOffset = 0;
|
2019-12-05 18:31:40 +08:00
|
|
|
|
2020-01-21 18:51:44 +08:00
|
|
|
return new TimelineHitObjectRepresentation(hitObject);
|
2019-12-05 22:31:21 +08:00
|
|
|
}
|
2019-12-05 18:31:40 +08:00
|
|
|
|
2020-01-15 18:09:49 +08:00
|
|
|
internal class NoDragDragBox : DragBox
|
|
|
|
{
|
|
|
|
public NoDragDragBox(Action<RectangleF> performSelect)
|
|
|
|
: base(performSelect)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool UpdateDrag(MouseButtonEvent e) => false;
|
|
|
|
}
|
|
|
|
|
2020-01-20 23:53:59 +08:00
|
|
|
private class TimelineHitObjectRepresentation : SelectionBlueprint
|
2019-12-05 18:31:40 +08:00
|
|
|
{
|
2020-01-21 19:54:50 +08:00
|
|
|
private readonly Circle circle;
|
2020-01-21 13:21:00 +08:00
|
|
|
|
2019-12-06 09:48:18 +08:00
|
|
|
public const float THICKNESS = 3;
|
|
|
|
|
2020-01-21 16:37:35 +08:00
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => base.ReceivePositionalInputAt(screenSpacePos) || circle.ReceivePositionalInputAt(screenSpacePos);
|
|
|
|
|
2019-12-05 18:31:40 +08:00
|
|
|
public TimelineHitObjectRepresentation(HitObject hitObject)
|
2020-01-20 23:53:59 +08:00
|
|
|
: base(hitObject)
|
2019-12-05 18:31:40 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreLeft;
|
|
|
|
Origin = Anchor.CentreLeft;
|
|
|
|
|
|
|
|
Width = (float)(hitObject.GetEndTime() - hitObject.StartTime);
|
|
|
|
|
|
|
|
X = (float)hitObject.StartTime;
|
|
|
|
|
|
|
|
RelativePositionAxes = Axes.X;
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
|
|
|
if (hitObject is IHasEndTime)
|
|
|
|
{
|
2019-12-05 22:31:21 +08:00
|
|
|
AddInternal(new Container
|
2019-12-05 18:31:40 +08:00
|
|
|
{
|
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),
|
2019-12-05 18:31:40 +08:00
|
|
|
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 18:31:40 +08:00
|
|
|
});
|
|
|
|
}
|
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
|
|
|
{
|
|
|
|
Size = new Vector2(16),
|
|
|
|
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
|
|
|
});
|
2019-12-05 18:31:40 +08:00
|
|
|
}
|
2020-01-21 13:21:00 +08:00
|
|
|
|
|
|
|
protected override void OnSelected() => circle.BorderColour = Color4.Orange;
|
|
|
|
|
|
|
|
protected override void OnDeselected() => circle.BorderColour = Color4.Black;
|
2019-12-05 18:31:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|