2016-12-06 17:56:20 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
2016-11-07 23:12:49 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Beatmaps.Samples;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2016-11-07 23:12:49 +08:00
|
|
|
|
using SQLite.Net.Attributes;
|
|
|
|
|
using SQLiteNetExtensions.Attributes;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
|
{
|
|
|
|
|
public class BeatmapInfo : IEquatable<BeatmapInfo>
|
|
|
|
|
{
|
2016-12-20 23:56:49 +08:00
|
|
|
|
[PrimaryKey, AutoIncrement]
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
2017-01-09 21:05:01 +08:00
|
|
|
|
public int? OnlineBeatmapID { get; set; } = null;
|
2016-10-21 16:01:12 +08:00
|
|
|
|
|
2017-01-09 21:05:01 +08:00
|
|
|
|
public int? OnlineBeatmapSetID { get; set; } = null;
|
2016-11-07 23:12:49 +08:00
|
|
|
|
|
2016-12-20 23:56:49 +08:00
|
|
|
|
[ForeignKey(typeof(BeatmapSetInfo))]
|
|
|
|
|
public int BeatmapSetInfoID { get; set; }
|
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
[ManyToOne]
|
|
|
|
|
public BeatmapSetInfo BeatmapSet { get; set; }
|
|
|
|
|
|
|
|
|
|
[ForeignKey(typeof(BeatmapMetadata))]
|
|
|
|
|
public int BeatmapMetadataID { get; set; }
|
|
|
|
|
|
|
|
|
|
[OneToOne(CascadeOperations = CascadeOperation.All)]
|
2016-10-21 16:01:12 +08:00
|
|
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
[ForeignKey(typeof(BaseDifficulty)), NotNull]
|
|
|
|
|
public int BaseDifficultyID { get; set; }
|
|
|
|
|
|
|
|
|
|
[OneToOne(CascadeOperations = CascadeOperation.All)]
|
|
|
|
|
public BaseDifficulty BaseDifficulty { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
|
|
|
|
// 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; }
|
|
|
|
|
|
|
|
|
|
// 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; }
|
|
|
|
|
|
|
|
|
|
// Metadata
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
|
2017-01-30 14:26:28 +08:00
|
|
|
|
public float StarDifficulty => BaseDifficulty?.OverallDifficulty ?? 5; //todo: implement properly
|
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
public bool Equals(BeatmapInfo other)
|
|
|
|
|
{
|
2016-12-21 14:47:56 +08:00
|
|
|
|
return ID == other?.ID;
|
2016-11-07 21:52:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-07 23:12:49 +08:00
|
|
|
|
public bool AudioEquals(BeatmapInfo other) => other != null &&
|
|
|
|
|
BeatmapSet.Path == other.BeatmapSet.Path &&
|
|
|
|
|
(Metadata ?? BeatmapSet.Metadata).AudioFile == (other.Metadata ?? other.BeatmapSet.Metadata).AudioFile;
|
|
|
|
|
}
|
2016-11-07 21:52:23 +08:00
|
|
|
|
}
|