1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game/Beatmaps/BeatmapSetInfo.cs

45 lines
1.4 KiB
C#
Raw Normal View History

// 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;
using System.Linq;
2017-02-07 12:52:19 +08:00
using SQLite.Net.Attributes;
using SQLiteNetExtensions.Attributes;
2017-07-26 12:22:46 +08:00
namespace osu.Game.Beatmaps
2017-02-07 12:52:19 +08:00
{
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; }
[Ignore]
public BeatmapSetOnlineInfo OnlineInfo { get; set; }
public double MaxStarDifficulty => Beatmaps.Max(b => b.StarDifficulty);
[Indexed]
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 StoryboardFile => Files.FirstOrDefault(f => f.Filename.EndsWith(".osb"))?.Filename;
[OneToMany(CascadeOperations = CascadeOperation.All)]
public List<BeatmapSetFileInfo> Files { get; set; }
public bool Protected { get; set; }
2017-02-07 12:52:19 +08:00
}
}