2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-06-05 18:17:43 +09:00
|
|
|
|
using System;
|
2017-02-07 13:52:19 +09:00
|
|
|
|
using System.Collections.Generic;
|
2017-10-04 22:52:12 +03:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2017-03-16 13:59:23 +09:00
|
|
|
|
using System.Linq;
|
2021-05-28 14:33:05 +09:00
|
|
|
|
using JetBrains.Annotations;
|
2021-11-24 13:34:52 +09:00
|
|
|
|
using Newtonsoft.Json;
|
2020-09-04 20:34:26 +09:00
|
|
|
|
using osu.Framework.Testing;
|
2017-10-25 22:07:32 +09:00
|
|
|
|
using osu.Game.Database;
|
2021-11-19 16:07:55 +09:00
|
|
|
|
using osu.Game.Extensions;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-07-26 13:22:46 +09:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2017-02-07 13:52:19 +09:00
|
|
|
|
{
|
2020-09-04 20:34:26 +09:00
|
|
|
|
[ExcludeFromDynamicCompile]
|
2021-12-15 00:31:35 +09:00
|
|
|
|
[Serializable]
|
|
|
|
|
[Table(@"BeatmapSetInfo")]
|
2021-11-19 18:59:14 +09:00
|
|
|
|
public class EFBeatmapSetInfo : IHasPrimaryKey, IHasFiles<BeatmapSetFileInfo>, ISoftDelete, IEquatable<EFBeatmapSetInfo>, IBeatmapSetInfo
|
2017-02-07 13:52:19 +09:00
|
|
|
|
{
|
2017-10-14 14:28:25 +09:00
|
|
|
|
public int ID { get; set; }
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-11-19 21:53:40 +09:00
|
|
|
|
public bool IsManaged => ID > 0;
|
|
|
|
|
|
2021-11-12 17:50:31 +09:00
|
|
|
|
private int? onlineID;
|
2018-06-28 10:28:35 +09:00
|
|
|
|
|
2021-11-12 17:50:31 +09:00
|
|
|
|
[Column("OnlineBeatmapSetID")]
|
|
|
|
|
public int? OnlineID
|
2018-06-28 10:28:35 +09:00
|
|
|
|
{
|
2021-11-12 17:50:31 +09:00
|
|
|
|
get => onlineID;
|
|
|
|
|
set => onlineID = value > 0 ? value : null;
|
2018-06-28 10:28:35 +09:00
|
|
|
|
}
|
2018-09-13 11:57:33 +02:00
|
|
|
|
|
2019-06-05 18:17:43 +09:00
|
|
|
|
public DateTimeOffset DateAdded { get; set; }
|
|
|
|
|
|
2021-11-19 18:59:14 +09:00
|
|
|
|
public EFBeatmapMetadata Metadata { get; set; }
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-11-24 13:34:52 +09:00
|
|
|
|
[NotNull]
|
2021-12-14 19:47:11 +09:00
|
|
|
|
public List<EFBeatmapInfo> Beatmaps { get; } = new List<EFBeatmapInfo>();
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-11-24 18:42:47 +09:00
|
|
|
|
public BeatmapOnlineStatus Status { get; set; } = BeatmapOnlineStatus.None;
|
2021-11-01 15:42:12 +09:00
|
|
|
|
|
2021-11-24 13:42:07 +09:00
|
|
|
|
public List<BeatmapSetFileInfo> Files { get; } = new List<BeatmapSetFileInfo>();
|
2021-05-28 14:33:05 +09:00
|
|
|
|
|
2019-07-08 09:35:12 +03:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The maximum star difficulty of all beatmaps in this set.
|
|
|
|
|
/// </summary>
|
2021-11-24 13:34:52 +09:00
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public double MaxStarDifficulty => Beatmaps.Count == 0 ? 0 : Beatmaps.Max(b => b.StarRating);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-07-08 09:35:12 +03:00
|
|
|
|
/// <summary>
|
2019-07-09 17:53:34 +03:00
|
|
|
|
/// The maximum playable length in milliseconds of all beatmaps in this set.
|
2019-07-08 09:35:12 +03:00
|
|
|
|
/// </summary>
|
2021-11-24 13:34:52 +09:00
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public double MaxLength => Beatmaps.Count == 0 ? 0 : Beatmaps.Max(b => b.Length);
|
2019-07-07 18:26:56 +03:00
|
|
|
|
|
2019-07-08 10:43:35 +03:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The maximum BPM of all beatmaps in this set.
|
|
|
|
|
/// </summary>
|
2021-11-24 13:34:52 +09:00
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public double MaxBPM => Beatmaps.Count == 0 ? 0 : Beatmaps.Max(b => b.BPM);
|
2019-07-08 10:43:35 +03:00
|
|
|
|
|
2017-10-06 00:23:26 +03:00
|
|
|
|
[NotMapped]
|
2017-02-24 17:08:13 +09:00
|
|
|
|
public bool DeletePending { get; set; }
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-02-07 13:52:19 +09:00
|
|
|
|
public string Hash { get; set; }
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-04-20 13:40:38 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns the storage path for the file in this beatmapset with the given filename, if any exists, otherwise null.
|
2021-04-20 13:44:06 +02:00
|
|
|
|
/// The path returned is relative to the user file storage.
|
2021-04-20 13:40:38 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="filename">The name of the file to get the storage path of.</param>
|
2021-11-19 16:07:55 +09:00
|
|
|
|
public string GetPathForFile(string filename) => Files.SingleOrDefault(f => string.Equals(f.Filename, filename, StringComparison.OrdinalIgnoreCase))?.FileInfo.GetStoragePath();
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2018-06-08 15:26:27 +09:00
|
|
|
|
public override string ToString() => Metadata?.ToString() ?? base.ToString();
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-07-26 20:22:02 +09:00
|
|
|
|
public bool Protected { get; set; }
|
2019-06-11 23:23:40 +05:30
|
|
|
|
|
2021-11-19 18:59:14 +09:00
|
|
|
|
public bool Equals(EFBeatmapSetInfo other)
|
2021-11-12 18:14:11 +09:00
|
|
|
|
{
|
2021-11-12 18:48:34 +09:00
|
|
|
|
if (ReferenceEquals(this, other)) return true;
|
|
|
|
|
if (other == null) return false;
|
2021-11-12 18:14:11 +09:00
|
|
|
|
|
2021-11-12 18:48:34 +09:00
|
|
|
|
if (ID != 0 && other.ID != 0)
|
|
|
|
|
return ID == other.ID;
|
2021-11-12 18:14:11 +09:00
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-19 18:59:14 +09:00
|
|
|
|
public bool Equals(IBeatmapSetInfo other) => other is EFBeatmapSetInfo b && Equals(b);
|
2021-11-16 12:25:37 +09:00
|
|
|
|
|
2021-10-01 16:31:11 +09:00
|
|
|
|
#region Implementation of IHasOnlineID
|
|
|
|
|
|
2021-11-12 17:50:31 +09:00
|
|
|
|
int IHasOnlineID<int>.OnlineID => OnlineID ?? -1;
|
2021-10-01 16:31:11 +09:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Implementation of IBeatmapSetInfo
|
|
|
|
|
|
2021-12-14 19:47:11 +09:00
|
|
|
|
IBeatmapMetadataInfo IBeatmapSetInfo.Metadata => Metadata ?? Beatmaps.FirstOrDefault()?.Metadata ?? new EFBeatmapMetadata();
|
2021-10-01 16:31:11 +09:00
|
|
|
|
IEnumerable<IBeatmapInfo> IBeatmapSetInfo.Beatmaps => Beatmaps;
|
2021-11-25 16:35:42 +09:00
|
|
|
|
IEnumerable<INamedFileUsage> IHasNamedFiles.Files => Files;
|
2021-10-01 16:31:11 +09:00
|
|
|
|
|
|
|
|
|
#endregion
|
2017-02-07 13:52:19 +09:00
|
|
|
|
}
|
|
|
|
|
}
|