2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using Newtonsoft.Json;
|
2020-09-04 19:34:26 +08:00
|
|
|
|
using osu.Framework.Testing;
|
2018-11-28 12:19:23 +08:00
|
|
|
|
using osu.Game.Database;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
|
{
|
2020-09-04 19:34:26 +08:00
|
|
|
|
[ExcludeFromDynamicCompile]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[Serializable]
|
2021-10-01 15:31:11 +08:00
|
|
|
|
public class BeatmapMetadata : IEquatable<BeatmapMetadata>, IHasPrimaryKey, IBeatmapMetadataInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Title { get; set; }
|
2021-04-03 12:44:51 +08:00
|
|
|
|
|
2021-04-03 12:43:17 +08:00
|
|
|
|
[JsonProperty("title_unicode")]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public string TitleUnicode { get; set; }
|
2021-04-03 12:44:51 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public string Artist { get; set; }
|
2021-04-03 12:44:51 +08:00
|
|
|
|
|
2021-04-03 12:43:17 +08:00
|
|
|
|
[JsonProperty("artist_unicode")]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public string ArtistUnicode { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public List<BeatmapInfo> Beatmaps { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public List<BeatmapSetInfo> BeatmapSets { get; set; }
|
|
|
|
|
|
2021-05-14 14:40:29 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Helper property to deserialize a username to <see cref="User"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(@"user_id")]
|
|
|
|
|
[Column("AuthorID")]
|
|
|
|
|
public int AuthorID
|
|
|
|
|
{
|
|
|
|
|
get => Author?.Id ?? 1;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Author ??= new User();
|
|
|
|
|
Author.Id = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Helper property to deserialize a username to <see cref="User"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(@"creator")]
|
|
|
|
|
[Column("Author")]
|
|
|
|
|
public string AuthorString
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
get => Author?.Username;
|
2021-05-14 14:40:29 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Author ??= new User();
|
|
|
|
|
Author.Username = value;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The author of the beatmaps in this set.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public User Author;
|
|
|
|
|
|
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"tags")]
|
|
|
|
|
public string Tags { get; set; }
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2021-02-18 12:03:29 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The time in milliseconds to begin playing the track for preview purposes.
|
|
|
|
|
/// If -1, the track should begin playing at 40% of its length.
|
|
|
|
|
/// </summary>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public int PreviewTime { get; set; }
|
2021-02-18 12:03:29 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public string AudioFile { get; set; }
|
2021-10-01 16:31:27 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public string BackgroundFile { get; set; }
|
|
|
|
|
|
2021-10-01 16:31:27 +08:00
|
|
|
|
public bool Equals(BeatmapMetadata other) => ((IBeatmapMetadataInfo)this).Equals(other);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-10-05 13:41:14 +08:00
|
|
|
|
public override string ToString() => this.GetDisplayTitle();
|
2021-10-01 15:31:11 +08:00
|
|
|
|
|
|
|
|
|
string IBeatmapMetadataInfo.Author => AuthorString;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|