1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Database/BeatmapInfo.cs

76 lines
2.3 KiB
C#
Raw Normal View History

2016-10-19 01:35:01 +08:00
using System;
using System.Linq;
using osu.Game.Beatmaps.Samples;
using osu.Game.GameModes.Play;
using SQLite.Net.Attributes;
2016-10-19 01:35:01 +08:00
using SQLiteNetExtensions.Attributes;
namespace osu.Game.Database
{
2016-10-28 18:55:48 +08:00
public class BeatmapInfo : IEquatable<BeatmapInfo>
2016-10-19 01:35:01 +08:00
{
[PrimaryKey]
2016-10-21 16:01:12 +08:00
public int BeatmapID { get; set; }
2016-10-20 02:02:03 +08:00
[ForeignKey(typeof(BeatmapSetInfo))]
2016-10-19 01:35:01 +08:00
public int BeatmapSetID { get; set; }
2016-10-21 16:01:12 +08:00
2016-10-20 01:13:14 +08:00
[ManyToOne]
public BeatmapSetInfo BeatmapSet { get; set; }
2016-11-07 21:52:23 +08:00
2016-10-19 01:35:01 +08:00
[ForeignKey(typeof(BeatmapMetadata))]
public int BeatmapMetadataID { get; set; }
2016-10-21 16:01:12 +08:00
[OneToOne(CascadeOperations = CascadeOperation.All)]
public BeatmapMetadata Metadata { get; set; }
2016-10-19 01:35:01 +08:00
[ForeignKey(typeof(BaseDifficulty)), NotNull]
public int BaseDifficultyID { get; set; }
2016-10-21 16:01:12 +08:00
[OneToOne(CascadeOperations = CascadeOperation.All)]
2016-10-19 01:35:01 +08:00
public BaseDifficulty BaseDifficulty { get; set; }
2016-11-07 21:52:23 +08:00
public string Path { get; set; }
2016-11-07 21:52:23 +08:00
2016-10-19 01:35:01 +08:00
// General
public int AudioLeadIn { get; set; }
public bool Countdown { get; set; }
public SampleSet SampleSet { get; set; }
public float StackLeniency { get; set; }
public bool SpecialStyle { get; set; }
public PlayMode Mode { get; set; }
public bool LetterboxInBreaks { get; set; }
public bool WidescreenStoryboard { get; set; }
2016-11-07 21:52:23 +08:00
2016-10-19 01:35:01 +08:00
// Editor
// This bookmarks stuff is necessary because DB doesn't know how to store int[]
public string StoredBookmarks { get; internal set; }
[Ignore]
public int[] Bookmarks
{
get
{
return StoredBookmarks.Split(',').Select(b => int.Parse(b)).ToArray();
}
set
{
StoredBookmarks = string.Join(",", value);
}
}
public double DistanceSpacing { get; set; }
public int BeatDivisor { get; set; }
public int GridSize { get; set; }
public double TimelineZoom { get; set; }
2016-11-07 21:52:23 +08:00
2016-10-19 01:35:01 +08:00
// Metadata
public string Version { get; set; }
2016-10-28 18:55:48 +08:00
public bool Equals(BeatmapInfo other)
{
return BeatmapID == other?.BeatmapID;
2016-11-07 21:52:23 +08:00
}
public bool AudioEquals(BeatmapInfo other) => BeatmapSet.Path == other.BeatmapSet.Path && Metadata.AudioFile == other.Metadata.AudioFile;
2016-10-19 01:35:01 +08:00
}
2016-11-07 21:52:23 +08:00
}