2019-01-24 16:43:03 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using System.Collections.Generic ;
using System.Linq ;
using osu.Game.Beatmaps ;
using osu.Game.Rulesets.Mania.Objects ;
using osu.Game.Rulesets.Mania.UI ;
namespace osu.Game.Rulesets.Mania.Beatmaps
{
public class ManiaBeatmap : Beatmap < ManiaHitObject >
{
/// <summary>
/// The definitions for each stage in a <see cref="ManiaPlayfield"/>.
/// </summary>
public List < StageDefinition > Stages = new List < StageDefinition > ( ) ;
/// <summary>
/// Total number of columns represented by all stages in this <see cref="ManiaBeatmap"/>.
/// </summary>
public int TotalColumns = > Stages . Sum ( g = > g . Columns ) ;
2020-10-14 16:53:28 +08:00
/// <summary>
/// The total number of columns that were present in this <see cref="ManiaBeatmap"/> before any user adjustments.
/// </summary>
public readonly int OriginalTotalColumns ;
2018-04-13 17:19:50 +08:00
/// <summary>
/// Creates a new <see cref="ManiaBeatmap"/>.
/// </summary>
/// <param name="defaultStage">The initial stages.</param>
2020-10-14 16:53:28 +08:00
/// <param name="originalTotalColumns">The total number of columns present before any user adjustments. Defaults to the total columns in <paramref name="defaultStage"/>.</param>
public ManiaBeatmap ( StageDefinition defaultStage , int? originalTotalColumns = null )
2018-04-13 17:19:50 +08:00
{
Stages . Add ( defaultStage ) ;
2020-10-14 16:53:28 +08:00
OriginalTotalColumns = originalTotalColumns ? ? defaultStage . Columns ;
2018-04-13 17:19:50 +08:00
}
2018-05-07 09:58:56 +08:00
public override IEnumerable < BeatmapStatistic > GetStatistics ( )
{
2018-05-07 10:33:05 +08:00
int notes = HitObjects . Count ( s = > s is Note ) ;
2018-05-07 09:58:56 +08:00
int holdnotes = HitObjects . Count ( s = > s is HoldNote ) ;
return new [ ]
{
new BeatmapStatistic
{
Name = @"Note Count" ,
2020-09-04 14:01:32 +08:00
CreateIcon = ( ) = > new BeatmapStatisticIcon ( BeatmapStatisticsIconType . Circles ) ,
2018-05-07 09:58:56 +08:00
Content = notes . ToString ( ) ,
} ,
new BeatmapStatistic
{
Name = @"Hold Note Count" ,
2020-09-04 14:01:32 +08:00
CreateIcon = ( ) = > new BeatmapStatisticIcon ( BeatmapStatisticsIconType . Sliders ) ,
2018-05-07 09:58:56 +08:00
Content = holdnotes . ToString ( ) ,
} ,
} ;
}
2018-04-13 17:19:50 +08:00
}
}