// 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 System.ComponentModel.DataAnnotations.Schema; using System.Linq; using Newtonsoft.Json; using osu.Framework.Localisation; using osu.Framework.Testing; using osu.Game.Database; using osu.Game.Users; namespace osu.Game.Beatmaps { [ExcludeFromDynamicCompile] [Serializable] public class BeatmapMetadata : IEquatable, IHasPrimaryKey { public int ID { get; set; } public string Title { get; set; } [JsonProperty("title_unicode")] public string TitleUnicode { get; set; } public string Artist { get; set; } [JsonProperty("artist_unicode")] public string ArtistUnicode { get; set; } [JsonIgnore] public List Beatmaps { get; set; } [JsonIgnore] public List BeatmapSets { get; set; } /// /// Helper property to deserialize a username to . /// [JsonProperty(@"user_id")] [Column("AuthorID")] public int AuthorID { get => Author?.Id ?? 1; set { Author ??= new User(); Author.Id = value; } } /// /// Helper property to deserialize a username to . /// [JsonProperty(@"creator")] [Column("Author")] public string AuthorString { get => Author?.Username; set { Author ??= new User(); Author.Username = value; } } /// /// The author of the beatmaps in this set. /// [JsonIgnore] public User Author; public string Source { get; set; } [JsonProperty(@"tags")] public string Tags { get; set; } /// /// The time in milliseconds to begin playing the track for preview purposes. /// If -1, the track should begin playing at 40% of its length. /// public int PreviewTime { get; set; } public string AudioFile { get; set; } public string BackgroundFile { get; set; } public override string ToString() { string author = Author == null ? string.Empty : $"({Author})"; return $"{Artist} - {Title} {author}".Trim(); } public RomanisableString ToRomanisableString() { string author = Author == null ? string.Empty : $"({Author})"; return new RomanisableString($"{ArtistUnicode} - {TitleUnicode} {author}".Trim(), $"{Artist} - {Title} {author}".Trim()); } [JsonIgnore] public string[] SearchableTerms => new[] { Author?.Username, Artist, ArtistUnicode, Title, TitleUnicode, Source, Tags }.Where(s => !string.IsNullOrEmpty(s)).ToArray(); public bool Equals(BeatmapMetadata other) { if (other == null) return false; return Title == other.Title && TitleUnicode == other.TitleUnicode && Artist == other.Artist && ArtistUnicode == other.ArtistUnicode && AuthorString == other.AuthorString && Source == other.Source && Tags == other.Tags && PreviewTime == other.PreviewTime && AudioFile == other.AudioFile && BackgroundFile == other.BackgroundFile; } } }