2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Newtonsoft.Json;
|
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
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
2018-11-28 12:19:23 +08:00
|
|
|
|
public class BeatmapMetadata : IEquatable<BeatmapMetadata>, IHasPrimaryKey
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public string TitleUnicode { get; set; }
|
|
|
|
|
public string Artist { get; set; }
|
|
|
|
|
public string ArtistUnicode { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public List<BeatmapInfo> Beatmaps { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public List<BeatmapSetInfo> BeatmapSets { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Helper property to deserialize a username to <see cref="User"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(@"creator")]
|
|
|
|
|
[Column("Author")]
|
|
|
|
|
public string AuthorString
|
|
|
|
|
{
|
|
|
|
|
get { return Author?.Username; }
|
|
|
|
|
set { Author = new User { Username = value }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <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; }
|
|
|
|
|
public int PreviewTime { get; set; }
|
|
|
|
|
public string AudioFile { get; set; }
|
|
|
|
|
public string BackgroundFile { get; set; }
|
|
|
|
|
|
|
|
|
|
public override string ToString() => $"{Artist} - {Title} ({Author})";
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public string[] SearchableTerms => new[]
|
|
|
|
|
{
|
|
|
|
|
Author?.Username,
|
|
|
|
|
Artist,
|
|
|
|
|
ArtistUnicode,
|
|
|
|
|
Title,
|
|
|
|
|
TitleUnicode,
|
|
|
|
|
Source,
|
|
|
|
|
Tags
|
|
|
|
|
}.Where(s => !string.IsNullOrEmpty(s)).ToArray();
|
|
|
|
|
|
|
|
|
|
public bool Equals(BeatmapMetadata other)
|
|
|
|
|
{
|
|
|
|
|
if (other == null)
|
|
|
|
|
return false;
|
|
|
|
|
|
2018-06-08 11:46:34 +08:00
|
|
|
|
return Title == other.Title
|
2018-04-13 17:19:50 +08:00
|
|
|
|
&& TitleUnicode == other.TitleUnicode
|
|
|
|
|
&& Artist == other.Artist
|
|
|
|
|
&& ArtistUnicode == other.ArtistUnicode
|
|
|
|
|
&& AuthorString == other.AuthorString
|
|
|
|
|
&& Source == other.Source
|
|
|
|
|
&& Tags == other.Tags
|
|
|
|
|
&& PreviewTime == other.PreviewTime
|
|
|
|
|
&& AudioFile == other.AudioFile
|
|
|
|
|
&& BackgroundFile == other.BackgroundFile;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|