1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:47:36 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCasePlayer.cs

101 lines
3.1 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
2017-03-28 20:03:34 +08:00
using osu.Framework.Testing;
using osu.Game.Beatmaps;
using OpenTK;
2016-11-17 20:29:35 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Game.Database;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Osu.Objects;
2016-11-14 16:23:33 +08:00
using osu.Game.Screens.Play;
2016-11-17 20:29:35 +08:00
using OpenTK.Graphics;
using osu.Desktop.VisualTests.Beatmaps;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Osu.UI;
namespace osu.Desktop.VisualTests.Tests
{
2017-03-07 09:59:19 +08:00
internal class TestCasePlayer : TestCase
{
protected Player Player;
private BeatmapDatabase db;
2017-04-17 18:44:03 +08:00
private RulesetDatabase rulesets;
public override string Description => @"Showing everything to play the game.";
[BackgroundDependencyLoader]
2017-04-17 18:44:03 +08:00
private void load(BeatmapDatabase db, RulesetDatabase rulesets)
{
2017-04-17 18:44:03 +08:00
this.rulesets = rulesets;
this.db = db;
}
public override void Reset()
{
base.Reset();
WorkingBeatmap beatmap = null;
var beatmapInfo = db.Query<BeatmapInfo>().FirstOrDefault(b => b.RulesetID == 0);
if (beatmapInfo != null)
beatmap = db.GetWorkingBeatmap(beatmapInfo);
2017-02-23 15:44:59 +08:00
if (beatmap?.Track == null)
{
var objects = new List<HitObject>();
int time = 1500;
for (int i = 0; i < 50; i++)
{
2017-03-07 09:59:19 +08:00
objects.Add(new HitCircle
{
StartTime = time,
2017-04-18 11:19:39 +08:00
Position = new Vector2(i % 4 == 0 || i % 4 == 2 ? 0 : OsuPlayfield.BASE_SIZE.X,
i % 4 < 2 ? 0 : OsuPlayfield.BASE_SIZE.Y),
NewCombo = i % 4 == 0
});
time += 500;
}
Beatmap b = new Beatmap
{
2017-02-22 22:27:29 +08:00
HitObjects = objects,
BeatmapInfo = new BeatmapInfo
{
Difficulty = new BeatmapDifficulty(),
2017-04-17 18:44:03 +08:00
Ruleset = rulesets.Query<RulesetInfo>().First(),
2017-02-22 22:27:29 +08:00
Metadata = new BeatmapMetadata
{
Artist = @"Unknown",
Title = @"Sample Beatmap",
Author = @"peppy",
}
}
};
2016-11-02 17:08:08 +08:00
beatmap = new TestWorkingBeatmap(b);
}
2016-11-02 17:08:08 +08:00
2016-11-17 20:29:35 +08:00
Add(new Box
{
RelativeSizeAxes = Framework.Graphics.Axes.Both,
Colour = Color4.Black,
2016-11-17 20:29:35 +08:00
});
Add(Player = CreatePlayer(beatmap));
}
protected virtual Player CreatePlayer(WorkingBeatmap beatmap)
{
return new Player
2017-02-22 20:43:29 +08:00
{
Beatmap = beatmap
};
}
}
}