2017-02-08 01:26:17 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-03-23 18:15:53 +08:00
|
|
|
|
using System.Linq;
|
2017-02-07 13:49:41 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-04-18 17:40:02 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2017-02-04 03:22:02 +08:00
|
|
|
|
|
2017-03-02 19:20:27 +08:00
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
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;
|
2017-02-07 13:49:41 +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;
|
2017-02-08 01:02:56 +08:00
|
|
|
|
|
2017-04-18 17:40:02 +08:00
|
|
|
|
const int granularity = 200;
|
2017-02-10 06:51:05 +08:00
|
|
|
|
|
2017-04-18 17:40:02 +08:00
|
|
|
|
var lastHit = ((objects.Last() as IHasEndTime)?.EndTime ?? objects.Last().StartTime) + 1;
|
2017-02-10 06:51:05 +08:00
|
|
|
|
|
2017-04-18 17:40:02 +08:00
|
|
|
|
var interval = lastHit / granularity;
|
2017-02-10 07:08:23 +08:00
|
|
|
|
|
2017-04-18 17:40:02 +08:00
|
|
|
|
var values = new int[granularity];
|
2017-02-10 07:08:23 +08:00
|
|
|
|
|
2017-04-18 17:40:02 +08:00
|
|
|
|
foreach (var h in objects)
|
2017-03-23 17:37:12 +08:00
|
|
|
|
{
|
2017-04-18 17:40:02 +08:00
|
|
|
|
IHasEndTime end = h as IHasEndTime;
|
2017-03-23 17:37:12 +08:00
|
|
|
|
|
2017-04-18 17:40:02 +08:00
|
|
|
|
int startRange = (int)(h.StartTime / interval);
|
|
|
|
|
int endRange = (int)((end?.EndTime ?? h.StartTime) / interval);
|
|
|
|
|
for (int i = startRange; i <= endRange; i++)
|
|
|
|
|
values[i]++;
|
2017-03-23 17:37:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-18 17:40:02 +08:00
|
|
|
|
Values = values;
|
2017-03-23 17:37:12 +08:00
|
|
|
|
}
|
2017-03-02 19:20:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|