Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game/Screens/Edit/Components/Timelines/Summary/Parts/GroupVisualisation.cs
4610 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps.ControlPoints;

namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Parts
{
    public partial class GroupVisualisation : CompositeDrawable
    {
        public readonly ControlPointGroup Group;

        private readonly IBindableList<ControlPoint> controlPoints = new BindableList<ControlPoint>();

        private bool showScrollSpeed;

        public GroupVisualisation(ControlPointGroup group)
        {
            RelativePositionAxes = Axes.X;

            RelativeSizeAxes = Axes.Both;
            Origin = Anchor.TopLeft;

            Group = group;
            X = (float)group.Time;
        }

        [BackgroundDependencyLoader]
        private void load(EditorBeatmap beatmap)
        {
            showScrollSpeed = beatmap.BeatmapInfo.Ruleset.CreateInstance().EditorShowScrollSpeed;

            controlPoints.BindTo(Group.ControlPoints);
            controlPoints.BindCollectionChanged((_, _) =>
            {
                ClearInternal();

                if (controlPoints.Count == 0)
                    return;

                foreach (var point in Group.ControlPoints)
                {
                    switch (point)
                    {
                        case TimingControlPoint:
                            AddInternal(new ControlPointVisualisation(point)
                            {
                                // importantly, override the x position being set since we do that above.
                                X = 0,
                                Y = -0.4f,
                            });
                            break;

                        case EffectControlPoint:
                            if (!showScrollSpeed)
                                return;

                            AddInternal(new ControlPointVisualisation(point)
                            {
                                // importantly, override the x position being set since we do that above.
                                X = 0,
                            });
                            break;
                    }
                }
            }, true);
        }

        /// <summary>
        /// For display purposes, check whether the proposed group is made redundant by this visualisation group.
        /// </summary>
        public bool IsVisuallyRedundant(ControlPointGroup other) =>
            other.ControlPoints.All(c => InternalChildren.OfType<IControlPointVisualisation>().Any(c2 => c2.IsVisuallyRedundant(c)));
    }
}