1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 04:47:50 +08:00
osu-lazer/osu.Game/Screens/Edit/Compose/Components/Timeline/TimelineBreak.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

225 lines
7.2 KiB
C#
Raw Normal View History

2024-06-18 20:55:59 +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.
using System;
using System.Diagnostics;
using System.Linq;
2024-06-18 20:55:59 +08:00
using osu.Framework.Allocation;
2024-06-19 15:01:33 +08:00
using osu.Framework.Bindables;
using osu.Framework.Extensions.Color4Extensions;
2024-06-18 20:55:59 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input.Events;
2024-06-18 20:55:59 +08:00
using osu.Game.Beatmaps.Timing;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Rulesets.Objects;
using osuTK;
2024-06-18 20:55:59 +08:00
namespace osu.Game.Screens.Edit.Compose.Components.Timeline
{
public partial class TimelineBreak : CompositeDrawable
{
2024-06-19 15:01:33 +08:00
public Bindable<BreakPeriod> Break { get; } = new Bindable<BreakPeriod>();
2024-06-18 20:55:59 +08:00
public TimelineBreak(BreakPeriod b)
{
2024-06-19 15:01:33 +08:00
Break.Value = b;
2024-06-18 20:55:59 +08:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
RelativePositionAxes = Axes.X;
RelativeSizeAxes = Axes.Both;
Origin = Anchor.TopLeft;
Padding = new MarginPadding { Horizontal = -5 };
2024-06-18 20:55:59 +08:00
InternalChildren = new Drawable[]
{
new Container
2024-06-18 20:55:59 +08:00
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Horizontal = 5 },
Child = new Box
2024-06-18 20:55:59 +08:00
{
RelativeSizeAxes = Axes.Both,
Colour = colours.Gray5,
Alpha = 0.7f,
2024-06-18 20:55:59 +08:00
},
},
2024-06-19 15:01:33 +08:00
new DragHandle(isStartHandle: true)
2024-06-18 20:55:59 +08:00
{
2024-06-19 15:01:33 +08:00
Break = { BindTarget = Break },
Anchor = Anchor.TopLeft,
Origin = Anchor.TopLeft,
Action = (time, breakPeriod) => new ManualBreakPeriod(time, breakPeriod.EndTime),
2024-06-18 20:55:59 +08:00
},
2024-06-19 15:01:33 +08:00
new DragHandle(isStartHandle: false)
2024-06-18 20:55:59 +08:00
{
2024-06-19 15:01:33 +08:00
Break = { BindTarget = Break },
2024-06-18 20:55:59 +08:00
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Action = (time, breakPeriod) => new ManualBreakPeriod(breakPeriod.StartTime, time),
2024-06-18 20:55:59 +08:00
},
};
}
2024-06-19 15:01:33 +08:00
protected override void LoadComplete()
{
2024-06-19 15:01:33 +08:00
base.LoadComplete();
2024-06-19 15:01:33 +08:00
Break.BindValueChanged(_ =>
{
X = (float)Break.Value.StartTime;
Width = (float)Break.Value.Duration;
}, true);
}
private partial class DragHandle : FillFlowContainer
{
2024-06-19 15:01:33 +08:00
public Bindable<BreakPeriod> Break { get; } = new Bindable<BreakPeriod>();
public new Anchor Anchor
{
get => base.Anchor;
init => base.Anchor = value;
}
2024-06-19 15:01:33 +08:00
public Func<double, BreakPeriod, BreakPeriod>? Action { get; init; }
private readonly bool isStartHandle;
private Container handle = null!;
private (double min, double max)? allowedDragRange;
[Resolved]
private EditorBeatmap beatmap { get; set; } = null!;
[Resolved]
private Timeline timeline { get; set; } = null!;
[Resolved]
private IEditorChangeHandler? changeHandler { get; set; }
[Resolved]
private OsuColour colours { get; set; } = null!;
2024-06-19 15:01:33 +08:00
public DragHandle(bool isStartHandle)
{
this.isStartHandle = isStartHandle;
}
[BackgroundDependencyLoader]
private void load()
{
AutoSizeAxes = Axes.X;
RelativeSizeAxes = Axes.Y;
Direction = FillDirection.Horizontal;
Spacing = new Vector2(5);
Children = new Drawable[]
{
handle = new Container
{
Anchor = Anchor,
Origin = Anchor,
RelativeSizeAxes = Axes.Y,
CornerRadius = 5,
Masking = true,
Child = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Colour4.White,
},
},
new OsuSpriteText
{
BypassAutoSizeAxes = Axes.X,
Anchor = Anchor,
Origin = Anchor,
Text = "Break",
Margin = new MarginPadding { Top = 2, },
},
};
}
protected override void LoadComplete()
{
base.LoadComplete();
updateState();
FinishTransforms(true);
}
protected override bool OnHover(HoverEvent e)
{
updateState();
return true;
}
protected override void OnHoverLost(HoverLostEvent e)
{
updateState();
base.OnHoverLost(e);
}
protected override bool OnDragStart(DragStartEvent e)
{
changeHandler?.BeginChange();
updateState();
2024-06-19 15:01:33 +08:00
double min = beatmap.HitObjects.Last(ho => ho.GetEndTime() <= Break.Value.StartTime).GetEndTime();
double max = beatmap.HitObjects.First(ho => ho.StartTime >= Break.Value.EndTime).StartTime;
if (isStartHandle)
2024-06-19 15:01:33 +08:00
max = Math.Min(max, Break.Value.EndTime - BreakPeriod.MIN_BREAK_DURATION);
else
2024-06-19 15:01:33 +08:00
min = Math.Max(min, Break.Value.StartTime + BreakPeriod.MIN_BREAK_DURATION);
allowedDragRange = (min, max);
return true;
}
protected override void OnDrag(DragEvent e)
{
base.OnDrag(e);
Debug.Assert(allowedDragRange != null);
2024-06-19 15:01:33 +08:00
if (Action != null
&& timeline.FindSnappedPositionAndTime(e.ScreenSpaceMousePosition).Time is double time
&& time > allowedDragRange.Value.min
&& time < allowedDragRange.Value.max)
{
2024-06-19 15:01:33 +08:00
int index = beatmap.Breaks.IndexOf(Break.Value);
beatmap.Breaks[index] = Break.Value = Action.Invoke(time, Break.Value);
}
updateState();
}
protected override void OnDragEnd(DragEndEvent e)
{
changeHandler?.EndChange();
updateState();
base.OnDragEnd(e);
}
private void updateState()
{
bool active = IsHovered || IsDragged;
var colour = colours.Gray8;
if (active)
colour = colour.Lighten(0.3f);
this.FadeColour(colour, 400, Easing.OutQuint);
handle.ResizeWidthTo(active ? 20 : 10, 400, Easing.OutElasticHalf);
}
}
2024-06-18 20:55:59 +08:00
}
}