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