2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
2017-05-03 11:37:47 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using System;
|
2017-05-03 18:38:15 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-12-28 22:15:12 +08:00
|
|
|
|
using System.Linq;
|
2017-08-23 19:50:03 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
2018-01-03 21:58:08 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
2017-12-28 22:15:12 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-01-04 18:22:15 +08:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2017-09-12 17:19:28 +08:00
|
|
|
|
public class ManiaPlayfield : ScrollingPlayfield
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2017-08-23 19:50:03 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether this playfield should be inverted. This flips everything inside the playfield.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public readonly Bindable<bool> Inverted = new Bindable<bool>(true);
|
|
|
|
|
|
2017-12-28 22:40:02 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The style to use for the special column.
|
|
|
|
|
/// </summary>
|
2018-01-14 20:20:01 +08:00
|
|
|
|
public Bindable<SpecialColumnPosition> SpecialColumnPosition = new Bindable<SpecialColumnPosition>();
|
2017-12-28 22:40:02 +08:00
|
|
|
|
|
2018-01-14 10:49:23 +08:00
|
|
|
|
public List<Column> Columns => stages.SelectMany(x => x.Columns).ToList();
|
2018-01-15 18:55:15 +08:00
|
|
|
|
private readonly List<ManiaStage> stages = new List<ManiaStage>();
|
2017-09-11 16:53:27 +08:00
|
|
|
|
|
2018-01-15 17:20:43 +08:00
|
|
|
|
public ManiaPlayfield(List<StageDefinition> stageDefinitions)
|
2018-01-04 21:05:20 +08:00
|
|
|
|
: base(ScrollingDirection.Up)
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2018-01-15 17:20:43 +08:00
|
|
|
|
if (stageDefinitions == null)
|
|
|
|
|
throw new ArgumentNullException(nameof(stageDefinitions));
|
2018-01-14 10:49:23 +08:00
|
|
|
|
|
2018-01-15 17:20:43 +08:00
|
|
|
|
if (stageDefinitions.Count <= 0)
|
2018-01-15 17:11:53 +08:00
|
|
|
|
throw new ArgumentException("Can't have zero or fewer stages.");
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2017-08-23 19:50:03 +08:00
|
|
|
|
Inverted.Value = true;
|
|
|
|
|
|
2018-01-15 18:55:15 +08:00
|
|
|
|
GridContainer playfieldGrid;
|
|
|
|
|
InternalChild = playfieldGrid = new GridContainer
|
2017-05-03 11:37:47 +08:00
|
|
|
|
{
|
2018-01-15 18:55:15 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Content = new[] { new Drawable[stageDefinitions.Count] }
|
2017-05-03 11:37:47 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-01-15 17:11:53 +08:00
|
|
|
|
int firstColumnIndex = 0;
|
2018-01-15 17:20:43 +08:00
|
|
|
|
for (int i = 0; i < stageDefinitions.Count; i++)
|
2017-12-28 21:40:23 +08:00
|
|
|
|
{
|
2018-01-15 17:20:43 +08:00
|
|
|
|
var newStage = new ManiaStage(i, firstColumnIndex, stageDefinitions[i]);
|
2018-01-15 17:11:53 +08:00
|
|
|
|
newStage.SpecialColumn.BindTo(SpecialColumnPosition);
|
|
|
|
|
newStage.VisibleTimeRange.BindTo(VisibleTimeRange);
|
|
|
|
|
newStage.Inverted.BindTo(Inverted);
|
2017-12-28 21:40:23 +08:00
|
|
|
|
|
2018-01-15 18:55:15 +08:00
|
|
|
|
playfieldGrid.Content[0][i] = newStage;
|
|
|
|
|
|
2018-01-15 17:11:53 +08:00
|
|
|
|
stages.Add(newStage);
|
|
|
|
|
AddNested(newStage);
|
2018-01-14 11:08:09 +08:00
|
|
|
|
|
2018-01-15 17:11:53 +08:00
|
|
|
|
firstColumnIndex += newStage.Columns.Count;
|
2017-08-07 13:56:26 +08:00
|
|
|
|
}
|
2017-05-03 18:38:15 +08:00
|
|
|
|
}
|
2017-05-03 11:37:47 +08:00
|
|
|
|
|
2018-01-15 17:20:43 +08:00
|
|
|
|
public override void Add(DrawableHitObject h) => getStageByColumn(((ManiaHitObject)h.HitObject).Column).Add(h);
|
2017-09-11 11:57:10 +08:00
|
|
|
|
|
2018-01-15 17:20:43 +08:00
|
|
|
|
public void Add(BarLine barline) => stages.ForEach(s => s.Add(barline));
|
2017-09-12 17:19:28 +08:00
|
|
|
|
|
2018-01-14 10:49:23 +08:00
|
|
|
|
private ManiaStage getStageByColumn(int column)
|
2017-05-29 13:44:42 +08:00
|
|
|
|
{
|
2017-12-28 21:40:23 +08:00
|
|
|
|
int sum = 0;
|
2018-01-14 10:49:23 +08:00
|
|
|
|
foreach (var stage in stages)
|
2017-12-28 21:40:23 +08:00
|
|
|
|
{
|
2018-01-15 17:11:53 +08:00
|
|
|
|
sum = sum + stage.Columns.Count;
|
2018-01-14 10:49:23 +08:00
|
|
|
|
if (sum > column)
|
|
|
|
|
return stage;
|
2017-12-28 21:40:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
2017-05-29 13:44:42 +08:00
|
|
|
|
}
|
2016-09-02 19:30:27 +08:00
|
|
|
|
}
|
2017-05-03 12:03:46 +08:00
|
|
|
|
}
|