// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using Newtonsoft.Json; using osu.Game.Beatmaps; using osu.Game.Database; #nullable enable namespace osu.Game.Online.API.Requests.Responses { public class APIBeatmapSet : IBeatmapSetOnlineInfo, IBeatmapSetInfo { [JsonProperty(@"covers")] public BeatmapSetOnlineCovers Covers { get; set; } [JsonProperty(@"id")] public int OnlineID { get; set; } [JsonProperty(@"status")] public BeatmapSetOnlineStatus Status { get; set; } [JsonProperty(@"preview_url")] public string Preview { get; set; } = string.Empty; [JsonProperty(@"has_favourited")] public bool HasFavourited { get; set; } [JsonProperty(@"play_count")] public int PlayCount { get; set; } [JsonProperty(@"favourite_count")] public int FavouriteCount { get; set; } [JsonProperty(@"bpm")] public double BPM { get; set; } [JsonProperty(@"nsfw")] public bool HasExplicitContent { get; set; } [JsonProperty(@"video")] public bool HasVideo { get; set; } [JsonProperty(@"storyboard")] public bool HasStoryboard { get; set; } [JsonProperty(@"submitted_date")] public DateTimeOffset Submitted { get; set; } [JsonProperty(@"ranked_date")] public DateTimeOffset? Ranked { get; set; } [JsonProperty(@"last_updated")] public DateTimeOffset? LastUpdated { get; set; } [JsonProperty("ratings")] public int[] Ratings { get; set; } = Array.Empty(); [JsonProperty(@"track_id")] public int? TrackId { get; set; } [JsonProperty(@"hype")] public BeatmapSetHypeStatus? HypeStatus { get; set; } [JsonProperty(@"nominations_summary")] public BeatmapSetNominationStatus? NominationStatus { get; set; } public string Title { get; set; } = string.Empty; [JsonProperty("title_unicode")] public string TitleUnicode { get; set; } = string.Empty; public string Artist { get; set; } = string.Empty; [JsonProperty("artist_unicode")] public string ArtistUnicode { get; set; } = string.Empty; public APIUser Author = new APIUser(); /// /// Helper property to deserialize a username to . /// [JsonProperty(@"user_id")] public int AuthorID { get => Author.Id; set => Author.Id = value; } /// /// Helper property to deserialize a username to . /// [JsonProperty(@"creator")] public string AuthorString { get => Author.Username; set => Author.Username = value; } [JsonProperty(@"availability")] public BeatmapSetOnlineAvailability Availability { get; set; } [JsonProperty(@"genre")] public BeatmapSetOnlineGenre Genre { get; set; } [JsonProperty(@"language")] public BeatmapSetOnlineLanguage Language { get; set; } public string Source { get; set; } = string.Empty; [JsonProperty(@"tags")] public string Tags { get; set; } = string.Empty; [JsonProperty(@"beatmaps")] public APIBeatmap[] Beatmaps { get; set; } = Array.Empty(); private BeatmapMetadata metadata => new BeatmapMetadata { Title = Title, TitleUnicode = TitleUnicode, Artist = Artist, ArtistUnicode = ArtistUnicode, AuthorID = AuthorID, Author = Author, Source = Source, Tags = Tags, }; #region Implementation of IBeatmapSetInfo IEnumerable IBeatmapSetInfo.Beatmaps => Beatmaps; IBeatmapMetadataInfo IBeatmapSetInfo.Metadata => metadata; DateTimeOffset IBeatmapSetInfo.DateAdded => throw new NotImplementedException(); IEnumerable IBeatmapSetInfo.Files => throw new NotImplementedException(); double IBeatmapSetInfo.MaxStarDifficulty => throw new NotImplementedException(); double IBeatmapSetInfo.MaxLength => throw new NotImplementedException(); double IBeatmapSetInfo.MaxBPM => BPM; #endregion public bool Equals(IBeatmapSetInfo? other) => other is APIBeatmapSet b && Equals(b); } }