2019-01-24 08:43:03 +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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using Newtonsoft.Json;
|
2020-09-04 11:34:26 +00:00
|
|
|
|
using osu.Framework.Testing;
|
2018-11-28 04:19:23 +00:00
|
|
|
|
using osu.Game.Database;
|
2021-11-04 09:02:44 +00:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-11-04 09:22:21 +00:00
|
|
|
|
using osu.Game.Users;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-11-04 03:11:42 +00:00
|
|
|
|
#nullable enable
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
|
{
|
2020-09-04 11:34:26 +00:00
|
|
|
|
[ExcludeFromDynamicCompile]
|
2018-04-13 09:19:50 +00:00
|
|
|
|
[Serializable]
|
2021-10-01 07:31:11 +00:00
|
|
|
|
public class BeatmapMetadata : IEquatable<BeatmapMetadata>, IHasPrimaryKey, IBeatmapMetadataInfo
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
2021-11-19 12:53:40 +00:00
|
|
|
|
public bool IsManaged => ID > 0;
|
|
|
|
|
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2021-04-03 04:44:51 +00:00
|
|
|
|
|
2021-04-03 04:43:17 +00:00
|
|
|
|
[JsonProperty("title_unicode")]
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public string TitleUnicode { get; set; } = string.Empty;
|
2021-04-03 04:44:51 +00:00
|
|
|
|
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public string Artist { get; set; } = string.Empty;
|
2021-04-03 04:44:51 +00:00
|
|
|
|
|
2021-04-03 04:43:17 +00:00
|
|
|
|
[JsonProperty("artist_unicode")]
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public string ArtistUnicode { get; set; } = string.Empty;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public List<BeatmapInfo> Beatmaps { get; set; } = new List<BeatmapInfo>();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public List<BeatmapSetInfo> BeatmapSets { get; set; } = new List<BeatmapSetInfo>();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-11-04 09:22:21 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The author of the beatmaps in this set.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public APIUser Author = new APIUser();
|
|
|
|
|
|
2021-05-14 06:40:29 +00:00
|
|
|
|
/// <summary>
|
2021-11-04 09:02:44 +00:00
|
|
|
|
/// Helper property to deserialize a username to <see cref="APIUser"/>.
|
2021-05-14 06:40:29 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(@"user_id")]
|
|
|
|
|
[Column("AuthorID")]
|
|
|
|
|
public int AuthorID
|
|
|
|
|
{
|
2021-11-04 09:46:26 +00:00
|
|
|
|
get => Author.Id; // This should not be used, but is required to make EF work correctly.
|
2021-11-04 09:22:21 +00:00
|
|
|
|
set => Author.Id = value;
|
2021-05-14 06:40:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
/// <summary>
|
2021-11-04 09:02:44 +00:00
|
|
|
|
/// Helper property to deserialize a username to <see cref="APIUser"/>.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(@"creator")]
|
|
|
|
|
[Column("Author")]
|
|
|
|
|
public string AuthorString
|
|
|
|
|
{
|
2021-11-04 09:46:26 +00:00
|
|
|
|
get => Author.Username; // This should not be used, but is required to make EF work correctly.
|
2021-11-04 09:22:21 +00:00
|
|
|
|
set => Author.Username = value;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public string Source { get; set; } = string.Empty;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"tags")]
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public string Tags { get; set; } = string.Empty;
|
2019-02-28 04:31:40 +00:00
|
|
|
|
|
2021-02-18 04:03:29 +00: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>
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public int PreviewTime { get; set; } = -1;
|
2021-02-18 04:03:29 +00:00
|
|
|
|
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public string AudioFile { get; set; } = string.Empty;
|
2021-10-01 08:31:27 +00:00
|
|
|
|
|
2021-11-04 03:11:42 +00:00
|
|
|
|
public string BackgroundFile { get; set; } = string.Empty;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-10-01 08:31:27 +00:00
|
|
|
|
public bool Equals(BeatmapMetadata other) => ((IBeatmapMetadataInfo)this).Equals(other);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-10-05 05:41:14 +00:00
|
|
|
|
public override string ToString() => this.GetDisplayTitle();
|
2021-10-01 07:31:11 +00:00
|
|
|
|
|
2021-11-04 09:22:21 +00:00
|
|
|
|
IUser IBeatmapMetadataInfo.Author => Author;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|