// Copyright (c) ppy Pty Ltd . 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 Newtonsoft.Json; using osu.Framework.Allocation; using osu.Framework.Configuration; using osu.Game.Online.Multiplayer.GameTypes; using osu.Game.Online.Multiplayer.RoomStatuses; using osu.Game.Users; namespace osu.Game.Online.Multiplayer { public class Room { [Cached] [JsonProperty("id")] public Bindable RoomID { get; private set; } = new Bindable(); [Cached] [JsonProperty("name")] public Bindable Name { get; private set; } = new Bindable(); [Cached] [JsonProperty("host")] public Bindable Host { get; private set; } = new Bindable(); [Cached] [JsonProperty("playlist")] public BindableList Playlist { get; private set; } = new BindableList(); [Cached] [JsonProperty("channel_id")] public Bindable ChannelId { get; private set; } = new Bindable(); [Cached] [JsonIgnore] public Bindable Duration { get; private set; } = new Bindable(TimeSpan.FromMinutes(30)); [Cached] [JsonIgnore] public Bindable MaxAttempts { get; private set; } = new Bindable(); [Cached] [JsonIgnore] public Bindable Status { get; private set; } = new Bindable(new RoomStatusOpen()); [Cached] [JsonIgnore] public Bindable Availability { get; private set; } = new Bindable(); [Cached] [JsonIgnore] public Bindable Type { get; private set; } = new Bindable(new GameTypeTimeshift()); [Cached] [JsonIgnore] public Bindable MaxParticipants { get; private set; } = new Bindable(); [Cached] [JsonIgnore] public Bindable> Participants { get; private set; } = new Bindable>(Enumerable.Empty()); [Cached] public Bindable ParticipantCount { get; private set; } = new Bindable(); // todo: TEMPORARY [JsonProperty("participant_count")] private int? participantCount { get => ParticipantCount; set => ParticipantCount.Value = value ?? 0; } [JsonProperty("duration")] private int duration { get => (int)Duration.Value.TotalMinutes; set => Duration.Value = TimeSpan.FromMinutes(value); } // Only supports retrieval for now [Cached] [JsonProperty("ends_at")] public Bindable EndDate { get; private set; } = new Bindable(); // Todo: Find a better way to do this (https://github.com/ppy/osu-framework/issues/1930) [JsonProperty("max_attempts", DefaultValueHandling = DefaultValueHandling.Ignore)] private int? maxAttempts { get => MaxAttempts; set => MaxAttempts.Value = value; } /// /// The position of this in the list. This is not read from or written to the API. /// [JsonIgnore] public Bindable Position { get; private set; } = new Bindable(-1); public void CopyFrom(Room other) { RoomID.Value = other.RoomID; Name.Value = other.Name; if (other.Host.Value != null && Host.Value?.Id != other.Host.Value.Id) Host.Value = other.Host; Status.Value = other.Status; Availability.Value = other.Availability; Type.Value = other.Type; MaxParticipants.Value = other.MaxParticipants; ParticipantCount.Value = other.ParticipantCount.Value; Participants.Value = other.Participants.Value.ToArray(); EndDate.Value = other.EndDate; if (DateTimeOffset.Now >= EndDate.Value) Status.Value = new RoomStatusEnded(); // Todo: Temporary, should only remove/add new items (requires framework changes) if (Playlist.Count == 0) Playlist.AddRange(other.Playlist); else if (other.Playlist.Count > 0) Playlist.First().ID = other.Playlist.First().ID; Position = other.Position; } public bool ShouldSerializeRoomID() => false; public bool ShouldSerializeHost() => false; public bool ShouldSerializeEndDate() => false; } }