2017-02-07 13:59:30 +09: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-12-06 18:56:20 +09:00
|
|
|
|
|
2017-04-06 15:54:50 +09:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using osu.Game.IO.Serialization;
|
2016-11-07 23:12:49 +08:00
|
|
|
|
using SQLite.Net.Attributes;
|
|
|
|
|
using SQLiteNetExtensions.Attributes;
|
2017-03-12 14:32:50 +09:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
2016-11-07 23:12:49 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
|
{
|
2017-04-06 15:54:50 +09:00
|
|
|
|
public class BeatmapInfo : IEquatable<BeatmapInfo>, IJsonSerializable
|
2016-11-07 23:12:49 +08:00
|
|
|
|
{
|
2016-12-20 23:56:49 +08:00
|
|
|
|
[PrimaryKey, AutoIncrement]
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
2017-04-06 13:15:33 +09:00
|
|
|
|
//TODO: should be in database
|
2017-04-03 20:26:46 +09:00
|
|
|
|
public int BeatmapVersion;
|
|
|
|
|
|
2017-03-07 10:59:19 +09:00
|
|
|
|
public int? OnlineBeatmapID { get; set; }
|
2016-10-21 17:01:12 +09:00
|
|
|
|
|
2017-03-07 10:59:19 +09:00
|
|
|
|
public int? OnlineBeatmapSetID { get; set; }
|
2016-11-07 23:12:49 +08:00
|
|
|
|
|
2016-12-20 23:56:49 +08:00
|
|
|
|
[ForeignKey(typeof(BeatmapSetInfo))]
|
|
|
|
|
public int BeatmapSetInfoID { get; set; }
|
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
[ManyToOne]
|
|
|
|
|
public BeatmapSetInfo BeatmapSet { get; set; }
|
|
|
|
|
|
|
|
|
|
[ForeignKey(typeof(BeatmapMetadata))]
|
|
|
|
|
public int BeatmapMetadataID { get; set; }
|
|
|
|
|
|
|
|
|
|
[OneToOne(CascadeOperations = CascadeOperation.All)]
|
2016-10-21 17:01:12 +09:00
|
|
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
|
|
|
|
2017-03-16 23:18:02 +09:00
|
|
|
|
[ForeignKey(typeof(BeatmapDifficulty)), NotNull]
|
2016-11-07 23:12:49 +08:00
|
|
|
|
public int BaseDifficultyID { get; set; }
|
|
|
|
|
|
|
|
|
|
[OneToOne(CascadeOperations = CascadeOperation.All)]
|
2017-03-16 23:18:02 +09:00
|
|
|
|
public BeatmapDifficulty Difficulty { get; set; }
|
2016-11-07 23:12:49 +08:00
|
|
|
|
|
2017-04-10 16:42:23 +02:00
|
|
|
|
[Ignore]
|
2017-04-12 21:09:39 +09:00
|
|
|
|
public BeatmapMetrics Metrics { get; set; }
|
2017-04-10 16:42:23 +02:00
|
|
|
|
|
2017-05-19 15:43:18 -03:00
|
|
|
|
[Ignore]
|
|
|
|
|
public BeatmapOnlineInfo OnlineInfo { get; set; }
|
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
2017-04-11 13:44:55 +09:00
|
|
|
|
[JsonProperty("file_md5")]
|
2017-03-04 19:02:36 +09:00
|
|
|
|
public string Hash { get; set; }
|
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
// General
|
|
|
|
|
public int AudioLeadIn { get; set; }
|
|
|
|
|
public bool Countdown { get; set; }
|
|
|
|
|
public float StackLeniency { get; set; }
|
|
|
|
|
public bool SpecialStyle { get; set; }
|
2017-04-15 05:01:36 +09:00
|
|
|
|
|
2017-04-17 17:43:48 +09:00
|
|
|
|
[ForeignKey(typeof(RulesetInfo))]
|
|
|
|
|
public int RulesetID { get; set; }
|
|
|
|
|
|
|
|
|
|
[OneToOne(CascadeOperations = CascadeOperation.All)]
|
|
|
|
|
public RulesetInfo Ruleset { get; set; }
|
2017-04-15 06:14:31 +09:00
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
public bool LetterboxInBreaks { get; set; }
|
|
|
|
|
public bool WidescreenStoryboard { get; set; }
|
|
|
|
|
|
|
|
|
|
// Editor
|
|
|
|
|
// This bookmarks stuff is necessary because DB doesn't know how to store int[]
|
|
|
|
|
public string StoredBookmarks { get; internal set; }
|
2017-04-06 15:54:50 +09:00
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
[Ignore]
|
2017-04-06 15:54:50 +09:00
|
|
|
|
[JsonIgnore]
|
2016-11-07 23:12:49 +08:00
|
|
|
|
public int[] Bookmarks
|
|
|
|
|
{
|
2017-04-06 15:54:50 +09:00
|
|
|
|
get { return StoredBookmarks.Split(',').Select(int.Parse).ToArray(); }
|
|
|
|
|
set { StoredBookmarks = string.Join(",", value); }
|
2016-11-07 23:12:49 +08:00
|
|
|
|
}
|
2017-03-04 19:02:36 +09:00
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
public double DistanceSpacing { get; set; }
|
|
|
|
|
public int BeatDivisor { get; set; }
|
|
|
|
|
public int GridSize { get; set; }
|
|
|
|
|
public double TimelineZoom { get; set; }
|
|
|
|
|
|
|
|
|
|
// Metadata
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
|
2017-03-17 11:53:13 +09:00
|
|
|
|
public double StarDifficulty { get; set; }
|
2017-02-19 17:41:51 +01:00
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
public bool Equals(BeatmapInfo other)
|
|
|
|
|
{
|
2016-12-21 14:47:56 +08:00
|
|
|
|
return ID == other?.ID;
|
2016-11-07 21:52:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 18:35:24 +09:00
|
|
|
|
public bool AudioEquals(BeatmapInfo other) => other != null && BeatmapSet != null && other.BeatmapSet != null &&
|
2017-04-06 15:54:50 +09:00
|
|
|
|
BeatmapSet.Path == other.BeatmapSet.Path &&
|
|
|
|
|
(Metadata ?? BeatmapSet.Metadata).AudioFile == (other.Metadata ?? other.BeatmapSet.Metadata).AudioFile;
|
2017-04-28 15:03:07 +09:00
|
|
|
|
|
|
|
|
|
public bool BackgroundEquals(BeatmapInfo other) => other != null && BeatmapSet != null && other.BeatmapSet != null &&
|
|
|
|
|
BeatmapSet.Path == other.BeatmapSet.Path &&
|
|
|
|
|
(Metadata ?? BeatmapSet.Metadata).BackgroundFile == (other.Metadata ?? other.BeatmapSet.Metadata).BackgroundFile;
|
2016-11-07 23:12:49 +08:00
|
|
|
|
}
|
2016-11-07 21:52:23 +08:00
|
|
|
|
}
|