// 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.Database; using osu.Game.Rulesets.Objects; using System.Collections.Generic; using System.Linq; namespace osu.Game.Beatmaps { /// /// A Beatmap containing converted HitObjects. /// public class Beatmap where T : HitObject { public BeatmapInfo BeatmapInfo; public TimingInfo TimingInfo = new TimingInfo(); 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; /// /// Total amount of break time in the beatmap. /// public double TotalBreakTime => Breaks.Sum(b => b.Duration); /// /// Constructs a new beatmap. /// /// The original beatmap to use the parameters of. public Beatmap(Beatmap original = null) { BeatmapInfo = original?.BeatmapInfo ?? BeatmapInfo; TimingInfo = original?.TimingInfo ?? TimingInfo; Breaks = original?.Breaks ?? Breaks; ComboColors = original?.ComboColors ?? ComboColors; } } /// /// 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) { HitObjects = original?.HitObjects; } } }