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
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
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 the control points.
|
|
|
|
/// </summary>
|
|
|
|
public class ControlPointPart : TimelinePart
|
|
|
|
{
|
|
|
|
protected override void LoadBeatmap(WorkingBeatmap beatmap)
|
|
|
|
{
|
|
|
|
base.LoadBeatmap(beatmap);
|
|
|
|
|
|
|
|
ControlPointInfo cpi = beatmap.Beatmap.ControlPointInfo;
|
|
|
|
|
|
|
|
cpi.TimingPoints.ForEach(addTimingPoint);
|
|
|
|
|
|
|
|
// Consider all non-timing points as the same type
|
|
|
|
cpi.SamplePoints.Select(c => (ControlPoint)c)
|
2019-02-28 12:31:40 +08:00
|
|
|
.Concat(cpi.EffectPoints)
|
|
|
|
.Concat(cpi.DifficultyPoints)
|
|
|
|
.Distinct()
|
|
|
|
// Non-timing points should not be added where there are timing points
|
|
|
|
.Where(c => cpi.TimingPointAt(c.Time).Time != c.Time)
|
|
|
|
.ForEach(addNonTimingPoint);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void addTimingPoint(ControlPoint controlPoint) => Add(new TimingPointVisualisation(controlPoint));
|
|
|
|
private void addNonTimingPoint(ControlPoint controlPoint) => Add(new NonTimingPointVisualisation(controlPoint));
|
|
|
|
|
|
|
|
private class TimingPointVisualisation : ControlPointVisualisation
|
|
|
|
{
|
|
|
|
public TimingPointVisualisation(ControlPoint controlPoint)
|
|
|
|
: base(controlPoint)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours) => Colour = colours.YellowDark;
|
|
|
|
}
|
|
|
|
|
|
|
|
private class NonTimingPointVisualisation : ControlPointVisualisation
|
|
|
|
{
|
|
|
|
public NonTimingPointVisualisation(ControlPoint controlPoint)
|
|
|
|
: base(controlPoint)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours) => Colour = colours.Green;
|
|
|
|
}
|
|
|
|
|
|
|
|
private abstract class ControlPointVisualisation : PointVisualisation
|
|
|
|
{
|
|
|
|
protected ControlPointVisualisation(ControlPoint controlPoint)
|
|
|
|
: base(controlPoint.Time)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|