2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-02-07 04:52:19 +00:00
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
2017-10-04 19:52:12 +00:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2017-03-16 04:59:23 +00:00
|
|
|
|
using System.Linq;
|
2017-10-25 13:07:32 +00:00
|
|
|
|
using osu.Game.Database;
|
2017-02-07 04:52:19 +00:00
|
|
|
|
|
2017-07-26 04:22:46 +00:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2017-02-07 04:52:19 +00:00
|
|
|
|
{
|
2017-10-25 13:07:32 +00:00
|
|
|
|
public class BeatmapSetInfo : IHasPrimaryKey
|
2017-02-07 04:52:19 +00:00
|
|
|
|
{
|
2017-10-05 21:23:26 +00:00
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
2017-10-14 05:28:25 +00:00
|
|
|
|
public int ID { get; set; }
|
2017-02-07 04:52:19 +00:00
|
|
|
|
|
2017-10-14 05:28:25 +00:00
|
|
|
|
public int? OnlineBeatmapSetID { get; set; }
|
2017-02-07 04:52:19 +00:00
|
|
|
|
|
2017-10-05 21:23:26 +00:00
|
|
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
|
|
|
|
2017-02-07 04:52:19 +00:00
|
|
|
|
public List<BeatmapInfo> Beatmaps { get; set; }
|
|
|
|
|
|
2017-10-04 19:52:12 +00:00
|
|
|
|
[NotMapped]
|
2017-05-28 03:37:55 +00:00
|
|
|
|
public BeatmapSetOnlineInfo OnlineInfo { get; set; }
|
|
|
|
|
|
2017-03-17 02:53:13 +00:00
|
|
|
|
public double MaxStarDifficulty => Beatmaps.Max(b => b.StarDifficulty);
|
2017-03-16 04:59:23 +00:00
|
|
|
|
|
2017-10-05 21:23:26 +00:00
|
|
|
|
[NotMapped]
|
2017-02-24 08:08:13 +00:00
|
|
|
|
public bool DeletePending { get; set; }
|
|
|
|
|
|
2017-02-07 04:52:19 +00:00
|
|
|
|
public string Hash { get; set; }
|
|
|
|
|
|
2017-07-26 11:22:02 +00:00
|
|
|
|
public string StoryboardFile => Files.FirstOrDefault(f => f.Filename.EndsWith(".osb"))?.Filename;
|
2017-02-09 14:09:48 +00:00
|
|
|
|
|
2017-07-31 12:48:03 +00:00
|
|
|
|
public List<BeatmapSetFileInfo> Files { get; set; }
|
2017-07-26 11:22:02 +00:00
|
|
|
|
|
|
|
|
|
public bool Protected { get; set; }
|
2017-02-07 04:52:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|