mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 15:52:54 +08:00
Merge pull request #23659 from peppy/beatmap-length-calcualtions
Centralise beatmap playable duration and bounds lookups
This commit is contained in:
commit
8a538a0675
@ -7,6 +7,7 @@ using System.Diagnostics;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Colour;
|
using osu.Framework.Graphics.Colour;
|
||||||
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Graphics.UserInterface;
|
using osu.Game.Graphics.UserInterface;
|
||||||
using osu.Game.Rulesets.Objects;
|
using osu.Game.Rulesets.Objects;
|
||||||
using osu.Game.Rulesets.Osu;
|
using osu.Game.Rulesets.Osu;
|
||||||
@ -137,8 +138,7 @@ namespace osu.Game.Tests.Visual.UserInterface
|
|||||||
if (!objects.Any())
|
if (!objects.Any())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
double firstHit = objects.First().StartTime;
|
(double firstHit, double lastHit) = BeatmapExtensions.CalculatePlayableBounds(objects);
|
||||||
double lastHit = objects.Max(o => o.GetEndTime());
|
|
||||||
|
|
||||||
if (lastHit == 0)
|
if (lastHit == 0)
|
||||||
lastHit = objects.Last().StartTime;
|
lastHit = objects.Last().StartTime;
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using osu.Framework.Extensions.ObjectExtensions;
|
using osu.Framework.Extensions.ObjectExtensions;
|
||||||
using osu.Framework.Logging;
|
using osu.Framework.Logging;
|
||||||
@ -11,7 +10,6 @@ using osu.Framework.Platform;
|
|||||||
using osu.Framework.Threading;
|
using osu.Framework.Threading;
|
||||||
using osu.Game.Database;
|
using osu.Game.Database;
|
||||||
using osu.Game.Online.API;
|
using osu.Game.Online.API;
|
||||||
using osu.Game.Rulesets.Objects;
|
|
||||||
|
|
||||||
namespace osu.Game.Beatmaps
|
namespace osu.Game.Beatmaps
|
||||||
{
|
{
|
||||||
@ -74,7 +72,7 @@ namespace osu.Game.Beatmaps
|
|||||||
var calculator = ruleset.CreateDifficultyCalculator(working);
|
var calculator = ruleset.CreateDifficultyCalculator(working);
|
||||||
|
|
||||||
beatmap.StarRating = calculator.Calculate().StarRating;
|
beatmap.StarRating = calculator.Calculate().StarRating;
|
||||||
beatmap.Length = calculateLength(working.Beatmap);
|
beatmap.Length = working.Beatmap.CalculatePlayableLength();
|
||||||
beatmap.BPM = 60000 / working.Beatmap.GetMostCommonBeatLength();
|
beatmap.BPM = 60000 / working.Beatmap.GetMostCommonBeatLength();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -82,20 +80,6 @@ namespace osu.Game.Beatmaps
|
|||||||
workingBeatmapCache.Invalidate(beatmapSet);
|
workingBeatmapCache.Invalidate(beatmapSet);
|
||||||
});
|
});
|
||||||
|
|
||||||
private double calculateLength(IBeatmap b)
|
|
||||||
{
|
|
||||||
if (!b.HitObjects.Any())
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
var lastObject = b.HitObjects.Last();
|
|
||||||
|
|
||||||
//TODO: this isn't always correct (consider mania where a non-last object may last for longer than the last in the list).
|
|
||||||
double endTime = lastObject.GetEndTime();
|
|
||||||
double startTime = b.HitObjects.First().StartTime;
|
|
||||||
|
|
||||||
return endTime - startTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
#region Implementation of IDisposable
|
#region Implementation of IDisposable
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
|
@ -104,6 +104,19 @@ namespace osu.Game.Beatmaps
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Find the total milliseconds between the first and last hittable objects.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// This is cached to <see cref="BeatmapInfo.Length"/>, so using that is preferable when available.
|
||||||
|
/// </remarks>
|
||||||
|
public static double CalculatePlayableLength(this IBeatmap beatmap) => CalculatePlayableLength(beatmap.HitObjects);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Find the timestamps in milliseconds of the start and end of the playable region.
|
||||||
|
/// </summary>
|
||||||
|
public static (double start, double end) CalculatePlayableBounds(this IBeatmap beatmap) => CalculatePlayableBounds(beatmap.HitObjects);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Find the absolute end time of the latest <see cref="HitObject"/> in a beatmap. Will throw if beatmap contains no objects.
|
/// Find the absolute end time of the latest <see cref="HitObject"/> in a beatmap. Will throw if beatmap contains no objects.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -114,5 +127,36 @@ namespace osu.Game.Beatmaps
|
|||||||
/// It's not super efficient so calls should be kept to a minimum.
|
/// It's not super efficient so calls should be kept to a minimum.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public static double GetLastObjectTime(this IBeatmap beatmap) => beatmap.HitObjects.Max(h => h.GetEndTime());
|
public static double GetLastObjectTime(this IBeatmap beatmap) => beatmap.HitObjects.Max(h => h.GetEndTime());
|
||||||
|
|
||||||
|
#region Helper methods
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Find the total milliseconds between the first and last hittable objects.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// This is cached to <see cref="BeatmapInfo.Length"/>, so using that is preferable when available.
|
||||||
|
/// </remarks>
|
||||||
|
public static double CalculatePlayableLength(IEnumerable<HitObject> objects)
|
||||||
|
{
|
||||||
|
(double start, double end) = CalculatePlayableBounds(objects);
|
||||||
|
|
||||||
|
return end - start;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Find the timestamps in milliseconds of the start and end of the playable region.
|
||||||
|
/// </summary>
|
||||||
|
public static (double start, double end) CalculatePlayableBounds(IEnumerable<HitObject> objects)
|
||||||
|
{
|
||||||
|
if (!objects.Any())
|
||||||
|
return (0, 0);
|
||||||
|
|
||||||
|
double lastObjectTime = objects.Max(o => o.GetEndTime());
|
||||||
|
double firstObjectTime = objects.First().StartTime;
|
||||||
|
|
||||||
|
return (firstObjectTime, lastObjectTime);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,7 @@ using System.Collections.Generic;
|
|||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Rulesets.Objects;
|
using osu.Game.Rulesets.Objects;
|
||||||
using osu.Game.Graphics.UserInterface;
|
using osu.Game.Graphics.UserInterface;
|
||||||
|
|
||||||
@ -26,8 +27,7 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
if (!objects.Any())
|
if (!objects.Any())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
double firstHit = objects.First().StartTime;
|
(double firstHit, double lastHit) = BeatmapExtensions.CalculatePlayableBounds(objects);
|
||||||
double lastHit = objects.Max(o => o.GetEndTime());
|
|
||||||
|
|
||||||
if (lastHit == 0)
|
if (lastHit == 0)
|
||||||
lastHit = objects.Last().StartTime;
|
lastHit = objects.Last().StartTime;
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Rulesets.Objects;
|
using osu.Game.Rulesets.Objects;
|
||||||
|
|
||||||
namespace osu.Game.Screens.Play.HUD
|
namespace osu.Game.Screens.Play.HUD
|
||||||
@ -26,8 +27,7 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
if (!objects.Any())
|
if (!objects.Any())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
double firstHit = objects.First().StartTime;
|
(double firstHit, double lastHit) = BeatmapExtensions.CalculatePlayableBounds(objects);
|
||||||
double lastHit = objects.Max(o => o.GetEndTime());
|
|
||||||
|
|
||||||
if (lastHit == 0)
|
if (lastHit == 0)
|
||||||
lastHit = objects.Last().StartTime;
|
lastHit = objects.Last().StartTime;
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Timing;
|
using osu.Framework.Timing;
|
||||||
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Rulesets.Objects;
|
using osu.Game.Rulesets.Objects;
|
||||||
using osu.Game.Rulesets.UI;
|
using osu.Game.Rulesets.UI;
|
||||||
using osu.Game.Skinning;
|
using osu.Game.Skinning;
|
||||||
@ -52,9 +52,9 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
set
|
set
|
||||||
{
|
{
|
||||||
objects = value;
|
objects = value;
|
||||||
FirstHitTime = objects.FirstOrDefault()?.StartTime ?? 0;
|
|
||||||
//TODO: this isn't always correct (consider mania where a non-last object may last for longer than the last in the list).
|
(FirstHitTime, LastHitTime) = BeatmapExtensions.CalculatePlayableBounds(objects);
|
||||||
LastHitTime = objects.LastOrDefault()?.GetEndTime() ?? 0;
|
|
||||||
UpdateObjects(objects);
|
UpdateObjects(objects);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user