2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2017-03-23 10:15:53 +00:00
|
|
|
|
using System.Linq;
|
2017-02-07 05:49:41 +00:00
|
|
|
|
using System.Collections.Generic;
|
2017-09-14 03:58:32 +00:00
|
|
|
|
using System.Diagnostics;
|
2023-05-25 08:15:31 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-04-18 09:40:02 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-07-27 07:19:21 +00:00
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
2017-03-02 11:20:27 +00:00
|
|
|
|
{
|
2023-01-18 06:45:16 +00:00
|
|
|
|
public partial class DefaultSongProgressGraph : SquareGraph
|
2017-02-03 19:22:02 +00:00
|
|
|
|
{
|
2017-04-18 09:40:02 +00:00
|
|
|
|
private IEnumerable<HitObject> objects;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-18 09:40:02 +00:00
|
|
|
|
public IEnumerable<HitObject> Objects
|
2017-03-24 03:41:14 +00:00
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
2017-04-18 09:40:02 +00:00
|
|
|
|
objects = value;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-18 09:40:02 +00:00
|
|
|
|
const int granularity = 200;
|
2017-07-07 12:05:55 +00:00
|
|
|
|
Values = new int[granularity];
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-07-07 12:05:55 +00:00
|
|
|
|
if (!objects.Any())
|
|
|
|
|
return;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2023-05-25 08:15:31 +00:00
|
|
|
|
(double firstHit, double lastHit) = BeatmapExtensions.CalculatePlayableBounds(objects);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-19 07:02:51 +00:00
|
|
|
|
if (lastHit == 0)
|
|
|
|
|
lastHit = objects.Last().StartTime;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-10-27 04:04:41 +00:00
|
|
|
|
double interval = (lastHit - firstHit + 1) / granularity;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-18 09:40:02 +00:00
|
|
|
|
foreach (var h in objects)
|
2017-03-23 09:37:12 +00:00
|
|
|
|
{
|
2021-10-27 04:04:41 +00:00
|
|
|
|
double endTime = h.GetEndTime();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-09-14 04:13:54 +00:00
|
|
|
|
Debug.Assert(endTime >= h.StartTime);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-06-08 06:48:42 +00:00
|
|
|
|
int startRange = (int)((h.StartTime - firstHit) / interval);
|
2017-09-14 03:58:32 +00:00
|
|
|
|
int endRange = (int)((endTime - firstHit) / interval);
|
2017-04-18 09:40:02 +00:00
|
|
|
|
for (int i = startRange; i <= endRange; i++)
|
2017-07-07 12:05:55 +00:00
|
|
|
|
Values[i]++;
|
2017-03-23 09:37:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-02 11:20:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|