2020-12-08 05:33:38 +00: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.
|
|
|
|
|
2020-12-08 07:15:51 +00:00
|
|
|
#nullable enable
|
|
|
|
|
2020-12-08 05:33:38 +00:00
|
|
|
using System;
|
2021-01-26 07:26:03 +00:00
|
|
|
using MessagePack;
|
2021-08-03 06:09:03 +00:00
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-08 05:33:38 +00:00
|
|
|
|
2020-12-25 04:38:11 +00:00
|
|
|
namespace osu.Game.Online.Multiplayer
|
2020-12-08 05:33:38 +00:00
|
|
|
{
|
2020-12-08 07:15:51 +00:00
|
|
|
[Serializable]
|
2021-01-26 07:26:03 +00:00
|
|
|
[MessagePackObject]
|
2020-12-08 05:33:38 +00:00
|
|
|
public class MultiplayerRoomSettings : IEquatable<MultiplayerRoomSettings>
|
|
|
|
{
|
2021-01-26 07:26:03 +00:00
|
|
|
[Key(0)]
|
2020-12-11 04:27:52 +00:00
|
|
|
public string Name { get; set; } = "Unnamed room";
|
|
|
|
|
2021-10-22 07:48:28 +00:00
|
|
|
[Key(1)]
|
2021-02-16 12:32:38 +00:00
|
|
|
public long PlaylistItemId { get; set; }
|
2021-02-16 09:56:13 +00:00
|
|
|
|
2021-10-22 07:48:28 +00:00
|
|
|
[Key(2)]
|
2021-07-08 15:53:10 +00:00
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
2021-10-22 07:48:28 +00:00
|
|
|
[Key(3)]
|
2021-08-06 09:56:01 +00:00
|
|
|
public MatchType MatchType { get; set; } = MatchType.HeadToHead;
|
2021-07-21 09:59:02 +00:00
|
|
|
|
2021-10-22 07:48:28 +00:00
|
|
|
[Key(4)]
|
2021-11-16 05:53:10 +00:00
|
|
|
public QueueMode QueueMode { get; set; } = QueueMode.HostOnly;
|
2021-10-14 14:24:01 +00:00
|
|
|
|
2022-03-18 13:00:39 +00:00
|
|
|
[Key(5)]
|
|
|
|
public TimeSpan AutoStartDuration { get; set; }
|
|
|
|
|
2022-03-25 06:46:27 +00:00
|
|
|
[IgnoreMember]
|
2022-03-25 06:41:01 +00:00
|
|
|
public bool AutoStartEnabled => AutoStartDuration != TimeSpan.Zero;
|
|
|
|
|
2021-11-16 06:44:47 +00:00
|
|
|
public bool Equals(MultiplayerRoomSettings? other)
|
|
|
|
{
|
|
|
|
if (ReferenceEquals(this, other)) return true;
|
|
|
|
if (other == null) return false;
|
|
|
|
|
|
|
|
return Password.Equals(other.Password, StringComparison.Ordinal)
|
|
|
|
&& Name.Equals(other.Name, StringComparison.Ordinal)
|
|
|
|
&& PlaylistItemId == other.PlaylistItemId
|
|
|
|
&& MatchType == other.MatchType
|
2022-03-18 13:00:39 +00:00
|
|
|
&& QueueMode == other.QueueMode
|
|
|
|
&& AutoStartDuration == other.AutoStartDuration;
|
2021-11-16 06:44:47 +00:00
|
|
|
}
|
2020-12-08 05:33:38 +00:00
|
|
|
|
2021-01-27 13:25:14 +00:00
|
|
|
public override string ToString() => $"Name:{Name}"
|
2021-07-08 15:53:10 +00:00
|
|
|
+ $" Password:{(string.IsNullOrEmpty(Password) ? "no" : "yes")}"
|
2021-08-03 06:43:04 +00:00
|
|
|
+ $" Type:{MatchType}"
|
2021-10-14 14:24:01 +00:00
|
|
|
+ $" Item:{PlaylistItemId}"
|
2022-03-18 13:00:39 +00:00
|
|
|
+ $" Queue:{QueueMode}"
|
|
|
|
+ $" Start:{AutoStartDuration}";
|
2020-12-08 05:33:38 +00:00
|
|
|
}
|
|
|
|
}
|