1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 10:27:51 +08:00
osu-lazer/osu.Game/Screens/Edit/Components/Timelines/Summary/Parts/PreviewTimePart.cs

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

39 lines
1.3 KiB
C#
Raw Normal View History

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);
Add(new PreviewTimeVisualisation(beatmap.PreviewTime));
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
2022-12-16 00:03:30 +08:00
public PreviewTimeVisualisation(BindableInt time)
: base(time.Value)
{
2022-12-30 21:58:46 +08:00
previewTime.BindTo(time);
previewTime.BindValueChanged(s => X = s.NewValue);
2022-12-16 00:03:30 +08:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours) => Colour = colours.Green1;
2022-12-16 00:03:30 +08:00
}
}
}