2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2019-01-08 16:53:43 +08:00
|
|
|
|
using System.Collections.Generic;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using osu.Game.Database;
|
|
|
|
|
using osu.Game.IO.Serialization;
|
|
|
|
|
using osu.Game.Rulesets;
|
2019-01-08 16:53:43 +08:00
|
|
|
|
using osu.Game.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class BeatmapInfo : IEquatable<BeatmapInfo>, IJsonSerializable, IHasPrimaryKey
|
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
|
|
|
|
public int BeatmapVersion;
|
|
|
|
|
|
|
|
|
|
private int? onlineBeatmapID;
|
|
|
|
|
|
|
|
|
|
[JsonProperty("id")]
|
|
|
|
|
public int? OnlineBeatmapID
|
|
|
|
|
{
|
2018-09-13 16:10:58 +08:00
|
|
|
|
get => onlineBeatmapID;
|
|
|
|
|
set => onlineBeatmapID = value > 0 ? value : null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-30 17:06:48 +08:00
|
|
|
|
[JsonIgnore]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public int BeatmapSetInfoID { get; set; }
|
|
|
|
|
|
2018-09-13 16:10:58 +08:00
|
|
|
|
public BeatmapSetOnlineStatus Status { get; set; } = BeatmapSetOnlineStatus.None;
|
2018-09-13 17:57:33 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[Required]
|
|
|
|
|
public BeatmapSetInfo BeatmapSet { get; set; }
|
|
|
|
|
|
|
|
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public int BaseDifficultyID { get; set; }
|
|
|
|
|
|
|
|
|
|
public BeatmapDifficulty BaseDifficulty { get; set; }
|
|
|
|
|
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public BeatmapMetrics Metrics { get; set; }
|
|
|
|
|
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public BeatmapOnlineInfo OnlineInfo { get; set; }
|
|
|
|
|
|
2020-02-20 00:58:10 +08:00
|
|
|
|
[NotMapped]
|
|
|
|
|
public int? MaxCombo { get; set; }
|
|
|
|
|
|
2019-07-08 01:25:36 +08:00
|
|
|
|
/// <summary>
|
2019-07-09 22:31:15 +08:00
|
|
|
|
/// The playable length in milliseconds of this beatmap.
|
2019-07-08 01:25:36 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public double Length { get; set; }
|
|
|
|
|
|
2019-07-08 15:43:35 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The most common BPM of this beatmap.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double BPM { get; set; }
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("file_sha2")]
|
|
|
|
|
public string Hash { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public bool Hidden { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// MD5 is kept for legacy support (matching against replays, osu-web-10 etc.).
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty("file_md5")]
|
|
|
|
|
public string MD5Hash { get; set; }
|
|
|
|
|
|
|
|
|
|
// General
|
2019-11-21 17:21:49 +08:00
|
|
|
|
public double AudioLeadIn { get; set; }
|
2018-06-29 01:02:38 +08:00
|
|
|
|
public bool Countdown { get; set; } = true;
|
|
|
|
|
public float StackLeniency { get; set; } = 0.7f;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public bool SpecialStyle { get; set; }
|
|
|
|
|
|
|
|
|
|
public int RulesetID { get; set; }
|
|
|
|
|
|
|
|
|
|
public RulesetInfo Ruleset { get; set; }
|
|
|
|
|
|
|
|
|
|
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[]
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public string StoredBookmarks
|
|
|
|
|
{
|
2018-09-13 16:10:58 +08:00
|
|
|
|
get => string.Join(",", Bookmarks);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(value))
|
|
|
|
|
{
|
2019-11-28 21:41:29 +08:00
|
|
|
|
Bookmarks = Array.Empty<int>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Bookmarks = value.Split(',').Select(v =>
|
|
|
|
|
{
|
2018-09-13 16:10:58 +08:00
|
|
|
|
bool result = int.TryParse(v, out int val);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return new { result, val };
|
|
|
|
|
}).Where(p => p.result).Select(p => p.val).ToArray();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[NotMapped]
|
2019-11-28 21:41:29 +08:00
|
|
|
|
public int[] Bookmarks { get; set; } = Array.Empty<int>();
|
2018-04-13 17:19:50 +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; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("difficulty_rating")]
|
|
|
|
|
public double StarDifficulty { get; set; }
|
|
|
|
|
|
2019-01-08 16:53:43 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Currently only populated for beatmap deletion. Use <see cref="ScoreManager"/> to query scores.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<ScoreInfo> Scores { get; set; }
|
|
|
|
|
|
2019-08-17 14:34:02 +08:00
|
|
|
|
[JsonIgnore]
|
2019-08-17 14:16:24 +08:00
|
|
|
|
public DifficultyRating DifficultyRating
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var rating = StarDifficulty;
|
|
|
|
|
|
|
|
|
|
if (rating < 2.0) return DifficultyRating.Easy;
|
|
|
|
|
if (rating < 2.7) return DifficultyRating.Normal;
|
|
|
|
|
if (rating < 4.0) return DifficultyRating.Hard;
|
|
|
|
|
if (rating < 5.3) return DifficultyRating.Insane;
|
|
|
|
|
if (rating < 6.5) return DifficultyRating.Expert;
|
|
|
|
|
|
|
|
|
|
return DifficultyRating.ExpertPlus;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-07 12:04:08 +08:00
|
|
|
|
public string[] SearchableTerms => new[]
|
|
|
|
|
{
|
|
|
|
|
Version
|
|
|
|
|
}.Concat(Metadata?.SearchableTerms ?? Enumerable.Empty<string>()).Where(s => !string.IsNullOrEmpty(s)).ToArray();
|
|
|
|
|
|
2020-04-22 08:08:33 +08:00
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
string version = string.IsNullOrEmpty(Version) ? string.Empty : $"[{Version}]";
|
|
|
|
|
|
|
|
|
|
return $"{Metadata} {version}".Trim();
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public bool Equals(BeatmapInfo other)
|
|
|
|
|
{
|
|
|
|
|
if (ID == 0 || other?.ID == 0)
|
|
|
|
|
// one of the two BeatmapInfos we are comparing isn't sourced from a database.
|
|
|
|
|
// fall back to reference equality.
|
|
|
|
|
return ReferenceEquals(this, other);
|
|
|
|
|
|
|
|
|
|
return ID == other?.ID;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
public bool BackgroundEquals(BeatmapInfo other) => other != null && BeatmapSet != null && other.BeatmapSet != null &&
|
2018-06-08 14:26:27 +08:00
|
|
|
|
BeatmapSet.Hash == other.BeatmapSet.Hash &&
|
|
|
|
|
(Metadata ?? BeatmapSet.Metadata).BackgroundFile == (other.Metadata ?? other.BeatmapSet.Metadata).BackgroundFile;
|
2018-05-17 11:59:48 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns a shallow-clone of this <see cref="BeatmapInfo"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public BeatmapInfo Clone() => (BeatmapInfo)MemberwiseClone();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|