mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 18:47:26 +08:00
308 lines
9.8 KiB
C#
308 lines
9.8 KiB
C#
// 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;
|
|
using System.Collections.Generic;
|
|
using JetBrains.Annotations;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Effects;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Rulesets.Edit;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Screens.Edit.Compose.Components.Timeline
|
|
{
|
|
public class TimelineHitObjectBlueprint : SelectionBlueprint
|
|
{
|
|
private readonly Circle circle;
|
|
|
|
[UsedImplicitly]
|
|
private readonly Bindable<double> startTime;
|
|
|
|
public Action<DragEvent> OnDragHandled;
|
|
|
|
private readonly DragBar dragBar;
|
|
|
|
private readonly List<Container> shadowComponents = new List<Container>();
|
|
|
|
private const float thickness = 5;
|
|
|
|
private const float shadow_radius = 5;
|
|
|
|
private const float circle_size = 16;
|
|
|
|
public TimelineHitObjectBlueprint(HitObject hitObject)
|
|
: base(hitObject)
|
|
{
|
|
Anchor = Anchor.CentreLeft;
|
|
Origin = Anchor.CentreLeft;
|
|
|
|
startTime = hitObject.StartTimeBindable.GetBoundCopy();
|
|
startTime.BindValueChanged(time => X = (float)time.NewValue, true);
|
|
|
|
RelativePositionAxes = Axes.X;
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
circle = new Circle
|
|
{
|
|
Size = new Vector2(circle_size),
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.Centre,
|
|
RelativePositionAxes = Axes.X,
|
|
AlwaysPresent = true,
|
|
Colour = Color4.White,
|
|
EdgeEffect = new EdgeEffectParameters
|
|
{
|
|
Type = EdgeEffectType.Shadow,
|
|
Radius = shadow_radius,
|
|
Colour = Color4.Black
|
|
},
|
|
};
|
|
|
|
shadowComponents.Add(circle);
|
|
|
|
if (hitObject is IHasEndTime)
|
|
{
|
|
DragBar dragBarUnderlay;
|
|
Container extensionBar;
|
|
|
|
AddRangeInternal(new Drawable[]
|
|
{
|
|
extensionBar = new Container
|
|
{
|
|
Masking = true,
|
|
Size = new Vector2(1, thickness),
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
RelativePositionAxes = Axes.X,
|
|
RelativeSizeAxes = Axes.X,
|
|
EdgeEffect = new EdgeEffectParameters
|
|
{
|
|
Type = EdgeEffectType.Shadow,
|
|
Radius = shadow_radius,
|
|
Colour = Color4.Black
|
|
},
|
|
Child = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
}
|
|
},
|
|
circle,
|
|
// only used for drawing the shadow
|
|
dragBarUnderlay = new DragBar(null),
|
|
// cover up the shadow on the join
|
|
new Box
|
|
{
|
|
Height = thickness,
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
RelativeSizeAxes = Axes.X,
|
|
},
|
|
dragBar = new DragBar(hitObject) { OnDragHandled = e => OnDragHandled?.Invoke(e) },
|
|
});
|
|
|
|
shadowComponents.Add(dragBarUnderlay);
|
|
shadowComponents.Add(extensionBar);
|
|
}
|
|
else
|
|
{
|
|
AddInternal(circle);
|
|
}
|
|
|
|
updateShadows();
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
// no bindable so we perform this every update
|
|
Width = (float)(HitObject.GetEndTime() - HitObject.StartTime);
|
|
}
|
|
|
|
protected override bool ShouldBeConsideredForInput(Drawable child) => true;
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) =>
|
|
base.ReceivePositionalInputAt(screenSpacePos) ||
|
|
circle.ReceivePositionalInputAt(screenSpacePos) ||
|
|
dragBar?.ReceivePositionalInputAt(screenSpacePos) == true;
|
|
|
|
protected override void OnSelected()
|
|
{
|
|
updateShadows();
|
|
}
|
|
|
|
private void updateShadows()
|
|
{
|
|
foreach (var s in shadowComponents)
|
|
{
|
|
if (State == SelectionState.Selected)
|
|
{
|
|
s.EdgeEffect = new EdgeEffectParameters
|
|
{
|
|
Type = EdgeEffectType.Shadow,
|
|
Radius = shadow_radius / 2,
|
|
Colour = Color4.Orange,
|
|
};
|
|
}
|
|
else
|
|
{
|
|
s.EdgeEffect = new EdgeEffectParameters
|
|
{
|
|
Type = EdgeEffectType.Shadow,
|
|
Radius = shadow_radius,
|
|
Colour = State == SelectionState.Selected ? Color4.Orange : Color4.Black
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
protected override void OnDeselected()
|
|
{
|
|
updateShadows();
|
|
}
|
|
|
|
public override Quad SelectionQuad
|
|
{
|
|
get
|
|
{
|
|
// correctly include the circle in the selection quad region, as it is usually outside the blueprint itself.
|
|
var leftQuad = circle.ScreenSpaceDrawQuad;
|
|
var rightQuad = dragBar?.ScreenSpaceDrawQuad ?? ScreenSpaceDrawQuad;
|
|
|
|
return new Quad(leftQuad.TopLeft, Vector2.ComponentMax(rightQuad.TopRight, leftQuad.TopRight),
|
|
leftQuad.BottomLeft, Vector2.ComponentMax(rightQuad.BottomRight, leftQuad.BottomRight));
|
|
}
|
|
}
|
|
|
|
public override Vector2 SelectionPoint => ScreenSpaceDrawQuad.TopLeft;
|
|
|
|
public class DragBar : Container
|
|
{
|
|
private readonly HitObject hitObject;
|
|
|
|
[Resolved]
|
|
private Timeline timeline { get; set; }
|
|
|
|
public Action<DragEvent> OnDragHandled;
|
|
|
|
public override bool HandlePositionalInput => hitObject != null;
|
|
|
|
public DragBar(HitObject hitObject)
|
|
{
|
|
this.hitObject = hitObject;
|
|
|
|
CornerRadius = 2;
|
|
Masking = true;
|
|
Size = new Vector2(5, 1);
|
|
Anchor = Anchor.CentreRight;
|
|
Origin = Anchor.Centre;
|
|
RelativePositionAxes = Axes.X;
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
}
|
|
};
|
|
}
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
{
|
|
updateState();
|
|
|
|
return base.OnHover(e);
|
|
}
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
{
|
|
updateState();
|
|
base.OnHoverLost(e);
|
|
}
|
|
|
|
private bool hasMouseDown;
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
{
|
|
hasMouseDown = true;
|
|
updateState();
|
|
return true;
|
|
}
|
|
|
|
protected override void OnMouseUp(MouseUpEvent e)
|
|
{
|
|
hasMouseDown = false;
|
|
updateState();
|
|
base.OnMouseUp(e);
|
|
}
|
|
|
|
private void updateState()
|
|
{
|
|
Colour = IsHovered || hasMouseDown ? Color4.OrangeRed : Color4.White;
|
|
}
|
|
|
|
protected override bool OnDragStart(DragStartEvent e) => true;
|
|
|
|
[Resolved]
|
|
private EditorBeatmap beatmap { get; set; }
|
|
|
|
[Resolved]
|
|
private IBeatSnapProvider beatSnapProvider { get; set; }
|
|
|
|
protected override void OnDrag(DragEvent e)
|
|
{
|
|
base.OnDrag(e);
|
|
|
|
OnDragHandled?.Invoke(e);
|
|
|
|
var time = timeline.GetTimeFromScreenSpacePosition(e.ScreenSpaceMousePosition);
|
|
|
|
switch (hitObject)
|
|
{
|
|
case IHasRepeats repeatHitObject:
|
|
// find the number of repeats which can fit in the requested time.
|
|
var lengthOfOneRepeat = repeatHitObject.Duration / (repeatHitObject.RepeatCount + 1);
|
|
var proposedCount = (int)((time - hitObject.StartTime) / lengthOfOneRepeat) - 1;
|
|
|
|
if (proposedCount == repeatHitObject.RepeatCount || proposedCount < 0)
|
|
return;
|
|
|
|
repeatHitObject.RepeatCount = proposedCount;
|
|
break;
|
|
|
|
case IHasEndTime endTimeHitObject:
|
|
var snappedTime = beatSnapProvider.SnapTime(time);
|
|
|
|
if (endTimeHitObject.EndTime == snappedTime || snappedTime <= hitObject.StartTime)
|
|
return;
|
|
|
|
endTimeHitObject.EndTime = snappedTime;
|
|
break;
|
|
}
|
|
|
|
beatmap.UpdateHitObject(hitObject);
|
|
}
|
|
|
|
protected override void OnDragEnd(DragEndEvent e)
|
|
{
|
|
base.OnDragEnd(e);
|
|
|
|
OnDragHandled?.Invoke(null);
|
|
}
|
|
}
|
|
}
|
|
}
|