Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game/Rulesets/Edit/Checks/Components/TimingCheckUtils.cs
2272 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.Collections.Generic;
using System.Linq;
using osu.Framework.Utils;
using osu.Game.Beatmaps.ControlPoints;

namespace osu.Game.Rulesets.Edit.Checks.Components
{
    public static class TimingCheckUtils
    {
        // Tolerance for exact time offset matching (in milliseconds)
        public const double TIME_OFFSET_TOLERANCE_MS = 0.01;

        /// <summary>
        /// Finds a timing control point that starts at approximately the same time (within 1ms after rounding).
        /// </summary>
        /// <param name="timingPoints">The collection of timing points to search.</param>
        /// <param name="time">The time to match against.</param>
        /// <returns>The matching timing control point, or null if none found.</returns>
        public static TimingControlPoint? FindMatchingTimingPoint(IEnumerable<TimingControlPoint> timingPoints, double time)
        {
            return timingPoints.FirstOrDefault(tp => (int)tp.Time == (int)time);
        }

        /// <summary>
        /// Finds a timing control point that starts at precisely the same time (within timing tolerance).
        /// </summary>
        /// <param name="timingPoints">The collection of timing points to search.</param>
        /// <param name="time">The time to match against.</param>
        /// <returns>The exact matching timing control point, or null if none found.</returns>
        public static TimingControlPoint? FindExactMatchingTimingPoint(IEnumerable<TimingControlPoint> timingPoints, double time)
        {
            return timingPoints.FirstOrDefault(tp => Precision.AlmostEquals(tp.Time, time, TIME_OFFSET_TOLERANCE_MS));
        }
    }
}