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