2020-10-22 18:41:10 +08: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-10-22 16:29:38 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
using System.Linq;
|
2021-01-26 15:39:35 +08:00
|
|
|
using MessagePack;
|
2020-10-22 16:38:16 +08:00
|
|
|
using osu.Game.Online.API;
|
2020-10-22 16:29:38 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Online.Spectator
|
|
|
|
{
|
|
|
|
[Serializable]
|
2021-01-26 15:39:35 +08:00
|
|
|
[MessagePackObject]
|
2020-10-22 16:29:38 +08:00
|
|
|
public class SpectatorState : IEquatable<SpectatorState>
|
|
|
|
{
|
2021-01-26 15:39:35 +08:00
|
|
|
[Key(0)]
|
2020-10-22 16:29:38 +08:00
|
|
|
public int? BeatmapID { get; set; }
|
|
|
|
|
2021-01-26 15:39:35 +08:00
|
|
|
[Key(1)]
|
2020-10-23 16:24:19 +08:00
|
|
|
public int? RulesetID { get; set; }
|
|
|
|
|
2020-10-22 16:29:38 +08:00
|
|
|
[NotNull]
|
2021-01-26 15:39:35 +08:00
|
|
|
[Key(2)]
|
2020-10-22 16:38:16 +08:00
|
|
|
public IEnumerable<APIMod> Mods { get; set; } = Enumerable.Empty<APIMod>();
|
2020-10-22 16:29:38 +08:00
|
|
|
|
2020-10-23 16:24:19 +08:00
|
|
|
public bool Equals(SpectatorState other) => BeatmapID == other?.BeatmapID && Mods.SequenceEqual(other?.Mods) && RulesetID == other?.RulesetID;
|
2020-10-22 16:29:38 +08:00
|
|
|
|
2020-10-23 16:24:19 +08:00
|
|
|
public override string ToString() => $"Beatmap:{BeatmapID} Mods:{string.Join(',', Mods)} Ruleset:{RulesetID}";
|
2020-10-22 16:29:38 +08:00
|
|
|
}
|
|
|
|
}
|