2017-05-30 16:12:11 +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
|
|
|
|
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Screens.Multiplayer;
|
|
|
|
using osu.Game.Database;
|
|
|
|
using osu.Game.Online.Multiplayer;
|
|
|
|
using osu.Game.Users;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
|
|
{
|
|
|
|
internal class TestCaseRoomInspector : TestCase
|
|
|
|
{
|
|
|
|
public override string Description => @"from the multiplayer lobby";
|
|
|
|
|
|
|
|
private RulesetDatabase rulesets;
|
|
|
|
|
|
|
|
public override void Reset()
|
|
|
|
{
|
|
|
|
base.Reset();
|
|
|
|
|
|
|
|
var room = new Room();
|
|
|
|
room.Name.Value = @"My Awesome Room";
|
|
|
|
room.Host.Value = new User { Username = @"flyte", Id = 3103765, Country = new Country { FlagName = @"JP" }};
|
|
|
|
room.Status.Value = new RoomStatusOpen();
|
|
|
|
room.Beatmap.Value = new BeatmapInfo
|
|
|
|
{
|
|
|
|
StarDifficulty = 3.7,
|
|
|
|
Ruleset = rulesets.GetRuleset(3),
|
|
|
|
Metadata = new BeatmapMetadata
|
|
|
|
{
|
|
|
|
Title = @"Platina",
|
|
|
|
Artist = @"Maaya Sakamoto",
|
|
|
|
Author = @"uwutm8",
|
|
|
|
},
|
2017-05-31 06:35:37 +08:00
|
|
|
OnlineInfo = new BeatmapOnlineInfo
|
|
|
|
{
|
|
|
|
Covers = new[] { @"https://assets.ppy.sh//beatmaps/560573/covers/cover.jpg?1492722343" },
|
|
|
|
},
|
2017-05-30 16:12:11 +08:00
|
|
|
};
|
|
|
|
room.MaxParticipants.Value = 200;
|
|
|
|
room.Participants.Value = new[] { new User { Username = @"flyte", Id = 3103765, GlobalRank = 1425 },
|
|
|
|
new User { Username = @"Cookiezi", Id = 124493, GlobalRank = 5466 },
|
|
|
|
new User { Username = @"Angelsim", Id = 1777162, GlobalRank = 2873 },
|
|
|
|
new User { Username = @"Rafis", Id = 2558286, GlobalRank = 4687 },
|
|
|
|
new User { Username = @"hvick225", Id = 50265, GlobalRank = 3258 },
|
|
|
|
new User { Username = @"peppy", Id = 2, GlobalRank = 6251 }};
|
|
|
|
|
|
|
|
RoomInspector inspector;
|
|
|
|
Add(inspector = new RoomInspector
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Room = room,
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep(@"change title", () => room.Name.Value = @"A Better Room Than The Above");
|
|
|
|
AddStep(@"change host", () => room.Host.Value = new User { Username = @"DrabWeb", Id = 6946022, Country = new Country { FlagName = @"CA" }});
|
|
|
|
AddStep(@"change status", () => room.Status.Value = new RoomStatusPlaying());
|
|
|
|
AddStep(@"change beatmap", () => room.Beatmap.Value = null);
|
|
|
|
AddStep(@"change max participants", () => room.MaxParticipants.Value = null);
|
|
|
|
AddStep(@"change participants", () => room.Participants.Value = new[]
|
|
|
|
{
|
|
|
|
new User { Username = @"filsdelama", Id = 2831793, GlobalRank = 8542 },
|
|
|
|
new User { Username = @"_index", Id = 652457, GlobalRank = 15024 }
|
|
|
|
});
|
|
|
|
|
|
|
|
AddStep(@"change room", () =>
|
|
|
|
{
|
|
|
|
var newRoom = new Room();
|
|
|
|
newRoom.Name.Value = @"My New, Better Than Ever Room";
|
|
|
|
newRoom.Host.Value = new User { Username = @"Angelsim", Id = 1777162, Country = new Country { FlagName = @"KR" }};
|
|
|
|
newRoom.Status.Value = new RoomStatusOpen();
|
|
|
|
newRoom.Beatmap.Value = new BeatmapInfo
|
|
|
|
{
|
|
|
|
StarDifficulty = 7.07,
|
|
|
|
Ruleset = rulesets.GetRuleset(0),
|
|
|
|
Metadata = new BeatmapMetadata
|
|
|
|
{
|
|
|
|
Title = @"xi",
|
|
|
|
Artist = @"FREEDOM DIVE",
|
|
|
|
Author = @"Nakagawa-Kanon",
|
|
|
|
},
|
2017-05-31 06:35:37 +08:00
|
|
|
OnlineInfo = new BeatmapOnlineInfo
|
|
|
|
{
|
|
|
|
Covers = new[] { @"https://assets.ppy.sh//beatmaps/39804/covers/cover.jpg?1456506845" },
|
|
|
|
},
|
2017-05-30 16:12:11 +08:00
|
|
|
};
|
|
|
|
newRoom.MaxParticipants.Value = 10;
|
|
|
|
newRoom.Participants.Value = new[]
|
|
|
|
{
|
|
|
|
new User { Username = @"Angelsim", Id = 1777162, GlobalRank = 4 },
|
|
|
|
new User { Username = @"HappyStick", Id = 256802, GlobalRank = 752 },
|
|
|
|
new User { Username = @"-Konpaku-", Id = 2258797, GlobalRank = 571 }
|
|
|
|
};
|
|
|
|
|
|
|
|
inspector.Room = newRoom;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(RulesetDatabase rulesets)
|
|
|
|
{
|
|
|
|
this.rulesets = rulesets;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|