mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 03:22:55 +08:00
69 lines
2.3 KiB
C#
69 lines
2.3 KiB
C#
//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.Collections.Generic;
|
|
using System.Linq;
|
|
using OpenTK.Graphics;
|
|
using osu.Game.Beatmaps.Objects;
|
|
using osu.Game.Beatmaps.Samples;
|
|
using osu.Game.Beatmaps.Timing;
|
|
using osu.Game.GameModes.Play;
|
|
using osu.Game.Users;
|
|
using SQLite;
|
|
|
|
namespace osu.Game.Beatmaps
|
|
{
|
|
public class Beatmap
|
|
{
|
|
[PrimaryKey]
|
|
public int BeatmapID { get; set; }
|
|
[NotNull, Indexed]
|
|
public int BeatmapSetID { get; set; }
|
|
[Indexed]
|
|
public int BeatmapMetadataID { get; set; }
|
|
public int BaseDifficultyID { get; set; }
|
|
[Ignore]
|
|
public List<HitObject> HitObjects { get; set; }
|
|
[Ignore]
|
|
public List<ControlPoint> ControlPoints { get; set; }
|
|
[Ignore]
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
[Ignore]
|
|
public BaseDifficulty BaseDifficulty { get; set; }
|
|
[Ignore]
|
|
public List<Color4> ComboColors { 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; }
|
|
}
|
|
} |