1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 10:07:36 +08:00
osu-lazer/osu.Game/Online/Multiplayer/Room.cs

105 lines
3.8 KiB
C#
Raw Normal View History

2018-04-13 17:19:50 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-12-17 13:45:06 +08:00
using System;
using System.Collections.Generic;
2018-12-03 19:50:40 +08:00
using System.Linq;
using Newtonsoft.Json;
2018-04-13 17:19:50 +08:00
using osu.Framework.Configuration;
2018-12-26 15:46:50 +08:00
using osu.Game.Online.Multiplayer.GameTypes;
2018-04-13 17:19:50 +08:00
using osu.Game.Users;
namespace osu.Game.Online.Multiplayer
{
public class Room
{
2018-12-12 18:04:11 +08:00
[JsonProperty("id")]
2018-12-17 13:45:06 +08:00
public Bindable<int?> RoomID { get; private set; } = new Bindable<int?>();
[JsonProperty("name")]
public Bindable<string> Name { get; private set; } = new Bindable<string>();
[JsonProperty("host")]
2018-12-17 13:45:06 +08:00
public Bindable<User> Host { get; private set; } = new Bindable<User>();
2018-12-12 18:04:11 +08:00
[JsonProperty("playlist")]
2018-12-21 12:06:11 +08:00
public BindableCollection<PlaylistItem> Playlist { get; set; } = new BindableCollection<PlaylistItem>();
2018-12-21 13:01:06 +08:00
[JsonProperty("channel_id")]
public Bindable<int> ChannelId { get; private set; } = new Bindable<int>();
2018-12-17 13:44:54 +08:00
[JsonIgnore]
2018-12-21 12:06:11 +08:00
public Bindable<TimeSpan> Duration { get; private set; } = new Bindable<TimeSpan>(TimeSpan.FromMinutes(30));
2018-12-12 18:04:11 +08:00
2018-12-13 15:06:30 +08:00
[JsonIgnore]
2018-12-21 12:06:11 +08:00
public Bindable<int?> MaxAttempts { get; private set; } = new Bindable<int?>();
2018-12-13 15:06:30 +08:00
2018-12-17 13:45:06 +08:00
[JsonIgnore]
2018-12-21 12:06:11 +08:00
public Bindable<RoomStatus> Status { get; private set; } = new Bindable<RoomStatus>(new RoomStatusOpen());
2018-12-17 13:45:06 +08:00
[JsonIgnore]
2018-12-21 12:06:11 +08:00
public Bindable<RoomAvailability> Availability { get; private set; } = new Bindable<RoomAvailability>();
2018-12-17 13:45:06 +08:00
[JsonIgnore]
2018-12-21 12:06:11 +08:00
public Bindable<GameType> Type { get; private set; } = new Bindable<GameType>(new GameTypeTimeshift());
2018-12-17 13:45:06 +08:00
[JsonIgnore]
2018-12-21 12:06:11 +08:00
public Bindable<int?> MaxParticipants { get; private set; } = new Bindable<int?>();
2018-12-17 13:45:06 +08:00
[JsonIgnore]
2018-12-21 12:06:11 +08:00
public Bindable<IEnumerable<User>> Participants { get; private set; } = new Bindable<IEnumerable<User>>(Enumerable.Empty<User>());
2018-12-17 13:45:06 +08:00
2018-12-26 20:58:14 +08:00
[JsonProperty("participant_count")]
public Bindable<int> ParticipantCount { get; private set; } = new Bindable<int>();
2018-12-17 13:44:54 +08:00
[JsonProperty("duration")]
private int duration
{
get => (int)Duration.Value.TotalMinutes;
set => Duration.Value = TimeSpan.FromMinutes(value);
}
2018-12-17 13:45:06 +08:00
// Only supports retrieval for now
[JsonProperty("ends_at")]
2018-12-21 12:06:11 +08:00
public Bindable<DateTimeOffset> EndDate { get; private set; } = new Bindable<DateTimeOffset>();
2018-12-13 15:06:30 +08:00
// 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;
}
2018-12-12 18:04:11 +08:00
public void CopyFrom(Room other)
{
2018-12-12 15:20:11 +08:00
RoomID.Value = other.RoomID;
Name.Value = other.Name;
2018-12-25 17:07:50 +08:00
if (other.Host.Value != null && Host.Value?.Id != other.Host.Value.Id)
Host.Value = other.Host;
if (Status.Value.GetType() != other.Status.Value.GetType())
Status.Value = other.Status;
Availability.Value = other.Availability;
2018-12-25 17:07:50 +08:00
if (Type.Value.GetType() != other.Type.Value.GetType())
Type.Value = other.Type;
MaxParticipants.Value = other.MaxParticipants;
2018-12-26 20:58:14 +08:00
ParticipantCount.Value = other.ParticipantCount.Value;
Participants.Value = other.Participants.Value.ToArray();
2018-12-19 12:07:56 +08:00
EndDate.Value = other.EndDate;
2018-12-25 17:07:50 +08:00
// Todo: Temporary, should only remove/add new items (requires framework changes)
if (Playlist.Count == 0)
Playlist.AddRange(other.Playlist);
}
2018-12-17 13:45:06 +08:00
public bool ShouldSerializeRoomID() => false;
public bool ShouldSerializeHost() => false;
public bool ShouldSerializeEndDate() => false;
}
2018-04-13 17:19:50 +08:00
}