2021-10-21 16:14:29 +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.
2017-09-09 06:17:39 +08:00
using System ;
2018-04-13 17:19:50 +08:00
2017-07-26 12:22:46 +08:00
namespace osu.Game.Beatmaps
2017-05-28 11:37:55 +08:00
{
/// <summary>
/// Beatmap set info retrieved for previewing locally without having the set downloaded.
/// </summary>
2021-10-20 17:43:48 +08:00
public interface IBeatmapSetOnlineInfo
2017-05-28 11:37:55 +08:00
{
2017-09-09 06:17:39 +08:00
/// <summary>
/// The date this beatmap set was submitted to the online listing.
/// </summary>
2021-10-22 16:48:09 +08:00
DateTimeOffset Submitted { get ; }
2018-04-13 17:19:50 +08:00
2017-09-09 06:17:39 +08:00
/// <summary>
/// The date this beatmap set was ranked.
/// </summary>
2021-10-22 16:48:09 +08:00
DateTimeOffset ? Ranked { get ; }
2018-04-13 17:19:50 +08:00
2017-09-09 06:17:39 +08:00
/// <summary>
/// The date this beatmap set was last updated.
/// </summary>
2021-10-22 16:48:09 +08:00
DateTimeOffset ? LastUpdated { get ; }
2018-04-13 17:19:50 +08:00
2018-03-27 08:04:45 +08:00
/// <summary>
2021-11-12 12:07:11 +08:00
/// The "ranked" status of this beatmap set.
2018-03-27 08:04:45 +08:00
/// </summary>
2021-11-24 17:42:47 +08:00
BeatmapOnlineStatus Status { get ; }
2018-04-13 17:19:50 +08:00
2021-01-12 23:13:05 +08:00
/// <summary>
/// Whether or not this beatmap set has explicit content.
/// </summary>
2021-10-22 16:48:09 +08:00
bool HasExplicitContent { get ; }
2021-01-12 23:13:05 +08:00
2017-11-10 08:01:11 +08:00
/// <summary>
/// Whether or not this beatmap set has a background video.
/// </summary>
2021-10-22 16:48:09 +08:00
bool HasVideo { get ; }
2018-04-13 17:19:50 +08:00
2018-05-31 23:09:19 +08:00
/// <summary>
/// Whether or not this beatmap set has a storyboard.
/// </summary>
2021-10-22 16:48:09 +08:00
bool HasStoryboard { get ; }
2018-05-31 23:09:19 +08:00
2017-05-28 11:37:55 +08:00
/// <summary>
2017-07-11 11:28:25 +08:00
/// The different sizes of cover art for this beatmap set.
2017-05-28 11:37:55 +08:00
/// </summary>
2021-10-22 16:48:09 +08:00
BeatmapSetOnlineCovers Covers { get ; }
2018-04-13 17:19:50 +08:00
2017-05-28 11:37:55 +08:00
/// <summary>
2017-07-11 11:28:25 +08:00
/// A small sample clip of this beatmap set's song.
2017-05-28 11:37:55 +08:00
/// </summary>
2021-10-22 16:48:09 +08:00
string Preview { get ; }
2018-04-13 17:19:50 +08:00
2017-09-11 13:48:48 +08:00
/// <summary>
/// The beats per minute of this beatmap set's song.
/// </summary>
2021-10-22 16:48:09 +08:00
double BPM { get ; }
2018-04-13 17:19:50 +08:00
2017-05-28 11:37:55 +08:00
/// <summary>
2017-07-11 11:28:25 +08:00
/// The amount of plays this beatmap set has.
2017-05-28 11:37:55 +08:00
/// </summary>
2021-10-22 16:48:09 +08:00
int PlayCount { get ; }
2018-04-13 17:19:50 +08:00
2017-05-28 11:37:55 +08:00
/// <summary>
2017-07-11 11:28:25 +08:00
/// The amount of people who have favourited this beatmap set.
2017-05-28 11:37:55 +08:00
/// </summary>
2021-10-22 16:48:09 +08:00
int FavouriteCount { get ; }
2019-06-10 18:18:38 +08:00
2019-07-22 02:41:07 +08:00
/// <summary>
/// Whether this beatmap set has been favourited by the current user.
/// </summary>
2021-10-22 16:48:09 +08:00
bool HasFavourited { get ; }
2019-06-10 18:18:38 +08:00
/// <summary>
/// The availability of this beatmap set.
/// </summary>
2021-10-22 16:48:09 +08:00
BeatmapSetOnlineAvailability Availability { get ; }
2019-07-11 21:44:48 +08:00
/// <summary>
2019-07-11 22:47:09 +08:00
/// The song genre of this beatmap set.
2019-07-11 21:44:48 +08:00
/// </summary>
2021-10-22 16:48:09 +08:00
BeatmapSetOnlineGenre Genre { get ; }
2019-07-11 21:44:48 +08:00
/// <summary>
2019-07-11 22:47:09 +08:00
/// The song language of this beatmap set.
2019-07-11 21:44:48 +08:00
/// </summary>
2021-10-22 16:48:09 +08:00
BeatmapSetOnlineLanguage Language { get ; }
2021-09-08 11:21:24 +08:00
/// <summary>
2021-09-10 11:58:12 +08:00
/// The track ID of this beatmap set.
/// Non-null only if the track is linked to a featured artist track entry.
2021-09-08 11:21:24 +08:00
/// </summary>
2021-10-22 16:48:09 +08:00
int? TrackId { get ; }
2021-10-25 13:44:49 +08:00
/// <summary>
/// Total vote counts of user ratings on a scale of 0..10 where 0 is unused (probably will be fixed at API?).
/// </summary>
int [ ] ? Ratings { get ; }
2021-10-18 02:55:06 +08:00
/// <summary>
/// Contains the current hype status of the beatmap set.
2021-11-24 17:42:47 +08:00
/// Non-null only for <see cref="BeatmapOnlineStatus.WIP"/>, <see cref="BeatmapOnlineStatus.Pending"/>, and <see cref="BeatmapOnlineStatus.Qualified"/> sets.
2021-10-18 02:55:06 +08:00
/// </summary>
/// <remarks>
/// See: https://github.com/ppy/osu-web/blob/93930cd02cfbd49724929912597c727c9fbadcd1/app/Models/Beatmapset.php#L155
/// </remarks>
BeatmapSetHypeStatus ? HypeStatus { get ; }
/// <summary>
/// Contains the current nomination status of the beatmap set.
/// </summary>
BeatmapSetNominationStatus ? NominationStatus { get ; }
2017-05-28 11:37:55 +08:00
}
2021-10-21 16:00:14 +08:00
}