2018-01-05 11:21:19 +00:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-09-19 14:09:08 +00:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2017-09-20 06:40:27 +00:00
|
|
|
using System;
|
2017-09-20 07:59:03 +00:00
|
|
|
using System.Collections.Generic;
|
2017-09-20 07:40:37 +00:00
|
|
|
using osu.Framework.Audio.Track;
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2017-09-20 08:16:12 +00:00
|
|
|
using osu.Framework.Graphics;
|
2017-09-19 14:09:08 +00:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2017-09-20 08:16:12 +00:00
|
|
|
using OpenTK;
|
2017-09-26 06:45:27 +00:00
|
|
|
using osu.Game.Screens.Edit.Components.Timelines.Summary;
|
2017-09-26 08:56:16 +00:00
|
|
|
using osu.Framework.Configuration;
|
2017-09-19 14:09:08 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
{
|
2017-12-20 12:47:45 +00:00
|
|
|
public class TestCaseEditorSummaryTimeline : OsuTestCase
|
2017-09-19 14:09:08 +00:00
|
|
|
{
|
2017-09-20 07:40:37 +00:00
|
|
|
private const int length = 60000;
|
|
|
|
private readonly Random random;
|
|
|
|
|
2017-09-20 08:16:12 +00:00
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(SummaryTimeline) };
|
2017-09-20 07:59:03 +00:00
|
|
|
|
2017-09-26 08:56:16 +00:00
|
|
|
private readonly Bindable<WorkingBeatmap> beatmap = new Bindable<WorkingBeatmap>();
|
|
|
|
|
2017-09-20 07:48:30 +00:00
|
|
|
public TestCaseEditorSummaryTimeline()
|
2017-09-19 14:09:08 +00:00
|
|
|
{
|
2017-09-20 07:40:37 +00:00
|
|
|
random = new Random(1337);
|
|
|
|
|
2017-09-26 08:56:16 +00:00
|
|
|
SummaryTimeline summaryTimeline;
|
|
|
|
Add(summaryTimeline = new SummaryTimeline
|
2017-09-19 14:09:08 +00:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Size = new Vector2(500, 50)
|
|
|
|
});
|
2017-09-26 08:56:16 +00:00
|
|
|
|
|
|
|
summaryTimeline.Beatmap.BindTo(beatmap);
|
|
|
|
|
|
|
|
AddStep("New beatmap", newBeatmap);
|
|
|
|
|
|
|
|
newBeatmap();
|
2017-09-19 14:09:08 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 08:56:16 +00:00
|
|
|
private void newBeatmap()
|
2017-09-20 06:40:42 +00:00
|
|
|
{
|
2017-09-26 08:56:16 +00:00
|
|
|
var b = new Beatmap();
|
2017-09-20 07:40:37 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < random.Next(1, 10); i++)
|
2017-09-26 08:56:16 +00:00
|
|
|
b.ControlPointInfo.TimingPoints.Add(new TimingControlPoint { Time = random.Next(0, length) });
|
2017-09-20 07:40:37 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < random.Next(1, 5); i++)
|
2017-09-26 08:56:16 +00:00
|
|
|
b.ControlPointInfo.DifficultyPoints.Add(new DifficultyControlPoint { Time = random.Next(0, length) });
|
2017-09-20 06:40:42 +00:00
|
|
|
|
2017-09-20 07:40:37 +00:00
|
|
|
for (int i = 0; i < random.Next(1, 5); i++)
|
2017-09-26 08:56:16 +00:00
|
|
|
b.ControlPointInfo.EffectPoints.Add(new EffectControlPoint { Time = random.Next(0, length) });
|
2017-09-20 06:40:42 +00:00
|
|
|
|
2017-09-20 07:40:37 +00:00
|
|
|
for (int i = 0; i < random.Next(1, 5); i++)
|
2017-12-23 07:31:45 +00:00
|
|
|
b.ControlPointInfo.SamplePoints.Add(new SampleControlPoint { Time = random.Next(0, length) });
|
2017-09-20 06:40:42 +00:00
|
|
|
|
2017-09-26 08:56:16 +00:00
|
|
|
b.BeatmapInfo.Bookmarks = new int[random.Next(10, 30)];
|
|
|
|
for (int i = 0; i < b.BeatmapInfo.Bookmarks.Length; i++)
|
|
|
|
b.BeatmapInfo.Bookmarks[i] = random.Next(0, length);
|
2017-09-20 07:40:37 +00:00
|
|
|
|
2017-09-26 08:56:16 +00:00
|
|
|
beatmap.Value = new TestWorkingBeatmap(b);
|
2017-09-20 07:40:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private class TestWorkingBeatmap : WorkingBeatmap
|
|
|
|
{
|
|
|
|
private readonly Beatmap beatmap;
|
|
|
|
|
|
|
|
public TestWorkingBeatmap(Beatmap beatmap)
|
|
|
|
: base(beatmap.BeatmapInfo)
|
|
|
|
{
|
|
|
|
this.beatmap = beatmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override Texture GetBackground() => null;
|
|
|
|
|
|
|
|
protected override Beatmap GetBeatmap() => beatmap;
|
|
|
|
|
|
|
|
protected override Track GetTrack() => new TestTrack();
|
|
|
|
|
|
|
|
private class TestTrack : TrackVirtual
|
|
|
|
{
|
|
|
|
public TestTrack()
|
|
|
|
{
|
|
|
|
Length = length;
|
|
|
|
}
|
|
|
|
}
|
2017-09-20 06:40:42 +00:00
|
|
|
}
|
2017-09-19 14:09:08 +00:00
|
|
|
}
|
|
|
|
}
|