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

152 lines
5.2 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
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;
2019-02-05 18:00:01 +08:00
using osu.Framework.Allocation;
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-12-27 12:30:36 +08:00
using osu.Game.Online.Multiplayer.RoomStatuses;
2018-04-13 17:19:50 +08:00
using osu.Game.Users;
namespace osu.Game.Online.Multiplayer
{
public class Room
{
2019-02-05 18:00:01 +08:00
[Cached]
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?>();
2019-02-05 18:00:01 +08:00
[Cached]
[JsonProperty("name")]
public Bindable<string> Name { get; private set; } = new Bindable<string>();
2019-02-05 18:00:01 +08:00
[Cached]
[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
2019-02-05 18:00:01 +08:00
[Cached]
[JsonProperty("playlist")]
2019-02-05 18:00:01 +08:00
public BindableList<PlaylistItem> Playlist { get; private set; } = new BindableList<PlaylistItem>();
2019-02-11 18:11:34 +08:00
[Cached]
[JsonIgnore]
public Bindable<PlaylistItem> CurrentItem { get; private set; } = new Bindable<PlaylistItem>();
2019-02-05 18:00:01 +08:00
[Cached]
2018-12-21 13:01:06 +08:00
[JsonProperty("channel_id")]
public Bindable<int> ChannelId { get; private set; } = new Bindable<int>();
2019-02-05 18:00:01 +08:00
[Cached]
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
2019-02-05 18:00:01 +08:00
[Cached]
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
2019-02-05 18:00:01 +08:00
[Cached]
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
2019-02-05 18:00:01 +08:00
[Cached]
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
2019-02-05 18:00:01 +08:00
[Cached]
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
2019-02-05 18:00:01 +08:00
[Cached]
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
2019-02-05 18:00:01 +08:00
[Cached]
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
2019-02-05 18:00:01 +08:00
[Cached]
2018-12-26 20:58:14 +08:00
public Bindable<int> ParticipantCount { get; private set; } = new Bindable<int>();
2019-02-11 18:11:34 +08:00
public Room()
{
Playlist.ItemsAdded += updateCurrent;
Playlist.ItemsRemoved += updateCurrent;
updateCurrent(Playlist);
}
private void updateCurrent(IEnumerable<PlaylistItem> playlist)
{
CurrentItem.Value = playlist.FirstOrDefault();
}
// todo: TEMPORARY
[JsonProperty("participant_count")]
private int? participantCount
{
get => ParticipantCount;
set => ParticipantCount.Value = value ?? 0;
}
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
2019-02-05 18:00:01 +08:00
[Cached]
[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
2018-12-28 00:45:19 +08:00
/// <summary>
/// The position of this <see cref="Room"/> in the list. This is not read from or written to the API.
/// </summary>
[JsonIgnore]
2019-02-05 14:56:18 +08:00
public Bindable<int> Position { get; private set; } = new Bindable<int>(-1);
2018-12-28 00:45:19 +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;
Status.Value = other.Status;
Availability.Value = other.Availability;
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-27 12:30:36 +08:00
if (DateTimeOffset.Now >= EndDate.Value)
Status.Value = new RoomStatusEnded();
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-26 21:14:49 +08:00
else if (other.Playlist.Count > 0)
Playlist.First().ID = other.Playlist.First().ID;
2018-12-28 00:45:19 +08:00
Position = other.Position;
}
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
}