mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 04:37:51 +08:00
49 lines
1.7 KiB
C#
49 lines
1.7 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 osu.Framework.Bindables;
|
|
using osu.Game.Online.Multiplayer;
|
|
|
|
namespace osu.Game.Screens.Multi
|
|
{
|
|
public interface IRoomManager
|
|
{
|
|
/// <summary>
|
|
/// Invoked when the <see cref="Room"/>s have been updated.
|
|
/// </summary>
|
|
event Action RoomsUpdated;
|
|
|
|
/// <summary>
|
|
/// Whether an initial listing of rooms has been received.
|
|
/// </summary>
|
|
Bindable<bool> InitialRoomsReceived { get; }
|
|
|
|
/// <summary>
|
|
/// All the active <see cref="Room"/>s.
|
|
/// </summary>
|
|
IBindableList<Room> Rooms { get; }
|
|
|
|
/// <summary>
|
|
/// Creates a new <see cref="Room"/>.
|
|
/// </summary>
|
|
/// <param name="room">The <see cref="Room"/> to create.</param>
|
|
/// <param name="onSuccess">An action to be invoked if the creation succeeds.</param>
|
|
/// <param name="onError">An action to be invoked if an error occurred.</param>
|
|
void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null);
|
|
|
|
/// <summary>
|
|
/// Joins a <see cref="Room"/>.
|
|
/// </summary>
|
|
/// <param name="room">The <see cref="Room"/> to join. <see cref="Room.RoomID"/> must be populated.</param>
|
|
/// <param name="onSuccess"></param>
|
|
/// <param name="onError"></param>
|
|
void JoinRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null);
|
|
|
|
/// <summary>
|
|
/// Parts the currently-joined <see cref="Room"/>.
|
|
/// </summary>
|
|
void PartRoom();
|
|
}
|
|
}
|