// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using System; using MessagePack; using Newtonsoft.Json; namespace osu.Game.Online.Rooms { /// /// The local availability information about a certain beatmap for the client. /// [MessagePackObject] public class BeatmapAvailability : IEquatable { /// /// The beatmap's availability state. /// [Key(0)] public readonly DownloadState State; /// /// The beatmap's downloading progress, null when not in state. /// [Key(1)] public readonly float? DownloadProgress; [JsonConstructor] public BeatmapAvailability(DownloadState state, float? downloadProgress = null) { State = state; DownloadProgress = downloadProgress; } public static BeatmapAvailability NotDownloaded() => new BeatmapAvailability(DownloadState.NotDownloaded); public static BeatmapAvailability Downloading(float progress) => new BeatmapAvailability(DownloadState.Downloading, progress); public static BeatmapAvailability Importing() => new BeatmapAvailability(DownloadState.Importing); public static BeatmapAvailability LocallyAvailable() => new BeatmapAvailability(DownloadState.LocallyAvailable); public bool Equals(BeatmapAvailability other) => other != null && State == other.State && DownloadProgress == other.DownloadProgress; public override string ToString() => $"{string.Join(", ", State, $"{DownloadProgress:0.00%}")}"; } }