2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-05-28 11:37:55 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-09-09 06:17:39 +08:00
|
|
|
|
using System;
|
2017-11-15 12:26:02 +08:00
|
|
|
|
using Newtonsoft.Json;
|
2017-05-28 11:37:55 +08:00
|
|
|
|
|
2017-07-26 12:22:46 +08:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2017-05-28 11:37:55 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Beatmap set info retrieved for previewing locally without having the set downloaded.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BeatmapSetOnlineInfo
|
|
|
|
|
{
|
2017-09-09 06:17:39 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The date this beatmap set was submitted to the online listing.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTimeOffset Submitted { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The date this beatmap set was ranked.
|
|
|
|
|
/// </summary>
|
2017-09-13 10:41:10 +08:00
|
|
|
|
public DateTimeOffset? Ranked { get; set; }
|
2017-09-09 06:17:39 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The date this beatmap set was last updated.
|
|
|
|
|
/// </summary>
|
2017-09-13 10:41:10 +08:00
|
|
|
|
public DateTimeOffset? LastUpdated { get; set; }
|
2017-11-10 08:06:21 +08:00
|
|
|
|
|
2018-03-27 08:04:45 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The status of this beatmap set.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public BeatmapSetOnlineStatus Status { get; set; }
|
|
|
|
|
|
2017-11-10 08:01:11 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether or not this beatmap set has a background video.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool HasVideo { get; set; }
|
2017-09-09 06:17:39 +08:00
|
|
|
|
|
2017-05-28 11:37:55 +08:00
|
|
|
|
/// <summary>
|
2017-07-11 11:28:25 +08:00
|
|
|
|
/// The different sizes of cover art for this beatmap set.
|
2017-05-28 11:37:55 +08:00
|
|
|
|
/// </summary>
|
2017-05-28 13:26:25 +08:00
|
|
|
|
public BeatmapSetOnlineCovers Covers { get; set; }
|
2017-05-28 11:37:55 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-07-11 11:28:25 +08:00
|
|
|
|
/// A small sample clip of this beatmap set's song.
|
2017-05-28 11:37:55 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public string Preview { get; set; }
|
2017-09-11 13:48:48 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The beats per minute of this beatmap set's song.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double BPM { get; set; }
|
|
|
|
|
|
2017-05-28 11:37:55 +08:00
|
|
|
|
/// <summary>
|
2017-07-11 11:28:25 +08:00
|
|
|
|
/// The amount of plays this beatmap set has.
|
2017-05-28 11:37:55 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public int PlayCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-07-11 11:28:25 +08:00
|
|
|
|
/// The amount of people who have favourited this beatmap set.
|
2017-05-28 11:37:55 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public int FavouriteCount { get; set; }
|
|
|
|
|
}
|
2017-05-28 13:26:25 +08:00
|
|
|
|
|
|
|
|
|
public class BeatmapSetOnlineCovers
|
|
|
|
|
{
|
2017-07-13 09:27:39 +08:00
|
|
|
|
public string CoverLowRes { get; set; }
|
2017-05-28 13:26:25 +08:00
|
|
|
|
|
2017-11-15 12:26:02 +08:00
|
|
|
|
[JsonProperty(@"cover@2x")]
|
2017-07-13 09:27:39 +08:00
|
|
|
|
public string Cover { get; set; }
|
2017-05-28 13:26:25 +08:00
|
|
|
|
|
2017-07-13 09:27:39 +08:00
|
|
|
|
public string CardLowRes { get; set; }
|
2017-05-28 13:26:25 +08:00
|
|
|
|
|
2017-11-15 12:26:02 +08:00
|
|
|
|
[JsonProperty(@"card@2x")]
|
2017-07-13 09:27:39 +08:00
|
|
|
|
public string Card { get; set; }
|
2017-05-28 13:26:25 +08:00
|
|
|
|
|
2017-07-13 09:27:39 +08:00
|
|
|
|
public string ListLowRes { get; set; }
|
2017-05-28 13:26:25 +08:00
|
|
|
|
|
2017-11-15 12:26:02 +08:00
|
|
|
|
[JsonProperty(@"list@2x")]
|
2017-07-13 09:27:39 +08:00
|
|
|
|
public string List { get; set; }
|
2017-05-28 13:26:25 +08:00
|
|
|
|
}
|
2017-05-28 11:37:55 +08:00
|
|
|
|
}
|