2020-12-04 14:34:31 +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.
|
|
|
|
|
|
|
|
using System;
|
2020-12-07 17:50:02 +08:00
|
|
|
using System.Collections.Generic;
|
2021-01-26 15:26:03 +08:00
|
|
|
using MessagePack;
|
2020-12-09 14:05:57 +08:00
|
|
|
using Newtonsoft.Json;
|
2021-11-16 12:49:06 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-04 14:34:31 +08:00
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
namespace osu.Game.Online.Multiplayer
|
2020-12-04 14:34:31 +08:00
|
|
|
{
|
2020-12-08 15:02:35 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A multiplayer room.
|
|
|
|
/// </summary>
|
2020-12-04 14:34:31 +08:00
|
|
|
[Serializable]
|
2021-01-26 15:26:03 +08:00
|
|
|
[MessagePackObject]
|
2020-12-04 14:34:31 +08:00
|
|
|
public class MultiplayerRoom
|
|
|
|
{
|
2020-12-08 14:54:52 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The ID of the room, used for database persistence.
|
|
|
|
/// </summary>
|
2021-01-26 15:26:03 +08:00
|
|
|
[Key(0)]
|
2020-12-08 15:44:47 +08:00
|
|
|
public readonly long RoomID;
|
2020-12-04 14:34:31 +08:00
|
|
|
|
2020-12-08 14:54:52 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The current state of the room (ie. whether it is in progress or otherwise).
|
|
|
|
/// </summary>
|
2021-01-26 15:26:03 +08:00
|
|
|
[Key(1)]
|
2020-12-04 14:34:31 +08:00
|
|
|
public MultiplayerRoomState State { get; set; }
|
2020-12-07 17:50:02 +08:00
|
|
|
|
2020-12-08 14:54:52 +08:00
|
|
|
/// <summary>
|
|
|
|
/// All currently enforced game settings for this room.
|
|
|
|
/// </summary>
|
2021-01-26 15:26:03 +08:00
|
|
|
[Key(2)]
|
2020-12-09 11:12:03 +08:00
|
|
|
public MultiplayerRoomSettings Settings { get; set; } = new MultiplayerRoomSettings();
|
2020-12-08 13:33:38 +08:00
|
|
|
|
2020-12-08 14:54:52 +08:00
|
|
|
/// <summary>
|
2020-12-08 15:02:35 +08:00
|
|
|
/// All users currently in this room.
|
2020-12-08 14:54:52 +08:00
|
|
|
/// </summary>
|
2021-01-26 15:26:03 +08:00
|
|
|
[Key(3)]
|
2021-07-23 17:16:53 +08:00
|
|
|
public IList<MultiplayerRoomUser> Users { get; set; } = new List<MultiplayerRoomUser>();
|
2020-12-08 14:46:11 +08:00
|
|
|
|
2020-12-08 15:15:51 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The host of this room, in control of changing room settings.
|
|
|
|
/// </summary>
|
2021-01-26 15:26:03 +08:00
|
|
|
[Key(4)]
|
2020-12-08 15:15:51 +08:00
|
|
|
public MultiplayerRoomUser? Host { get; set; }
|
|
|
|
|
2021-07-21 17:59:02 +08:00
|
|
|
[Key(5)]
|
2021-08-03 14:43:04 +08:00
|
|
|
public MatchRoomState? MatchState { get; set; }
|
2021-07-21 17:59:02 +08:00
|
|
|
|
2021-11-16 12:49:06 +08:00
|
|
|
[Key(6)]
|
|
|
|
public IList<MultiplayerPlaylistItem> Playlist { get; set; } = new List<MultiplayerPlaylistItem>();
|
|
|
|
|
2022-03-17 18:14:46 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The currently-running countdown.
|
|
|
|
/// </summary>
|
|
|
|
[Key(7)]
|
|
|
|
public MultiplayerCountdown? Countdown { get; set; }
|
|
|
|
|
2020-12-09 14:05:57 +08:00
|
|
|
[JsonConstructor]
|
2021-01-26 15:26:03 +08:00
|
|
|
[SerializationConstructor]
|
|
|
|
public MultiplayerRoom(long roomId)
|
2020-12-08 15:44:47 +08:00
|
|
|
{
|
|
|
|
RoomID = roomId;
|
|
|
|
}
|
|
|
|
|
2020-12-09 13:47:26 +08:00
|
|
|
public override string ToString() => $"RoomID:{RoomID} Host:{Host?.UserID} Users:{Users.Count} State:{State} Settings: [{Settings}]";
|
2020-12-04 14:34:31 +08:00
|
|
|
}
|
|
|
|
}
|