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

41 lines
1.3 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 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;
using System.Linq;
2017-10-25 21:07:32 +08:00
using osu.Game.Database;
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
{
public class BeatmapSetInfo : IHasPrimaryKey, IHasFiles<BeatmapSetFileInfo>, ISoftDelete
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-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]
public BeatmapSetOnlineInfo OnlineInfo { get; set; }
public double MaxStarDifficulty => Beatmaps.Max(b => b.StarDifficulty);
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; }
public string StoryboardFile => Files.FirstOrDefault(f => f.Filename.EndsWith(".osb"))?.Filename;
public List<BeatmapSetFileInfo> Files { get; set; }
public override string ToString() => Metadata.ToString();
public bool Protected { get; set; }
2017-02-07 12:52:19 +08:00
}
}