mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 02:59:48 +08:00
103 lines
3.5 KiB
C#
103 lines
3.5 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Online.Multiplayer;
|
|
using osu.Game.Screens.Multi;
|
|
using osu.Game.Screens.Multi.Lounge.Components;
|
|
using osu.Game.Users;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
|
{
|
|
public class TestSceneLoungeRoomsContainer : MultiplayerTestScene
|
|
{
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
{
|
|
typeof(RoomsContainer),
|
|
typeof(DrawableRoom)
|
|
};
|
|
|
|
[Cached(Type = typeof(IRoomManager))]
|
|
private TestRoomManager roomManager = new TestRoomManager();
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
RoomsContainer container;
|
|
|
|
Child = container = new RoomsContainer
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Width = 0.5f,
|
|
JoinRequested = joinRequested
|
|
};
|
|
|
|
AddStep("clear rooms", () => roomManager.Rooms.Clear());
|
|
|
|
AddStep("add rooms", () =>
|
|
{
|
|
for (int i = 0; i < 3; i++)
|
|
{
|
|
roomManager.Rooms.Add(new Room
|
|
{
|
|
RoomID = { Value = i },
|
|
Name = { Value = $"Room {i}" },
|
|
Host = { Value = new User { Username = "Host" } },
|
|
EndDate = { Value = DateTimeOffset.Now + TimeSpan.FromSeconds(10) }
|
|
});
|
|
}
|
|
});
|
|
|
|
AddAssert("has 2 rooms", () => container.Rooms.Count == 3);
|
|
AddStep("remove first room", () => roomManager.Rooms.Remove(roomManager.Rooms.FirstOrDefault()));
|
|
AddAssert("has 2 rooms", () => container.Rooms.Count == 2);
|
|
AddAssert("first room removed", () => container.Rooms.All(r => r.Room.RoomID.Value != 0));
|
|
|
|
AddStep("select first room", () => container.Rooms.First().Action?.Invoke());
|
|
AddAssert("first room selected", () => Room == roomManager.Rooms.First());
|
|
|
|
AddStep("join first room", () => container.Rooms.First().Action?.Invoke());
|
|
AddAssert("first room joined", () => roomManager.Rooms.First().Status.Value is JoinedRoomStatus);
|
|
}
|
|
|
|
private void joinRequested(Room room) => room.Status.Value = new JoinedRoomStatus();
|
|
|
|
private class TestRoomManager : IRoomManager
|
|
{
|
|
public event Action RoomsUpdated
|
|
{
|
|
add { }
|
|
remove { }
|
|
}
|
|
|
|
public readonly BindableList<Room> Rooms = new BindableList<Room>();
|
|
IBindableList<Room> IRoomManager.Rooms => Rooms;
|
|
|
|
public void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null) => Rooms.Add(room);
|
|
|
|
public void JoinRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)
|
|
{
|
|
}
|
|
|
|
public void PartRoom()
|
|
{
|
|
}
|
|
}
|
|
|
|
private class JoinedRoomStatus : RoomStatus
|
|
{
|
|
public override string Message => "Joined";
|
|
|
|
public override Color4 GetAppropriateColour(OsuColour colours) => colours.Yellow;
|
|
}
|
|
}
|
|
}
|