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;
|
2024-07-12 13:18:41 +08:00
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Extensions;
|
2022-12-16 00:03:30 +08:00
|
|
|
|
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
|
|
|
|
|
{
|
2023-01-07 19:30:01 +08:00
|
|
|
|
private readonly BindableInt previewTime = new BindableInt();
|
|
|
|
|
|
2022-12-16 00:03:30 +08:00
|
|
|
|
protected override void LoadBeatmap(EditorBeatmap beatmap)
|
|
|
|
|
{
|
|
|
|
|
base.LoadBeatmap(beatmap);
|
2023-01-07 19:30:01 +08:00
|
|
|
|
|
|
|
|
|
previewTime.UnbindAll();
|
|
|
|
|
previewTime.BindTo(beatmap.PreviewTime);
|
|
|
|
|
previewTime.BindValueChanged(t =>
|
2022-12-16 09:44:07 +08:00
|
|
|
|
{
|
2023-01-07 19:30:01 +08:00
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
|
|
if (t.NewValue >= 0)
|
|
|
|
|
Add(new PreviewTimeVisualisation(t.NewValue));
|
2022-12-16 09:44:07 +08:00
|
|
|
|
}, true);
|
2022-12-16 00:03:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-07-12 13:18:41 +08:00
|
|
|
|
private partial class PreviewTimeVisualisation : PointVisualisation, IHasTooltip
|
2022-12-16 00:03:30 +08:00
|
|
|
|
{
|
2023-01-07 19:30:01 +08:00
|
|
|
|
public PreviewTimeVisualisation(double time)
|
|
|
|
|
: base(time)
|
2022-12-16 00:03:30 +08:00
|
|
|
|
{
|
2024-07-12 12:57:36 +08:00
|
|
|
|
Alpha = 0.8f;
|
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;
|
2024-07-12 13:18:41 +08:00
|
|
|
|
|
|
|
|
|
public LocalisableString TooltipText => $"{StartTime.ToEditorFormattedString()} preview time";
|
2022-12-16 00:03:30 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|