2017-02-07 12:59:30 +08: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 12:52:19 +08:00
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
2017-10-05 03:52:12 +08:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2017-03-16 12:59:23 +08:00
|
|
|
|
using System.Linq;
|
2017-10-15 05:40:41 +08:00
|
|
|
|
using osu.Game.Database;
|
|
|
|
|
using osu.Game.IO;
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
2017-07-26 12:22:46 +08:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2017-02-07 12:52:19 +08:00
|
|
|
|
{
|
2017-10-15 05:40:41 +08:00
|
|
|
|
public class BeatmapSetInfo : IPopulate
|
2017-02-07 12:52:19 +08:00
|
|
|
|
{
|
2017-10-06 05:23:26 +08:00
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
2017-10-14 13:28:25 +08:00
|
|
|
|
public int ID { get; set; }
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
2017-10-09 05:30:52 +08:00
|
|
|
|
[NotMapped]
|
2017-10-14 13:28:25 +08:00
|
|
|
|
public int? OnlineBeatmapSetID { get; set; }
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
2017-10-06 05:23:26 +08:00
|
|
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
|
|
|
|
2017-02-07 12:52:19 +08:00
|
|
|
|
public List<BeatmapInfo> Beatmaps { get; set; }
|
|
|
|
|
|
2017-10-05 03:52:12 +08:00
|
|
|
|
[NotMapped]
|
2017-05-28 11:37:55 +08:00
|
|
|
|
public BeatmapSetOnlineInfo OnlineInfo { get; set; }
|
|
|
|
|
|
2017-03-17 10:53:13 +08:00
|
|
|
|
public double MaxStarDifficulty => Beatmaps.Max(b => b.StarDifficulty);
|
2017-03-16 12:59:23 +08:00
|
|
|
|
|
2017-10-06 05:23:26 +08:00
|
|
|
|
[NotMapped]
|
2017-02-24 16:08:13 +08:00
|
|
|
|
public bool DeletePending { get; set; }
|
|
|
|
|
|
2017-02-07 12:52:19 +08:00
|
|
|
|
public string Hash { get; set; }
|
|
|
|
|
|
2017-07-26 19:22:02 +08:00
|
|
|
|
public string StoryboardFile => Files.FirstOrDefault(f => f.Filename.EndsWith(".osb"))?.Filename;
|
2017-02-09 22:09:48 +08:00
|
|
|
|
|
2017-07-31 20:48:03 +08:00
|
|
|
|
public List<BeatmapSetFileInfo> Files { get; set; }
|
2017-07-26 19:22:02 +08:00
|
|
|
|
|
|
|
|
|
public bool Protected { get; set; }
|
2017-10-15 05:40:41 +08:00
|
|
|
|
|
|
|
|
|
public void Populate(OsuDbContext connection)
|
|
|
|
|
{
|
|
|
|
|
var entry = connection.Entry(this);
|
|
|
|
|
entry.Collection<BeatmapInfo>(nameof(Beatmaps)).Load();
|
|
|
|
|
entry.Reference<BeatmapMetadata>(nameof(Metadata)).Load();
|
|
|
|
|
entry.Collection<BeatmapSetFileInfo>(nameof(Files)).Load();
|
|
|
|
|
|
|
|
|
|
foreach (var beatmap in Beatmaps)
|
|
|
|
|
{
|
|
|
|
|
var beatmapEntry = connection.Entry(beatmap);
|
|
|
|
|
beatmapEntry.Reference<BeatmapDifficulty>(nameof(beatmap.Difficulty)).Load();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (var file in Files)
|
|
|
|
|
{
|
|
|
|
|
var fileEntry = connection.Entry(file);
|
|
|
|
|
fileEntry.Reference<FileInfo>(nameof(file.FileInfo)).Load();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-07 12:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|