// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using OpenTK.Graphics; using osu.Game.Beatmaps.Timing; using osu.Game.Rulesets.Objects; using System.Collections.Generic; using System.Linq; using osu.Game.Beatmaps.ControlPoints; using osu.Game.IO.Serialization; using osu.Game.Storyboards; namespace osu.Game.Beatmaps { /// /// A Beatmap containing converted HitObjects. /// public class Beatmap where T : HitObject { public BeatmapInfo BeatmapInfo = new BeatmapInfo(); public ControlPointInfo ControlPointInfo = new ControlPointInfo(); public List Breaks = new List(); public readonly List ComboColors = new List { new Color4(17, 136, 170, 255), new Color4(102, 136, 0, 255), new Color4(204, 102, 0, 255), new Color4(121, 9, 13, 255) }; public BeatmapMetadata Metadata => BeatmapInfo?.Metadata ?? BeatmapInfo?.BeatmapSet?.Metadata; /// /// The HitObjects this Beatmap contains. /// public List HitObjects = new List(); /// /// Total amount of break time in the beatmap. /// public double TotalBreakTime => Breaks.Sum(b => b.Duration); /// /// The Beatmap's Storyboard. /// public Storyboard Storyboard = new Storyboard(); /// /// Constructs a new beatmap. /// /// The original beatmap to use the parameters of. public Beatmap(Beatmap original = null) { BeatmapInfo = original?.BeatmapInfo.DeepClone() ?? BeatmapInfo; ControlPointInfo = original?.ControlPointInfo ?? ControlPointInfo; Breaks = original?.Breaks ?? Breaks; ComboColors = original?.ComboColors ?? ComboColors; HitObjects = original?.HitObjects ?? HitObjects; Storyboard = original?.Storyboard ?? Storyboard; if (original == null && Metadata == null) { // we may have no metadata in cases we weren't sourced from the database. // let's fill it (and other related fields) so we don't need to null-check it in future usages. BeatmapInfo = new BeatmapInfo { Metadata = new BeatmapMetadata { Artist = @"Unknown", Title = @"Unknown", AuthorString = @"Unknown Creator", }, Version = @"Normal", Difficulty = new BeatmapDifficulty() }; } } } /// /// A Beatmap containing un-converted HitObjects. /// public class Beatmap : Beatmap { /// /// Constructs a new beatmap. /// /// The original beatmap to use the parameters of. public Beatmap(Beatmap original = null) : base(original) { } } }