2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-20 07:30:03 +00:00
|
|
|
|
|
2017-05-02 08:54:07 +00:00
|
|
|
|
using System.Linq;
|
2017-05-28 03:37:55 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2016-10-18 17:35:01 +00:00
|
|
|
|
using SQLite.Net.Attributes;
|
2016-10-04 20:29:08 +00:00
|
|
|
|
|
2017-07-26 04:22:46 +00:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2016-08-31 04:52:30 +00:00
|
|
|
|
{
|
2016-10-07 17:50:34 +00:00
|
|
|
|
public class BeatmapMetadata
|
2016-08-31 04:52:30 +00:00
|
|
|
|
{
|
2016-10-19 14:31:10 +00:00
|
|
|
|
[PrimaryKey, AutoIncrement]
|
2016-10-07 17:50:34 +00:00
|
|
|
|
public int ID { get; set; }
|
2016-12-21 06:47:56 +00:00
|
|
|
|
|
2017-03-07 01:59:19 +00:00
|
|
|
|
public int? OnlineBeatmapSetID { get; set; }
|
2016-12-21 06:47:56 +00:00
|
|
|
|
|
2016-10-04 20:29:08 +00:00
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public string TitleUnicode { get; set; }
|
|
|
|
|
public string Artist { get; set; }
|
|
|
|
|
public string ArtistUnicode { get; set; }
|
2017-05-28 03:37:55 +00:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"creator")]
|
2016-10-04 20:29:08 +00:00
|
|
|
|
public string Author { get; set; }
|
2017-05-28 03:37:55 +00:00
|
|
|
|
|
2016-10-04 20:29:08 +00:00
|
|
|
|
public string Source { get; set; }
|
2017-06-07 14:30:52 +00:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"tags")]
|
2016-10-04 20:29:08 +00:00
|
|
|
|
public string Tags { get; set; }
|
|
|
|
|
public int PreviewTime { get; set; }
|
|
|
|
|
public string AudioFile { get; set; }
|
|
|
|
|
public string BackgroundFile { get; set; }
|
2017-05-02 01:45:55 +00:00
|
|
|
|
|
|
|
|
|
public string[] SearchableTerms => new[]
|
|
|
|
|
{
|
2017-05-19 04:13:27 +00:00
|
|
|
|
Author,
|
2017-05-02 01:45:55 +00:00
|
|
|
|
Artist,
|
|
|
|
|
ArtistUnicode,
|
|
|
|
|
Title,
|
|
|
|
|
TitleUnicode,
|
|
|
|
|
Source,
|
|
|
|
|
Tags
|
2017-05-02 08:54:07 +00:00
|
|
|
|
}.Where(s => !string.IsNullOrEmpty(s)).ToArray();
|
2016-08-31 04:52:30 +00:00
|
|
|
|
}
|
2017-05-28 03:37:55 +00:00
|
|
|
|
}
|