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
|
|
|
|
|
2019-06-05 17:17:43 +08:00
|
|
|
|
using System;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Database;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
|
{
|
|
|
|
|
public class BeatmapSetInfo : IHasPrimaryKey, IHasFiles<BeatmapSetFileInfo>, ISoftDelete
|
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
2018-06-28 09:28:35 +08:00
|
|
|
|
private int? onlineBeatmapSetID;
|
|
|
|
|
|
|
|
|
|
public int? OnlineBeatmapSetID
|
|
|
|
|
{
|
2018-09-13 16:10:58 +08:00
|
|
|
|
get => onlineBeatmapSetID;
|
|
|
|
|
set => onlineBeatmapSetID = value > 0 ? value : null;
|
2018-06-28 09:28:35 +08:00
|
|
|
|
}
|
2018-09-13 17:57:33 +08:00
|
|
|
|
|
2019-06-05 17:17:43 +08:00
|
|
|
|
public DateTimeOffset DateAdded { get; set; }
|
|
|
|
|
|
2018-09-13 16:10:58 +08:00
|
|
|
|
public BeatmapSetOnlineStatus Status { get; set; } = BeatmapSetOnlineStatus.None;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<BeatmapInfo> Beatmaps { get; set; }
|
|
|
|
|
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public BeatmapSetOnlineInfo OnlineInfo { get; set; }
|
|
|
|
|
|
2018-06-08 14:26:27 +08:00
|
|
|
|
public double MaxStarDifficulty => Beatmaps?.Max(b => b.StarDifficulty) ?? 0;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public bool DeletePending { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Hash { get; set; }
|
|
|
|
|
|
2019-01-06 00:35:33 +08:00
|
|
|
|
public string StoryboardFile => Files?.Find(f => f.Filename.EndsWith(".osb"))?.Filename;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public List<BeatmapSetFileInfo> Files { get; set; }
|
|
|
|
|
|
2018-06-08 14:26:27 +08:00
|
|
|
|
public override string ToString() => Metadata?.ToString() ?? base.ToString();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public bool Protected { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|