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-12-20 14:17:33 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Online.Multiplayer;
|
2018-12-26 15:46:50 +08:00
|
|
|
|
using osu.Game.Online.Multiplayer.GameTypes;
|
2018-12-20 14:17:33 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
|
|
|
|
using osu.Game.Screens.Multi.Match.Components;
|
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
2018-12-20 14:17:33 +08:00
|
|
|
|
{
|
2019-02-05 18:00:01 +08:00
|
|
|
|
public class TestCaseMatchHeader : MultiplayerTestCase
|
2018-12-20 14:17:33 +08:00
|
|
|
|
{
|
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(Header)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public TestCaseMatchHeader()
|
|
|
|
|
{
|
2019-02-05 18:00:01 +08:00
|
|
|
|
Room.Playlist.Add(new PlaylistItem
|
2018-12-20 14:17:33 +08:00
|
|
|
|
{
|
2018-12-22 13:12:27 +08:00
|
|
|
|
Beatmap = new BeatmapInfo
|
2018-12-20 14:17:33 +08:00
|
|
|
|
{
|
2018-12-22 13:12:27 +08:00
|
|
|
|
Metadata = new BeatmapMetadata
|
|
|
|
|
{
|
|
|
|
|
Title = "Title",
|
|
|
|
|
Artist = "Artist",
|
|
|
|
|
AuthorString = "Author",
|
|
|
|
|
},
|
|
|
|
|
Version = "Version",
|
|
|
|
|
Ruleset = new OsuRuleset().RulesetInfo
|
2018-12-20 14:17:33 +08:00
|
|
|
|
},
|
2018-12-22 13:12:27 +08:00
|
|
|
|
RequiredMods =
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
new OsuModNoFail(),
|
|
|
|
|
new OsuModRelax(),
|
|
|
|
|
}
|
|
|
|
|
});
|
2018-12-20 14:17:33 +08:00
|
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
|
Room.Type.Value = new GameTypeTimeshift();
|
2018-12-20 14:17:33 +08:00
|
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
|
Child = new Header();
|
2018-12-20 14:17:33 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|