2018-01-05 19:21:19 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-09-26 14:55:55 +08:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2017-09-26 14:44:40 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Beatmaps.Timing;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations;
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
protected override void LoadBeatmap(WorkingBeatmap beatmap)
|
|
|
|
{
|
2017-09-27 11:06:33 +08:00
|
|
|
base.LoadBeatmap(beatmap);
|
2017-09-26 14:44:40 +08:00
|
|
|
foreach (var breakPeriod in beatmap.Beatmap.Breaks)
|
|
|
|
Add(new BreakVisualisation(breakPeriod));
|
|
|
|
}
|
|
|
|
|
|
|
|
private class BreakVisualisation : DurationVisualisation
|
|
|
|
{
|
|
|
|
public BreakVisualisation(BreakPeriod breakPeriod)
|
|
|
|
: base(breakPeriod.StartTime, breakPeriod.EndTime)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours) => Colour = colours.Yellow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|