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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
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;
|
2022-12-09 19:15:07 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
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
|
|
|
|
2022-02-01 14:51:41 +08:00
|
|
|
[Key(3)]
|
2022-02-09 11:09:04 +08:00
|
|
|
public SpectatedUserState State { get; set; }
|
2022-02-01 14:51:41 +08:00
|
|
|
|
2022-05-30 18:14:03 +08:00
|
|
|
[Key(4)]
|
2022-12-09 19:15:07 +08:00
|
|
|
public Dictionary<HitResult, int> MaximumStatistics { get; set; } = new Dictionary<HitResult, int>();
|
2022-05-30 18:14:03 +08:00
|
|
|
|
2021-05-15 05:33:17 +08:00
|
|
|
public bool Equals(SpectatorState other)
|
|
|
|
{
|
|
|
|
if (ReferenceEquals(null, other)) return false;
|
|
|
|
if (ReferenceEquals(this, other)) return true;
|
|
|
|
|
2022-02-01 14:51:41 +08:00
|
|
|
return BeatmapID == other.BeatmapID && Mods.SequenceEqual(other.Mods) && RulesetID == other.RulesetID && State == other.State;
|
2021-05-15 05:33:17 +08:00
|
|
|
}
|
2020-10-22 16:29:38 +08:00
|
|
|
|
2022-02-01 14:51:41 +08:00
|
|
|
public override string ToString() => $"Beatmap:{BeatmapID} Mods:{string.Join(',', Mods)} Ruleset:{RulesetID} State:{State}";
|
2020-10-22 16:29:38 +08:00
|
|
|
}
|
|
|
|
}
|