mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
101 lines
3.1 KiB
C#
101 lines
3.1 KiB
C#
// 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;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Beatmaps;
|
|
using OpenTK;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Database;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Screens.Play;
|
|
using OpenTK.Graphics;
|
|
using osu.Desktop.VisualTests.Beatmaps;
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
{
|
|
internal class TestCasePlayer : TestCase
|
|
{
|
|
protected Player Player;
|
|
private BeatmapDatabase db;
|
|
private RulesetDatabase rulesets;
|
|
|
|
public override string Description => @"Showing everything to play the game.";
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(BeatmapDatabase db, RulesetDatabase rulesets)
|
|
{
|
|
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);
|
|
|
|
if (beatmap?.Track == null)
|
|
{
|
|
var objects = new List<HitObject>();
|
|
|
|
int time = 1500;
|
|
for (int i = 0; i < 50; i++)
|
|
{
|
|
objects.Add(new HitCircle
|
|
{
|
|
StartTime = time,
|
|
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
|
|
{
|
|
HitObjects = objects,
|
|
BeatmapInfo = new BeatmapInfo
|
|
{
|
|
Difficulty = new BeatmapDifficulty(),
|
|
Ruleset = rulesets.Query<RulesetInfo>().First(),
|
|
Metadata = new BeatmapMetadata
|
|
{
|
|
Artist = @"Unknown",
|
|
Title = @"Sample Beatmap",
|
|
Author = @"peppy",
|
|
}
|
|
}
|
|
};
|
|
|
|
beatmap = new TestWorkingBeatmap(b);
|
|
}
|
|
|
|
Add(new Box
|
|
{
|
|
RelativeSizeAxes = Framework.Graphics.Axes.Both,
|
|
Colour = Color4.Black,
|
|
});
|
|
|
|
Add(Player = CreatePlayer(beatmap));
|
|
}
|
|
|
|
protected virtual Player CreatePlayer(WorkingBeatmap beatmap)
|
|
{
|
|
return new Player
|
|
{
|
|
Beatmap = beatmap
|
|
};
|
|
}
|
|
}
|
|
}
|