2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
2017-09-26 15:44:40 +09:00
|
|
|
using osu.Framework.Allocation;
|
2024-06-19 10:26:01 +02:00
|
|
|
using osu.Framework.Bindables;
|
2024-06-18 15:54:34 +02:00
|
|
|
using osu.Framework.Graphics;
|
2024-07-12 14:18:41 +09:00
|
|
|
using osu.Framework.Graphics.Cursor;
|
2024-07-10 11:34:05 +02:00
|
|
|
using osu.Framework.Graphics.Pooling;
|
2024-06-18 15:54:34 +02:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2024-07-12 14:18:41 +09:00
|
|
|
using osu.Framework.Localisation;
|
2017-09-26 15:44:40 +09:00
|
|
|
using osu.Game.Beatmaps.Timing;
|
2024-07-12 14:18:41 +09:00
|
|
|
using osu.Game.Extensions;
|
2017-09-26 15:44:40 +09:00
|
|
|
using osu.Game.Graphics;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2017-09-26 15:44:40 +09: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 11:49:42 +09:00
|
|
|
public partial class BreakPart : TimelinePart
|
2017-09-26 15:44:40 +09:00
|
|
|
{
|
2024-06-19 10:26:01 +02:00
|
|
|
private readonly BindableList<BreakPeriod> breaks = new BindableList<BreakPeriod>();
|
|
|
|
|
2024-07-10 11:34:05 +02:00
|
|
|
private DrawablePool<BreakVisualisation> pool = null!;
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
AddInternal(pool = new DrawablePool<BreakVisualisation>(10));
|
|
|
|
}
|
|
|
|
|
2021-01-25 18:43:36 +09:00
|
|
|
protected override void LoadBeatmap(EditorBeatmap beatmap)
|
2017-09-26 15:44:40 +09:00
|
|
|
{
|
2017-09-27 11:06:33 +08:00
|
|
|
base.LoadBeatmap(beatmap);
|
2024-06-19 10:26:01 +02:00
|
|
|
|
|
|
|
breaks.UnbindAll();
|
|
|
|
breaks.BindTo(beatmap.Breaks);
|
2024-07-10 11:34:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2024-06-19 10:26:01 +02:00
|
|
|
breaks.BindCollectionChanged((_, _) =>
|
|
|
|
{
|
2024-07-10 11:34:05 +02:00
|
|
|
Clear(disposeChildren: false);
|
|
|
|
foreach (var breakPeriod in breaks)
|
|
|
|
Add(pool.Get(v => v.BreakPeriod = breakPeriod));
|
2024-06-19 10:26:01 +02:00
|
|
|
}, true);
|
2017-09-26 15:44:40 +09:00
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2024-07-12 14:18:41 +09:00
|
|
|
private partial class BreakVisualisation : PoolableDrawable, IHasTooltip
|
2017-09-26 15:44:40 +09:00
|
|
|
{
|
2024-07-12 18:11:23 +09:00
|
|
|
private BreakPeriod breakPeriod = null!;
|
2024-07-12 14:18:41 +09:00
|
|
|
|
2024-07-10 11:34:05 +02:00
|
|
|
public BreakPeriod BreakPeriod
|
2017-09-26 15:44:40 +09:00
|
|
|
{
|
2024-07-10 11:34:05 +02:00
|
|
|
set
|
|
|
|
{
|
2024-07-12 14:18:41 +09:00
|
|
|
breakPeriod = value;
|
2024-07-10 11:34:05 +02:00
|
|
|
X = (float)value.StartTime;
|
|
|
|
Width = (float)value.Duration;
|
|
|
|
}
|
2017-09-26 15:44:40 +09:00
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2017-09-26 15:44:40 +09:00
|
|
|
[BackgroundDependencyLoader]
|
2024-07-10 11:34:05 +02:00
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
RelativePositionAxes = Axes.X;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
InternalChild = new Circle { RelativeSizeAxes = Axes.Both };
|
2024-07-12 13:57:36 +09:00
|
|
|
Colour = colours.Gray6;
|
2024-07-10 11:34:05 +02:00
|
|
|
}
|
2024-07-12 14:18:41 +09:00
|
|
|
|
|
|
|
public LocalisableString TooltipText => $"{breakPeriod.StartTime.ToEditorFormattedString()} - {breakPeriod.EndTime.ToEditorFormattedString()} break time";
|
2017-09-26 15:44:40 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|