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