2021-01-03 01:21:50 +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.
|
|
|
|
|
|
|
|
using System;
|
2021-01-26 07:26:03 +00:00
|
|
|
using MessagePack;
|
2021-01-11 05:02:57 +00:00
|
|
|
using Newtonsoft.Json;
|
2021-01-03 01:21:50 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Online.Rooms
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The local availability information about a certain beatmap for the client.
|
|
|
|
/// </summary>
|
2021-01-26 07:26:03 +00:00
|
|
|
[MessagePackObject]
|
2021-01-03 15:34:11 +00:00
|
|
|
public class BeatmapAvailability : IEquatable<BeatmapAvailability>
|
2021-01-03 01:21:50 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The beatmap's availability state.
|
|
|
|
/// </summary>
|
2021-01-26 07:26:03 +00:00
|
|
|
[Key(0)]
|
2021-01-03 01:21:50 +00:00
|
|
|
public readonly DownloadState State;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The beatmap's downloading progress, null when not in <see cref="DownloadState.Downloading"/> state.
|
|
|
|
/// </summary>
|
2021-02-01 08:27:14 +00:00
|
|
|
[Key(1)]
|
2021-01-17 18:16:45 +00:00
|
|
|
public readonly float? DownloadProgress;
|
2021-01-03 01:21:50 +00:00
|
|
|
|
2021-01-11 05:02:57 +00:00
|
|
|
[JsonConstructor]
|
2021-02-02 14:45:07 +00:00
|
|
|
public BeatmapAvailability(DownloadState state, float? downloadProgress = null)
|
2021-01-03 01:21:50 +00:00
|
|
|
{
|
|
|
|
State = state;
|
|
|
|
DownloadProgress = downloadProgress;
|
|
|
|
}
|
|
|
|
|
2021-01-11 05:04:00 +00:00
|
|
|
public static BeatmapAvailability NotDownloaded() => new BeatmapAvailability(DownloadState.NotDownloaded);
|
2021-01-17 18:16:45 +00:00
|
|
|
public static BeatmapAvailability Downloading(float progress) => new BeatmapAvailability(DownloadState.Downloading, progress);
|
2021-01-13 19:34:48 +00:00
|
|
|
public static BeatmapAvailability Importing() => new BeatmapAvailability(DownloadState.Importing);
|
2021-01-03 15:34:58 +00:00
|
|
|
public static BeatmapAvailability LocallyAvailable() => new BeatmapAvailability(DownloadState.LocallyAvailable);
|
|
|
|
|
2021-01-03 15:34:11 +00:00
|
|
|
public bool Equals(BeatmapAvailability other) => other != null && State == other.State && DownloadProgress == other.DownloadProgress;
|
2021-01-03 01:21:50 +00:00
|
|
|
|
|
|
|
public override string ToString() => $"{string.Join(", ", State, $"{DownloadProgress:0.00%}")}";
|
|
|
|
}
|
|
|
|
}
|