2021-10-11 14:25:00 +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.
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using osu.Framework.Testing;
|
2021-11-19 18:07:21 +08:00
|
|
|
|
using osu.Game.Models;
|
2021-11-04 17:13:45 +08:00
|
|
|
|
using osu.Game.Users;
|
2021-10-11 14:25:00 +08:00
|
|
|
|
using Realms;
|
|
|
|
|
|
|
|
|
|
#nullable enable
|
|
|
|
|
|
2021-11-19 18:07:21 +08:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2021-10-11 14:25:00 +08:00
|
|
|
|
{
|
|
|
|
|
[ExcludeFromDynamicCompile]
|
|
|
|
|
[Serializable]
|
|
|
|
|
[MapTo("BeatmapMetadata")]
|
2021-11-19 18:07:21 +08:00
|
|
|
|
public class BeatmapMetadata : RealmObject, IBeatmapMetadataInfo
|
2021-10-11 14:25:00 +08:00
|
|
|
|
{
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[JsonProperty("title_unicode")]
|
|
|
|
|
public string TitleUnicode { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Artist { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[JsonProperty("artist_unicode")]
|
|
|
|
|
public string ArtistUnicode { get; set; } = string.Empty;
|
|
|
|
|
|
2022-01-10 13:40:41 +08:00
|
|
|
|
public RealmUser Author { get; set; } = new RealmUser(); // TODO: not sure we want to initialise this only to have it overwritten by retrieval.
|
2021-10-11 14:25:00 +08:00
|
|
|
|
|
|
|
|
|
public string Source { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"tags")]
|
|
|
|
|
public string Tags { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <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>
|
|
|
|
|
public int PreviewTime { get; set; }
|
|
|
|
|
|
|
|
|
|
public string AudioFile { get; set; } = string.Empty;
|
|
|
|
|
public string BackgroundFile { get; set; } = string.Empty;
|
2021-11-04 17:13:45 +08:00
|
|
|
|
|
|
|
|
|
IUser IBeatmapMetadataInfo.Author => Author;
|
2021-11-19 18:24:07 +08:00
|
|
|
|
|
|
|
|
|
#region Compatibility properties
|
|
|
|
|
|
|
|
|
|
public string AuthorString
|
|
|
|
|
{
|
|
|
|
|
get => Author.Username;
|
|
|
|
|
set => Author.Username = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2021-12-21 15:09:00 +08:00
|
|
|
|
|
|
|
|
|
public override string ToString() => this.GetDisplayTitle();
|
2021-10-11 14:25:00 +08:00
|
|
|
|
}
|
|
|
|
|
}
|