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;
|
2024-07-12 13:18:41 +08:00
|
|
|
using osu.Framework.Graphics.Cursor;
|
2024-07-10 17:34:05 +08:00
|
|
|
using osu.Framework.Graphics.Pooling;
|
2024-06-18 21:54:34 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2024-07-12 13:18:41 +08:00
|
|
|
using osu.Framework.Localisation;
|
2017-09-26 14:44:40 +08:00
|
|
|
using osu.Game.Beatmaps.Timing;
|
2024-07-12 13:18:41 +08:00
|
|
|
using osu.Game.Extensions;
|
2017-09-26 14:44:40 +08:00
|
|
|
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>();
|
|
|
|
|
2024-07-10 17:34:05 +08:00
|
|
|
private DrawablePool<BreakVisualisation> pool = null!;
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
AddInternal(pool = new DrawablePool<BreakVisualisation>(10));
|
|
|
|
}
|
|
|
|
|
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);
|
2024-07-10 17:34:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2024-06-19 16:26:01 +08:00
|
|
|
breaks.BindCollectionChanged((_, _) =>
|
|
|
|
{
|
2024-07-10 17:34:05 +08:00
|
|
|
Clear(disposeChildren: false);
|
|
|
|
foreach (var breakPeriod in breaks)
|
|
|
|
Add(pool.Get(v => v.BreakPeriod = breakPeriod));
|
2024-06-19 16:26:01 +08:00
|
|
|
}, true);
|
2017-09-26 14:44:40 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2024-07-12 13:18:41 +08:00
|
|
|
private partial class BreakVisualisation : PoolableDrawable, IHasTooltip
|
2017-09-26 14:44:40 +08:00
|
|
|
{
|
2024-07-12 17:11:23 +08:00
|
|
|
private BreakPeriod breakPeriod = null!;
|
2024-07-12 13:18:41 +08:00
|
|
|
|
2024-07-10 17:34:05 +08:00
|
|
|
public BreakPeriod BreakPeriod
|
2017-09-26 14:44:40 +08:00
|
|
|
{
|
2024-07-10 17:34:05 +08:00
|
|
|
set
|
|
|
|
{
|
2024-07-12 13:18:41 +08:00
|
|
|
breakPeriod = value;
|
2024-07-10 17:34:05 +08:00
|
|
|
X = (float)value.StartTime;
|
|
|
|
Width = (float)value.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-07-10 17:34:05 +08:00
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
RelativePositionAxes = Axes.X;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
2024-08-20 16:45:37 +08:00
|
|
|
InternalChild = new Box { RelativeSizeAxes = Axes.Both };
|
|
|
|
Colour = colours.Gray5;
|
|
|
|
Alpha = 0.4f;
|
2024-07-10 17:34:05 +08:00
|
|
|
}
|
2024-07-12 13:18:41 +08:00
|
|
|
|
|
|
|
public LocalisableString TooltipText => $"{breakPeriod.StartTime.ToEditorFormattedString()} - {breakPeriod.EndTime.ToEditorFormattedString()} break time";
|
2017-09-26 14:44:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|