2022-12-16 00:03:30 +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 osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Parts
|
|
|
|
|
{
|
|
|
|
|
public partial class PreviewTimePart : TimelinePart
|
|
|
|
|
{
|
|
|
|
|
protected override void LoadBeatmap(EditorBeatmap beatmap)
|
|
|
|
|
{
|
|
|
|
|
base.LoadBeatmap(beatmap);
|
2023-01-02 02:45:23 +08:00
|
|
|
|
Add(new PreviewTimeVisualisation(beatmap));
|
2022-12-16 09:44:07 +08:00
|
|
|
|
beatmap.PreviewTime.BindValueChanged(s =>
|
|
|
|
|
{
|
|
|
|
|
Alpha = s.NewValue == -1 ? 0 : 1;
|
|
|
|
|
}, true);
|
2022-12-16 00:03:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private partial class PreviewTimeVisualisation : PointVisualisation
|
|
|
|
|
{
|
2022-12-30 21:59:56 +08:00
|
|
|
|
private readonly BindableInt previewTime = new BindableInt();
|
2022-12-30 21:58:46 +08:00
|
|
|
|
|
2023-01-02 02:45:23 +08:00
|
|
|
|
public PreviewTimeVisualisation(EditorBeatmap editorBeatmap)
|
2022-12-16 00:03:30 +08:00
|
|
|
|
{
|
2023-01-02 02:45:23 +08:00
|
|
|
|
previewTime.BindTo(editorBeatmap.PreviewTime);
|
|
|
|
|
previewTime.BindValueChanged(s => X = s.NewValue, true);
|
2022-12-16 00:03:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2023-01-02 02:39:21 +08:00
|
|
|
|
private void load(OsuColour colours) => Colour = colours.Green1;
|
2022-12-16 00:03:30 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|