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
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2017-09-26 14:44:40 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Game.Beatmaps.Timing;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations;
|
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 class BreakPart : TimelinePart
|
2017-09-26 14:44:40 +08:00
|
|
|
{
|
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);
|
2021-01-25 17:43:36 +08:00
|
|
|
foreach (var breakPeriod in beatmap.Breaks)
|
2017-09-26 14:44:40 +08:00
|
|
|
Add(new BreakVisualisation(breakPeriod));
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-09-26 14:44:40 +08:00
|
|
|
private class BreakVisualisation : DurationVisualisation
|
|
|
|
{
|
|
|
|
public BreakVisualisation(BreakPeriod breakPeriod)
|
|
|
|
: base(breakPeriod.StartTime, breakPeriod.EndTime)
|
|
|
|
{
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-09-26 14:44:40 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2021-04-15 16:04:11 +08:00
|
|
|
private void load(OsuColour colours) => Colour = colours.GreyCarmineLight;
|
2017-09-26 14:44:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|