mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 21:37:26 +08:00
88 lines
3.0 KiB
C#
88 lines
3.0 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Newtonsoft.Json;
|
|
using osu.Framework.Configuration;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Online.Multiplayer
|
|
{
|
|
public class Room
|
|
{
|
|
[JsonProperty("id")]
|
|
public Bindable<int?> RoomID { get; private set; } = new Bindable<int?>();
|
|
|
|
[JsonProperty("name")]
|
|
public Bindable<string> Name { get; private set; } = new Bindable<string>("My awesome room!");
|
|
|
|
[JsonProperty("host")]
|
|
public Bindable<User> Host { get; private set; } = new Bindable<User>();
|
|
|
|
[JsonProperty("playlist")]
|
|
public readonly BindableCollection<PlaylistItem> Playlist = new BindableCollection<PlaylistItem>();
|
|
|
|
[JsonIgnore]
|
|
public readonly Bindable<TimeSpan> Duration = new Bindable<TimeSpan>(TimeSpan.FromMinutes(30));
|
|
|
|
[JsonIgnore]
|
|
public readonly Bindable<int?> MaxAttempts = new Bindable<int?>();
|
|
|
|
[JsonIgnore]
|
|
public Bindable<RoomStatus> Status = new Bindable<RoomStatus>(new RoomStatusOpen());
|
|
|
|
[JsonIgnore]
|
|
public Bindable<RoomAvailability> Availability = new Bindable<RoomAvailability>();
|
|
|
|
[JsonIgnore]
|
|
public Bindable<GameType> Type = new Bindable<GameType>(new GameTypeTimeshift());
|
|
|
|
[JsonIgnore]
|
|
public Bindable<int?> MaxParticipants = new Bindable<int?>();
|
|
|
|
[JsonIgnore]
|
|
public Bindable<IEnumerable<User>> Participants = new Bindable<IEnumerable<User>>(Enumerable.Empty<User>());
|
|
|
|
[JsonProperty("duration")]
|
|
private int duration
|
|
{
|
|
get => (int)Duration.Value.TotalMinutes;
|
|
set => Duration.Value = TimeSpan.FromMinutes(value);
|
|
}
|
|
|
|
// Only supports retrieval for now
|
|
[JsonProperty("ends_at")]
|
|
public Bindable<DateTimeOffset> EndDate = new Bindable<DateTimeOffset>();
|
|
|
|
// 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;
|
|
}
|
|
|
|
public void CopyFrom(Room other)
|
|
{
|
|
RoomID.Value = other.RoomID;
|
|
Name.Value = other.Name;
|
|
Host.Value = other.Host;
|
|
Status.Value = other.Status;
|
|
Availability.Value = other.Availability;
|
|
Type.Value = other.Type;
|
|
MaxParticipants.Value = other.MaxParticipants;
|
|
Participants.Value = other.Participants.Value.ToArray();
|
|
EndDate = other.EndDate;
|
|
|
|
Playlist.Clear();
|
|
Playlist.AddRange(other.Playlist);
|
|
}
|
|
|
|
public bool ShouldSerializeRoomID() => false;
|
|
public bool ShouldSerializeHost() => false;
|
|
public bool ShouldSerializeEndDate() => false;
|
|
}
|
|
}
|