1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 02:47:25 +08:00
osu-lazer/osu.Game/Online/API/Requests/Responses/APIBeatmap.cs

111 lines
3.1 KiB
C#
Raw Normal View History

// 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-06-08 11:04:33 +08:00
using System;
2018-06-08 11:04:33 +08:00
using Newtonsoft.Json;
using osu.Game.Beatmaps;
using osu.Game.Extensions;
2018-06-08 11:04:33 +08:00
using osu.Game.Rulesets;
2021-10-21 18:14:31 +08:00
#nullable enable
2018-06-08 11:04:33 +08:00
namespace osu.Game.Online.API.Requests.Responses
{
public class APIBeatmap : IBeatmapInfo, IBeatmapOnlineInfo
2018-06-08 11:04:33 +08:00
{
[JsonProperty(@"id")]
2021-10-21 18:14:31 +08:00
public int OnlineID { get; set; }
[JsonProperty(@"beatmapset_id")]
public int OnlineBeatmapSetID { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"status")]
public BeatmapOnlineStatus Status { get; set; }
2021-10-21 15:43:46 +08:00
[JsonProperty("checksum")]
2021-10-21 18:14:31 +08:00
public string Checksum { get; set; } = string.Empty;
2021-10-21 15:43:46 +08:00
[JsonProperty(@"user_id")]
public int AuthorID { get; set; }
[JsonProperty(@"beatmapset")]
2021-10-21 18:14:31 +08:00
public APIBeatmapSet? BeatmapSet { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"playcount")]
public int PlayCount { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"passcount")]
public int PassCount { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"mode_int")]
2021-10-21 18:14:31 +08:00
public int RulesetID { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"difficulty_rating")]
2021-10-21 18:14:31 +08:00
public double StarRating { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"drain")]
public float DrainRate { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"cs")]
public float CircleSize { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"ar")]
public float ApproachRate { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"accuracy")]
public float OverallDifficulty { get; set; }
2018-06-08 11:04:33 +08:00
[JsonIgnore]
public double Length { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"total_length")]
private double lengthInSeconds
{
get => TimeSpan.FromMilliseconds(Length).TotalSeconds;
set => Length = TimeSpan.FromSeconds(value).TotalMilliseconds;
}
2018-06-08 11:04:33 +08:00
[JsonProperty(@"count_circles")]
public int CircleCount { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"count_sliders")]
public int SliderCount { get; set; }
2018-06-08 11:04:33 +08:00
[JsonProperty(@"version")]
2021-10-21 18:14:31 +08:00
public string DifficultyName { get; set; } = string.Empty;
2018-06-08 11:04:33 +08:00
2019-06-13 15:39:38 +08:00
[JsonProperty(@"failtimes")]
public APIFailTimes? FailTimes { get; set; }
2019-06-13 15:39:38 +08:00
2020-02-20 00:58:41 +08:00
[JsonProperty(@"max_combo")]
public int? MaxCombo { get; set; }
2020-02-20 00:58:41 +08:00
public double BPM { get; set; }
2021-10-21 18:14:31 +08:00
#region Implementation of IBeatmapInfo
public IBeatmapMetadataInfo Metadata => (BeatmapSet as IBeatmapSetInfo)?.Metadata ?? new BeatmapMetadata();
2021-10-21 18:14:31 +08:00
public IBeatmapDifficultyInfo Difficulty => new BeatmapDifficulty
{
DrainRate = DrainRate,
CircleSize = CircleSize,
ApproachRate = ApproachRate,
OverallDifficulty = OverallDifficulty,
2021-10-21 18:14:31 +08:00
};
IBeatmapSetInfo? IBeatmapInfo.BeatmapSet => BeatmapSet;
public string MD5Hash => Checksum;
public IRulesetInfo Ruleset => new RulesetInfo { OnlineID = RulesetID };
2021-10-21 18:14:31 +08:00
[JsonIgnore]
2021-10-21 18:14:31 +08:00
public string Hash => throw new NotImplementedException();
#endregion
public bool Equals(IBeatmapInfo? other) => other is APIBeatmap b && this.MatchesOnlineID(b);
2018-06-08 11:04:33 +08:00
}
}