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;
|
2020-09-04 19:34:26 +08:00
|
|
|
|
using osu.Framework.Testing;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Database;
|
2021-10-25 15:44:52 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
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
|
|
|
|
|
{
|
2020-09-04 19:34:26 +08:00
|
|
|
|
[ExcludeFromDynamicCompile]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[Serializable]
|
2021-11-01 16:03:26 +08:00
|
|
|
|
public class BeatmapInfo : IEquatable<BeatmapInfo>, IHasPrimaryKey, IBeatmapInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
|
|
|
|
public int BeatmapVersion;
|
|
|
|
|
|
2021-11-12 16:45:05 +08:00
|
|
|
|
private int? onlineID;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
[JsonProperty("id")]
|
2021-11-12 16:45:05 +08:00
|
|
|
|
[Column("OnlineBeatmapID")]
|
|
|
|
|
public int? OnlineID
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-11-12 16:45:05 +08:00
|
|
|
|
get => onlineID;
|
|
|
|
|
set => onlineID = 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]
|
2021-10-25 15:44:52 +08:00
|
|
|
|
public APIBeatmap OnlineInfo { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
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 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; }
|
2020-07-20 18:36:42 +08:00
|
|
|
|
public bool EpilepsyWarning { get; set; }
|
|
|
|
|
|
2021-09-12 22:40:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether or not sound samples should change rate when playing with speed-changing mods.
|
2021-09-13 06:13:07 +08:00
|
|
|
|
/// TODO: only read/write supported for now, requires implementation in gameplay.
|
2021-09-12 22:40:52 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public bool SamplesMatchPlaybackRate { get; set; }
|
|
|
|
|
|
2021-08-25 02:53:27 +08:00
|
|
|
|
public CountdownType Countdown { get; set; } = CountdownType.Normal;
|
2021-08-25 12:24:52 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The number of beats to move the countdown backwards (compared to its default location).
|
|
|
|
|
/// </summary>
|
2021-08-25 02:53:27 +08:00
|
|
|
|
public int CountdownOffset { get; set; }
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
// Editor
|
|
|
|
|
// This bookmarks stuff is necessary because DB doesn't know how to store int[]
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public string StoredBookmarks
|
|
|
|
|
{
|
2020-10-16 17:52:29 +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
|
2021-11-11 16:19:53 +08:00
|
|
|
|
[Column("Version")]
|
|
|
|
|
public string DifficultyName { get; set; }
|
2021-04-18 09:52:25 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[JsonProperty("difficulty_rating")]
|
2021-11-11 16:18:51 +08:00
|
|
|
|
[Column("StarDifficulty")]
|
|
|
|
|
public double StarRating { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
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]
|
2021-11-11 16:18:51 +08:00
|
|
|
|
public DifficultyRating DifficultyRating => BeatmapDifficultyCache.GetDifficultyRating(StarRating);
|
2019-08-17 14:16:24 +08:00
|
|
|
|
|
2021-10-05 13:41:14 +08:00
|
|
|
|
public override string ToString() => this.GetDisplayTitle();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-11-12 17:48:34 +08:00
|
|
|
|
public bool Equals(BeatmapInfo other)
|
2021-11-12 17:09:45 +08:00
|
|
|
|
{
|
2021-11-12 17:48:34 +08:00
|
|
|
|
if (ReferenceEquals(this, other)) return true;
|
|
|
|
|
if (other == null) return false;
|
2021-11-12 17:09:45 +08:00
|
|
|
|
|
2021-11-12 17:48:34 +08:00
|
|
|
|
if (ID != 0 && other.ID != 0)
|
|
|
|
|
return ID == other.ID;
|
2021-11-12 17:09:45 +08:00
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-16 11:25:37 +08:00
|
|
|
|
public bool Equals(IBeatmapInfo other) => other is BeatmapInfo b && Equals(b);
|
|
|
|
|
|
2018-04-13 17:19:50 +08: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;
|
|
|
|
|
|
|
|
|
|
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();
|
2021-10-01 15:31:11 +08:00
|
|
|
|
|
|
|
|
|
#region Implementation of IHasOnlineID
|
|
|
|
|
|
2021-11-12 18:06:12 +08:00
|
|
|
|
int IHasOnlineID<int>.OnlineID => OnlineID ?? -1;
|
2021-10-01 15:31:11 +08:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Implementation of IBeatmapInfo
|
|
|
|
|
|
2021-10-25 14:12:21 +08:00
|
|
|
|
[JsonIgnore]
|
2021-11-04 14:22:32 +08:00
|
|
|
|
IBeatmapMetadataInfo IBeatmapInfo.Metadata => Metadata ?? BeatmapSet?.Metadata ?? new BeatmapMetadata();
|
2021-10-25 14:12:21 +08:00
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
2021-10-01 16:22:25 +08:00
|
|
|
|
IBeatmapDifficultyInfo IBeatmapInfo.Difficulty => BaseDifficulty;
|
2021-10-25 14:12:21 +08:00
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
2021-10-01 16:22:25 +08:00
|
|
|
|
IBeatmapSetInfo IBeatmapInfo.BeatmapSet => BeatmapSet;
|
2021-10-25 14:12:21 +08:00
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
2021-10-01 15:31:11 +08:00
|
|
|
|
IRulesetInfo IBeatmapInfo.Ruleset => Ruleset;
|
2021-10-25 14:12:21 +08:00
|
|
|
|
|
2021-10-01 15:31:11 +08:00
|
|
|
|
#endregion
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|