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 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-12-14 23:31:35 +08:00
|
|
|
|
[Table(@"BeatmapInfo")]
|
2021-11-19 17:59:14 +08:00
|
|
|
|
public class EFBeatmapInfo : IEquatable<EFBeatmapInfo>, IHasPrimaryKey, IBeatmapInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
2021-11-19 20:53:40 +08:00
|
|
|
|
public bool IsManaged => ID > 0;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
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; }
|
|
|
|
|
|
2021-11-24 17:42:47 +08:00
|
|
|
|
public BeatmapOnlineStatus Status { get; set; } = BeatmapOnlineStatus.None;
|
2018-09-13 17:57:33 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[Required]
|
2022-01-13 17:02:08 +08:00
|
|
|
|
public EFBeatmapSetInfo BeatmapSetInfo { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-11-19 17:59:14 +08:00
|
|
|
|
public EFBeatmapMetadata Metadata { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public int BaseDifficultyID { get; set; }
|
|
|
|
|
|
2021-11-19 17:59:14 +08:00
|
|
|
|
public EFBeatmapDifficulty BaseDifficulty { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
[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; }
|
|
|
|
|
|
2022-01-13 17:02:08 +08:00
|
|
|
|
[Column("RulesetID")]
|
|
|
|
|
public int RulesetInfoID { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-01-13 17:02:08 +08:00
|
|
|
|
public EFRulesetInfo RulesetInfo { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
[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>
|
2021-12-14 23:31:35 +08:00
|
|
|
|
public List<EFScoreInfo> Scores { get; set; }
|
2019-01-08 16:53:43 +08:00
|
|
|
|
|
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-19 17:59:14 +08:00
|
|
|
|
public bool Equals(EFBeatmapInfo 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-19 17:59:14 +08:00
|
|
|
|
public bool Equals(IBeatmapInfo other) => other is EFBeatmapInfo b && Equals(b);
|
2021-11-16 11:25:37 +08:00
|
|
|
|
|
2022-01-13 17:02:08 +08:00
|
|
|
|
public bool AudioEquals(EFBeatmapInfo other) => other != null && BeatmapSetInfo != null && other.BeatmapSetInfo != null &&
|
|
|
|
|
BeatmapSetInfo.Hash == other.BeatmapSetInfo.Hash &&
|
|
|
|
|
(Metadata ?? BeatmapSetInfo.Metadata).AudioFile == (other.Metadata ?? other.BeatmapSetInfo.Metadata).AudioFile;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-01-13 17:02:08 +08:00
|
|
|
|
public bool BackgroundEquals(EFBeatmapInfo other) => other != null && BeatmapSetInfo != null && other.BeatmapSetInfo != null &&
|
|
|
|
|
BeatmapSetInfo.Hash == other.BeatmapSetInfo.Hash &&
|
|
|
|
|
(Metadata ?? BeatmapSetInfo.Metadata).BackgroundFile == (other.Metadata ?? other.BeatmapSetInfo.Metadata).BackgroundFile;
|
2018-05-17 11:59:48 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2021-11-19 17:59:14 +08:00
|
|
|
|
/// Returns a shallow-clone of this <see cref="EFBeatmapInfo"/>.
|
2018-05-17 11:59:48 +08:00
|
|
|
|
/// </summary>
|
2021-11-19 17:59:14 +08:00
|
|
|
|
public EFBeatmapInfo Clone() => (EFBeatmapInfo)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]
|
2022-01-13 17:02:08 +08:00
|
|
|
|
IBeatmapMetadataInfo IBeatmapInfo.Metadata => Metadata ?? BeatmapSetInfo?.Metadata ?? new EFBeatmapMetadata();
|
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]
|
2022-01-13 17:02:08 +08:00
|
|
|
|
IBeatmapSetInfo IBeatmapInfo.BeatmapSet => BeatmapSetInfo;
|
2021-10-25 14:12:21 +08:00
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
2022-01-13 17:02:08 +08:00
|
|
|
|
IRulesetInfo IBeatmapInfo.Ruleset => RulesetInfo;
|
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
|
|
|
|
}
|
|
|
|
|
}
|