2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-09-26 14:44:40 +08:00
|
|
|
using osu.Framework.Allocation;
|
2024-06-19 16:26:01 +08:00
|
|
|
using osu.Framework.Bindables;
|
2024-06-18 21:54:34 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2017-09-26 14:44:40 +08:00
|
|
|
using osu.Game.Beatmaps.Timing;
|
|
|
|
using osu.Game.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-09-26 14:44:40 +08:00
|
|
|
namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Parts
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The part of the timeline that displays breaks in the song.
|
|
|
|
/// </summary>
|
2017-11-21 10:49:42 +08:00
|
|
|
public partial class BreakPart : TimelinePart
|
2017-09-26 14:44:40 +08:00
|
|
|
{
|
2024-06-19 16:26:01 +08:00
|
|
|
private readonly BindableList<BreakPeriod> breaks = new BindableList<BreakPeriod>();
|
|
|
|
|
2021-01-25 17:43:36 +08:00
|
|
|
protected override void LoadBeatmap(EditorBeatmap beatmap)
|
2017-09-26 14:44:40 +08:00
|
|
|
{
|
2017-09-27 11:06:33 +08:00
|
|
|
base.LoadBeatmap(beatmap);
|
2024-06-19 16:26:01 +08:00
|
|
|
|
|
|
|
breaks.UnbindAll();
|
|
|
|
breaks.BindTo(beatmap.Breaks);
|
|
|
|
breaks.BindCollectionChanged((_, _) =>
|
|
|
|
{
|
2024-06-30 19:32:16 +08:00
|
|
|
Clear();
|
2024-06-19 16:26:01 +08:00
|
|
|
foreach (var breakPeriod in beatmap.Breaks)
|
|
|
|
Add(new BreakVisualisation(breakPeriod));
|
|
|
|
}, true);
|
2017-09-26 14:44:40 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2024-06-18 21:54:34 +08:00
|
|
|
private partial class BreakVisualisation : Circle
|
2017-09-26 14:44:40 +08:00
|
|
|
{
|
|
|
|
public BreakVisualisation(BreakPeriod breakPeriod)
|
|
|
|
{
|
2024-06-18 21:54:34 +08:00
|
|
|
RelativePositionAxes = Axes.X;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
X = (float)breakPeriod.StartTime;
|
|
|
|
Width = (float)breakPeriod.Duration;
|
2017-09-26 14:44:40 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-09-26 14:44:40 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2024-06-19 22:02:10 +08:00
|
|
|
private void load(OsuColour colours) => Colour = colours.Gray7;
|
2017-09-26 14:44:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|