1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Beatmaps/BeatmapInfo.cs

129 lines
4.4 KiB
C#
Raw Normal View History

// 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 17:56:20 +08:00
2017-07-26 12:22:46 +08:00
using System;
2017-10-05 03:52:12 +08:00
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
2017-07-26 12:22:46 +08:00
using System.Linq;
using Newtonsoft.Json;
using osu.Game.IO.Serialization;
2017-07-26 12:22:46 +08:00
using osu.Game.Rulesets;
2016-11-07 23:12:49 +08:00
2017-07-26 12:22:46 +08:00
namespace osu.Game.Beatmaps
2016-11-07 23:12:49 +08:00
{
public class BeatmapInfo : IEquatable<BeatmapInfo>, IJsonSerializable
2016-11-07 23:12:49 +08:00
{
2017-10-06 05:23:26 +08:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
2017-10-05 03:52:12 +08:00
public int Id { get; set; }
2016-12-20 23:56:49 +08:00
2017-04-06 12:15:33 +08:00
//TODO: should be in database
public int BeatmapVersion;
[JsonProperty("id")]
2017-10-09 05:30:52 +08:00
[NotMapped]
2017-10-05 03:52:12 +08:00
public int? BeatmapOnlineInfoId { get; set; }
2016-10-21 16:01:12 +08:00
[JsonProperty("beatmapset_id")]
2017-10-09 05:30:52 +08:00
[NotMapped]
2017-10-05 03:52:12 +08:00
public int? BeatmapSetOnlineInfoId { get; set; }
2016-11-07 23:12:49 +08:00
2017-10-05 03:52:12 +08:00
public int BeatmapSetInfoId { get; set; }
2016-12-20 23:56:49 +08:00
2017-10-10 04:30:32 +08:00
[Required]
2017-10-06 05:23:26 +08:00
public BeatmapSetInfo BeatmapSet { get; set; }
public BeatmapMetadata Metadata { get; set; }
2017-10-05 03:52:12 +08:00
public int BeatmapDifficultyId { get; set; }
2017-10-06 05:23:26 +08:00
2017-10-10 04:30:32 +08:00
[Required]
2017-10-06 05:23:26 +08:00
public BeatmapDifficulty Difficulty { get; set; }
2016-11-07 23:12:49 +08:00
2017-10-05 03:52:12 +08:00
[NotMapped]
2017-04-12 20:09:39 +08:00
public BeatmapMetrics Metrics { get; set; }
2017-04-10 22:42:23 +08:00
2017-10-05 03:52:12 +08:00
[NotMapped]
public BeatmapOnlineInfo OnlineInfo { get; set; }
2016-11-07 23:12:49 +08:00
public string Path { get; set; }
[JsonProperty("file_sha2")]
2017-03-04 18:02:36 +08:00
public string Hash { get; set; }
public bool Hidden { get; set; }
2017-08-22 11:42:35 +08:00
/// <summary>
/// MD5 is kept for legacy support (matching against replays, osu-web-10 etc.).
/// </summary>
2017-10-06 05:23:26 +08:00
[NotMapped]
[JsonProperty("file_md5")]
public string MD5Hash { get; set; }
2016-11-07 23:12:49 +08:00
// General
public int AudioLeadIn { get; set; }
public bool Countdown { get; set; }
public float StackLeniency { get; set; }
public bool SpecialStyle { get; set; }
2017-10-05 03:52:12 +08:00
public int RulesetInfoId { get; set; }
2017-10-06 05:23:26 +08:00
public RulesetInfo Ruleset { get; set; }
2016-11-07 23:12:49 +08: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[]
[JsonIgnore]
public string StoredBookmarks
2016-11-07 23:12:49 +08:00
{
get { return string.Join(",", Bookmarks); }
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 23:12:49 +08:00
}
2017-03-04 18:02:36 +08:00
2017-10-05 03:52:12 +08:00
[NotMapped]
public int[] Bookmarks { get; set; } = new int[0];
2016-11-07 23:12:49 +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; }
public double StarDifficulty { get; set; }
2016-11-07 23:12:49 +08:00
public bool Equals(BeatmapInfo other)
{
2017-10-05 03:52:12 +08:00
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);
2017-10-05 03:52:12 +08:00
return Id == other?.Id;
2016-11-07 21:52:23 +08:00
}
2017-10-06 05:23:26 +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;
2017-10-06 05:23:26 +08: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 23:12:49 +08:00
}
2016-11-07 21:52:23 +08:00
}