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-12-06 09:56:20 +00:00
|
|
|
|
|
2017-07-26 04:22:46 +00:00
|
|
|
|
using System;
|
2017-10-04 19:52:12 +00:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2017-07-26 04:22:46 +00:00
|
|
|
|
using System.Linq;
|
2017-04-06 06:54:50 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2017-10-25 13:07:32 +00:00
|
|
|
|
using osu.Game.Database;
|
2017-04-06 06:54:50 +00:00
|
|
|
|
using osu.Game.IO.Serialization;
|
2017-07-26 04:22:46 +00:00
|
|
|
|
using osu.Game.Rulesets;
|
2016-11-07 15:12:49 +00:00
|
|
|
|
|
2017-07-26 04:22:46 +00:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2016-11-07 15:12:49 +00:00
|
|
|
|
{
|
2017-12-07 06:32:39 +00:00
|
|
|
|
[Serializable]
|
2017-10-25 13:07:32 +00:00
|
|
|
|
public class BeatmapInfo : IEquatable<BeatmapInfo>, IJsonSerializable, IHasPrimaryKey
|
2016-11-07 15:12:49 +00:00
|
|
|
|
{
|
2017-10-05 21:23:26 +00:00
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
2017-12-05 15:37:37 +00:00
|
|
|
|
[JsonIgnore]
|
2017-10-14 05:28:25 +00:00
|
|
|
|
public int ID { get; set; }
|
2016-12-20 15:56:49 +00:00
|
|
|
|
|
2017-04-06 04:15:33 +00:00
|
|
|
|
//TODO: should be in database
|
2017-04-03 11:26:46 +00:00
|
|
|
|
public int BeatmapVersion;
|
|
|
|
|
|
2017-10-25 05:34:39 +00:00
|
|
|
|
private int? onlineBeatmapID;
|
|
|
|
|
private int? onlineBeatmapSetID;
|
|
|
|
|
|
2017-09-21 20:07:23 +00:00
|
|
|
|
[JsonProperty("id")]
|
2017-10-25 05:34:39 +00:00
|
|
|
|
public int? OnlineBeatmapID
|
|
|
|
|
{
|
|
|
|
|
get { return onlineBeatmapID; }
|
|
|
|
|
set { onlineBeatmapID = value > 0 ? value : null; }
|
|
|
|
|
}
|
2016-10-21 08:01:12 +00:00
|
|
|
|
|
2017-09-21 20:07:23 +00:00
|
|
|
|
[JsonProperty("beatmapset_id")]
|
2017-10-08 21:30:52 +00:00
|
|
|
|
[NotMapped]
|
2017-10-25 05:34:39 +00:00
|
|
|
|
public int? OnlineBeatmapSetID
|
|
|
|
|
{
|
|
|
|
|
get { return onlineBeatmapSetID; }
|
|
|
|
|
set { onlineBeatmapSetID = value > 0 ? value : null; }
|
|
|
|
|
}
|
2016-11-07 15:12:49 +00:00
|
|
|
|
|
2017-12-05 15:37:37 +00:00
|
|
|
|
[JsonIgnore]
|
2017-10-14 05:28:25 +00:00
|
|
|
|
public int BeatmapSetInfoID { get; set; }
|
2016-12-20 15:56:49 +00:00
|
|
|
|
|
2017-10-09 20:30:32 +00:00
|
|
|
|
[Required]
|
2017-12-05 15:37:37 +00:00
|
|
|
|
[JsonIgnore]
|
2017-10-05 21:23:26 +00:00
|
|
|
|
public BeatmapSetInfo BeatmapSet { get; set; }
|
2017-10-17 09:26:28 +00:00
|
|
|
|
|
2017-10-05 21:23:26 +00:00
|
|
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
|
|
|
|
2017-12-05 15:37:37 +00:00
|
|
|
|
[JsonIgnore]
|
2017-10-14 05:28:25 +00:00
|
|
|
|
public int BaseDifficultyID { get; set; }
|
2017-10-05 21:23:26 +00:00
|
|
|
|
|
2017-10-19 05:05:11 +00:00
|
|
|
|
public BeatmapDifficulty BaseDifficulty { get; set; }
|
2016-11-07 15:12:49 +00:00
|
|
|
|
|
2017-10-04 19:52:12 +00:00
|
|
|
|
[NotMapped]
|
2017-04-12 12:09:39 +00:00
|
|
|
|
public BeatmapMetrics Metrics { get; set; }
|
2017-04-10 14:42:23 +00:00
|
|
|
|
|
2017-10-04 19:52:12 +00:00
|
|
|
|
[NotMapped]
|
2017-05-19 18:43:18 +00:00
|
|
|
|
public BeatmapOnlineInfo OnlineInfo { get; set; }
|
|
|
|
|
|
2016-11-07 15:12:49 +00:00
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
2017-08-09 06:36:15 +00:00
|
|
|
|
[JsonProperty("file_sha2")]
|
2017-03-04 10:02:36 +00:00
|
|
|
|
public string Hash { get; set; }
|
|
|
|
|
|
2017-12-05 15:37:37 +00:00
|
|
|
|
[JsonIgnore]
|
2017-08-31 06:49:56 +00:00
|
|
|
|
public bool Hidden { get; set; }
|
|
|
|
|
|
2017-08-22 03:42:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// MD5 is kept for legacy support (matching against replays, osu-web-10 etc.).
|
|
|
|
|
/// </summary>
|
2017-08-09 06:36:15 +00:00
|
|
|
|
[JsonProperty("file_md5")]
|
2017-08-08 15:17:53 +00:00
|
|
|
|
public string MD5Hash { get; set; }
|
|
|
|
|
|
2016-11-07 15:12:49 +00:00
|
|
|
|
// General
|
|
|
|
|
public int AudioLeadIn { get; set; }
|
|
|
|
|
public bool Countdown { get; set; }
|
|
|
|
|
public float StackLeniency { get; set; }
|
|
|
|
|
public bool SpecialStyle { get; set; }
|
2017-04-14 20:01:36 +00:00
|
|
|
|
|
2017-10-14 05:28:25 +00:00
|
|
|
|
public int RulesetID { get; set; }
|
2017-10-05 21:23:26 +00:00
|
|
|
|
|
|
|
|
|
public RulesetInfo Ruleset { get; set; }
|
2017-04-14 21:14:31 +00:00
|
|
|
|
|
2016-11-07 15:12:49 +00: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[]
|
2017-04-06 06:54:50 +00:00
|
|
|
|
[JsonIgnore]
|
2017-09-25 08:46:51 +00:00
|
|
|
|
public string StoredBookmarks
|
2016-11-07 15:12:49 +00:00
|
|
|
|
{
|
2017-09-25 08:46:51 +00:00
|
|
|
|
get { return string.Join(",", Bookmarks); }
|
2017-09-25 08:52:57 +00:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(value))
|
|
|
|
|
{
|
|
|
|
|
Bookmarks = new int[0];
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Bookmarks = value.Split(',').Select(v =>
|
|
|
|
|
{
|
|
|
|
|
int val;
|
|
|
|
|
bool result = int.TryParse(v, out val);
|
|
|
|
|
return new { result, val };
|
|
|
|
|
}).Where(p => p.result).Select(p => p.val).ToArray();
|
|
|
|
|
}
|
2016-11-07 15:12:49 +00:00
|
|
|
|
}
|
2017-03-04 10:02:36 +00:00
|
|
|
|
|
2017-10-04 19:52:12 +00:00
|
|
|
|
[NotMapped]
|
2017-09-25 08:46:51 +00:00
|
|
|
|
public int[] Bookmarks { get; set; } = new int[0];
|
|
|
|
|
|
2016-11-07 15:12:49 +00: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-11-24 21:48:56 +00:00
|
|
|
|
[JsonProperty("difficulty_rating")]
|
2017-03-17 02:53:13 +00:00
|
|
|
|
public double StarDifficulty { get; set; }
|
2017-02-19 16:41:51 +00:00
|
|
|
|
|
2017-12-16 07:14:01 +00:00
|
|
|
|
public override string ToString() => $"{Metadata} [{Version}]";
|
|
|
|
|
|
2016-11-07 15:12:49 +00:00
|
|
|
|
public bool Equals(BeatmapInfo other)
|
|
|
|
|
{
|
2017-10-14 05:28:25 +00:00
|
|
|
|
if (ID == 0 || other?.ID == 0)
|
2017-09-13 01:29:09 +00:00
|
|
|
|
// one of the two BeatmapInfos we are comparing isn't sourced from a database.
|
|
|
|
|
// fall back to reference equality.
|
|
|
|
|
return ReferenceEquals(this, other);
|
|
|
|
|
|
2017-10-14 05:28:25 +00:00
|
|
|
|
return ID == other?.ID;
|
2016-11-07 13:52:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-05 21:23:26 +00:00
|
|
|
|
public bool AudioEquals(BeatmapInfo other) => other != null && BeatmapSet != null && other.BeatmapSet != null &&
|
|
|
|
|
BeatmapSet.Hash == other.BeatmapSet.Hash &&
|
|
|
|
|
(Metadata ?? BeatmapSet.Metadata).AudioFile == (other.Metadata ?? other.BeatmapSet.Metadata).AudioFile;
|
2017-04-28 06:03:07 +00:00
|
|
|
|
|
2017-10-05 21:23:26 +00:00
|
|
|
|
public bool BackgroundEquals(BeatmapInfo other) => other != null && BeatmapSet != null && other.BeatmapSet != null &&
|
|
|
|
|
BeatmapSet.Hash == other.BeatmapSet.Hash &&
|
|
|
|
|
(Metadata ?? BeatmapSet.Metadata).BackgroundFile == (other.Metadata ?? other.BeatmapSet.Metadata).BackgroundFile;
|
2016-11-07 15:12:49 +00:00
|
|
|
|
}
|
2016-11-07 13:52:23 +00:00
|
|
|
|
}
|