osu/osu.Game/Database/BeatmapInfo.cs

89 lines
3.0 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
2016-12-06 09:56:20 +00:00
using Newtonsoft.Json;
using osu.Game.IO.Serialization;
2016-11-14 09:03:20 +00:00
using osu.Game.Modes;
2016-11-07 15:12:49 +00:00
using SQLite.Net.Attributes;
using SQLiteNetExtensions.Attributes;
using System;
using System.Linq;
2016-11-07 15:12:49 +00:00
namespace osu.Game.Database
{
public class BeatmapInfo : IEquatable<BeatmapInfo>, IJsonSerializable
2016-11-07 15:12:49 +00:00
{
2016-12-20 15:56:49 +00:00
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
2017-04-06 04:15:33 +00:00
//TODO: should be in database
public int BeatmapVersion;
2017-03-07 01:59:19 +00:00
public int? OnlineBeatmapID { get; set; }
2016-10-21 08:01:12 +00:00
2017-03-07 01:59:19 +00:00
public int? OnlineBeatmapSetID { get; set; }
2016-11-07 15:12:49 +00:00
2016-12-20 15:56:49 +00:00
[ForeignKey(typeof(BeatmapSetInfo))]
public int BeatmapSetInfoID { get; set; }
2016-11-07 15:12:49 +00:00
[ManyToOne]
public BeatmapSetInfo BeatmapSet { get; set; }
[ForeignKey(typeof(BeatmapMetadata))]
public int BeatmapMetadataID { get; set; }
[OneToOne(CascadeOperations = CascadeOperation.All)]
2016-10-21 08:01:12 +00:00
public BeatmapMetadata Metadata { get; set; }
[ForeignKey(typeof(BeatmapDifficulty)), NotNull]
2016-11-07 15:12:49 +00:00
public int BaseDifficultyID { get; set; }
[OneToOne(CascadeOperations = CascadeOperation.All)]
public BeatmapDifficulty Difficulty { get; set; }
2016-11-07 15:12:49 +00:00
public string Path { get; set; }
2017-03-04 10:02:36 +00:00
public string Hash { get; set; }
2016-11-07 15:12:49 +00:00
// General
public int AudioLeadIn { get; set; }
public bool Countdown { 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; }
2016-11-07 15:12:49 +00:00
[Ignore]
[JsonIgnore]
2016-11-07 15:12:49 +00:00
public int[] Bookmarks
{
get { return StoredBookmarks.Split(',').Select(int.Parse).ToArray(); }
set { StoredBookmarks = string.Join(",", value); }
2016-11-07 15:12:49 +00:00
}
2017-03-04 10:02:36 +00:00
2016-11-07 15:12:49 +00:00
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; }
public double StarDifficulty { get; set; }
2016-11-07 15:12:49 +00:00
public bool Equals(BeatmapInfo other)
{
2016-12-21 06:47:56 +00:00
return ID == other?.ID;
2016-11-07 13:52:23 +00:00
}
public bool AudioEquals(BeatmapInfo other) => other != null && BeatmapSet != null && other.BeatmapSet != null &&
BeatmapSet.Path == other.BeatmapSet.Path &&
(Metadata ?? BeatmapSet.Metadata).AudioFile == (other.Metadata ?? other.BeatmapSet.Metadata).AudioFile;
2016-11-07 15:12:49 +00:00
}
2016-11-07 13:52:23 +00:00
}