osu/osu.Game/Tests/Visual/Multiplayer/TestMultiplayerRoomManager.cs

34 lines
1.3 KiB
C#
Raw Normal View History

2020-12-18 16:17:24 +00: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.
using System.Collections.Generic;
2020-12-25 04:38:11 +00:00
using osu.Game.Online.Rooms;
2021-06-25 09:02:53 +00:00
using osu.Game.Screens.OnlinePlay.Components;
using osu.Game.Screens.OnlinePlay.Multiplayer;
using osu.Game.Tests.Visual.OnlinePlay;
2020-12-18 16:17:24 +00:00
2020-12-25 04:38:11 +00:00
namespace osu.Game.Tests.Visual.Multiplayer
2020-12-18 16:17:24 +00:00
{
2021-06-25 09:02:53 +00:00
/// <summary>
2021-10-27 07:10:22 +00:00
/// A <see cref="RoomManager"/> for use in multiplayer test scenes.
/// Should generally not be used by itself outside of a <see cref="MultiplayerTestScene"/>.
2021-06-25 09:02:53 +00:00
/// </summary>
2021-10-27 07:10:22 +00:00
public class TestMultiplayerRoomManager : MultiplayerRoomManager
2020-12-18 16:17:24 +00:00
{
private readonly TestRoomRequestsHandler requestsHandler;
public TestMultiplayerRoomManager(TestRoomRequestsHandler requestsHandler)
{
this.requestsHandler = requestsHandler;
}
2020-12-18 16:17:24 +00:00
2021-10-27 07:10:22 +00:00
public IReadOnlyList<Room> ServerSideRooms => requestsHandler.ServerSideRooms;
2020-12-18 16:17:24 +00:00
/// <summary>
/// Adds a room to a local "server-side" list that's returned when a <see cref="GetRoomsRequest"/> is fired.
/// </summary>
/// <param name="room">The room.</param>
2021-10-27 07:10:22 +00:00
public void AddServerSideRoom(Room room) => requestsHandler.AddServerSideRoom(room);
2020-12-18 16:17:24 +00:00
}
}