// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osuTK; using osu.Game.Beatmaps; using System; using System.Collections.Generic; using System.Linq; using osu.Game.Replays; using osu.Game.Rulesets.Mods; using osu.Game.Rulesets.Osu.UI; using osu.Game.Rulesets.Replays; namespace osu.Game.Rulesets.Osu.Replays { public abstract class OsuAutoGeneratorBase : AutoGenerator { #region Constants /// /// Constants (for spinners). /// protected static readonly Vector2 SPINNER_CENTRE = OsuPlayfield.BASE_SIZE / 2; public const float SPIN_RADIUS = 50; #endregion #region Construction / Initialisation protected Replay Replay; protected List Frames => Replay.Frames; private readonly IReadOnlyList timeAffectingMods; protected OsuAutoGeneratorBase(IBeatmap beatmap, IReadOnlyList mods) : base(beatmap) { Replay = new Replay(); timeAffectingMods = mods.OfType().ToList(); } #endregion #region Utilities /// /// Returns the real duration of time between and /// after applying rate-affecting mods. /// /// /// This method should only be used when and are very close. /// That is because the track rate might be changing with time, /// and the method used here is a rough instantaneous approximation. /// /// The start time of the time delta, in original track time. /// The end time of the time delta, in original track time. protected double ApplyModsToTimeDelta(double startTime, double endTime) { double delta = endTime - startTime; foreach (var mod in timeAffectingMods) delta /= mod.ApplyToRate(startTime); return delta; } protected double ApplyModsToRate(double time, double rate) { foreach (var mod in timeAffectingMods) rate = mod.ApplyToRate(time, rate); return rate; } /// /// Calculates the interval after which the next should be generated, /// in milliseconds. /// /// The time of the previous frame. protected double GetFrameDelay(double time) => ApplyModsToRate(time, 1000.0 / 60); private class ReplayFrameComparer : IComparer { public int Compare(ReplayFrame f1, ReplayFrame f2) { if (f1 == null) throw new ArgumentNullException(nameof(f1)); if (f2 == null) throw new ArgumentNullException(nameof(f2)); return f1.Time.CompareTo(f2.Time); } } private static readonly IComparer replay_frame_comparer = new ReplayFrameComparer(); protected int FindInsertionIndex(ReplayFrame frame) { int index = Frames.BinarySearch(frame, replay_frame_comparer); if (index < 0) { index = ~index; } else { // Go to the first index which is actually bigger while (index < Frames.Count && frame.Time == Frames[index].Time) { ++index; } } return index; } protected void AddFrameToReplay(ReplayFrame frame) => Frames.Insert(FindInsertionIndex(frame), frame); protected static Vector2 CirclePosition(double t, double radius) => new Vector2((float)(Math.Cos(t) * radius), (float)(Math.Sin(t) * radius)); #endregion } }