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-03-16 12:59:23 +08:00
|
|
|
|
using System.Linq;
|
2017-02-07 12:52:19 +08:00
|
|
|
|
using SQLite.Net.Attributes;
|
|
|
|
|
using SQLiteNetExtensions.Attributes;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
|
{
|
|
|
|
|
public class BeatmapSetInfo
|
|
|
|
|
{
|
|
|
|
|
[PrimaryKey, AutoIncrement]
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
2017-03-07 09:59:19 +08:00
|
|
|
|
public int? OnlineBeatmapSetID { get; set; }
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
|
|
|
|
[OneToOne(CascadeOperations = CascadeOperation.All)]
|
|
|
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
|
|
|
|
|
|
|
|
[NotNull, ForeignKey(typeof(BeatmapMetadata))]
|
|
|
|
|
public int BeatmapMetadataID { get; set; }
|
|
|
|
|
|
|
|
|
|
[OneToMany(CascadeOperations = CascadeOperation.All)]
|
|
|
|
|
public List<BeatmapInfo> Beatmaps { 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-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; }
|
|
|
|
|
|
|
|
|
|
public string Path { get; set; }
|
2017-02-09 22:09:48 +08:00
|
|
|
|
|
|
|
|
|
public string StoryboardFile { get; set; }
|
2017-02-07 12:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|