1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00
osu-lazer/osu.Game.Rulesets.Mania/UI/ManiaPlayfield.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

160 lines
5.4 KiB
C#
Raw Normal View History

// 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
2022-06-17 15:37:17 +08:00
#nullable disable
2018-05-20 18:22:42 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2017-05-03 11:37:47 +08:00
using System;
using System.Collections.Generic;
2018-11-15 20:37:22 +08:00
using System.Linq;
2020-04-13 12:42:21 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics.Primitives;
2018-01-03 21:58:08 +08:00
using osu.Game.Rulesets.Mania.Beatmaps;
2018-05-20 18:22:42 +08:00
using osu.Game.Rulesets.Mania.Objects;
using osu.Game.Rulesets.Objects;
2018-05-20 18:22:42 +08:00
using osu.Game.Rulesets.Objects.Drawables;
2018-11-06 14:46:36 +08:00
using osu.Game.Rulesets.UI.Scrolling;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Mania.UI
{
2020-04-13 12:42:21 +08:00
[Cached]
2018-11-06 14:46:36 +08:00
public partial class ManiaPlayfield : ScrollingPlayfield
{
public IReadOnlyList<Stage> Stages => stages;
2020-04-08 13:08:34 +08:00
private readonly List<Stage> stages = new List<Stage>();
2018-04-13 17:19:50 +08:00
public override Quad SkinnableComponentScreenSpaceDrawQuad
{
get
{
RectangleF totalArea = RectangleF.Empty;
for (int i = 0; i < Stages.Count; ++i)
{
var stageArea = Stages[i].ScreenSpaceDrawQuad.AABBFloat;
totalArea = i == 0 ? stageArea : RectangleF.Union(totalArea, stageArea);
}
return totalArea;
}
}
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => stages.Any(s => s.ReceivePositionalInputAt(screenSpacePos));
public ManiaPlayfield(List<StageDefinition> stageDefinitions)
{
ArgumentNullException.ThrowIfNull(stageDefinitions);
2018-04-13 17:19:50 +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.");
2018-04-13 17:19:50 +08:00
GridContainer playfieldGrid;
AddInternal(playfieldGrid = new GridContainer
2017-05-03 11:37:47 +08:00
{
RelativeSizeAxes = Axes.Both,
Content = new[] { new Drawable[stageDefinitions.Count] }
});
2018-04-13 17:19:50 +08:00
var normalColumnAction = ManiaAction.Key1;
var specialColumnAction = ManiaAction.Special1;
2018-01-15 17:11:53 +08:00
int firstColumnIndex = 0;
2019-04-01 11:16:05 +08:00
2018-01-15 17:20:43 +08:00
for (int i = 0; i < stageDefinitions.Count; i++)
{
2020-04-08 13:08:34 +08:00
var newStage = new Stage(firstColumnIndex, stageDefinitions[i], ref normalColumnAction, ref specialColumnAction);
2018-04-13 17:19:50 +08:00
playfieldGrid.Content[0][i] = newStage;
2018-04-13 17:19:50 +08:00
2018-01-15 17:11:53 +08:00
stages.Add(newStage);
AddNested(newStage);
2018-04-13 17:19:50 +08:00
2018-01-15 17:11:53 +08:00
firstColumnIndex += newStage.Columns.Count;
}
}
2018-04-13 17:19:50 +08:00
public override void Add(HitObject hitObject) => getStageByColumn(((ManiaHitObject)hitObject).Column).Add(hitObject);
public override bool Remove(HitObject hitObject) => getStageByColumn(((ManiaHitObject)hitObject).Column).Remove(hitObject);
2018-07-19 16:04:51 +08:00
public override void Add(DrawableHitObject h) => getStageByColumn(((ManiaHitObject)h.HitObject).Column).Add(h);
2018-04-13 17:19:50 +08:00
public override bool Remove(DrawableHitObject h) => getStageByColumn(((ManiaHitObject)h.HitObject).Column).Remove(h);
2018-11-20 16:26:00 +08:00
public void Add(BarLine barLine) => stages.ForEach(s => s.Add(barLine));
2018-04-13 17:19:50 +08:00
2018-11-12 17:24:18 +08:00
/// <summary>
/// Retrieves a column from a screen-space position.
/// </summary>
/// <param name="screenSpacePosition">The screen-space position.</param>
/// <returns>The column which the <paramref name="screenSpacePosition"/> lies in.</returns>
public Column GetColumnByPosition(Vector2 screenSpacePosition)
{
Column found = null;
foreach (var stage in stages)
{
foreach (var column in stage.Columns)
{
2020-04-28 17:34:55 +08:00
if (column.ReceivePositionalInputAt(new Vector2(screenSpacePosition.X, column.ScreenSpaceDrawQuad.Centre.Y)))
2018-11-12 17:24:18 +08:00
{
found = column;
break;
}
}
if (found != null)
break;
}
return found;
}
2020-04-28 17:55:58 +08:00
/// <summary>
/// Retrieves a <see cref="Column"/> by index.
/// </summary>
/// <param name="index">The index of the column.</param>
/// <returns>The <see cref="Column"/> corresponding to the given index.</returns>
/// <exception cref="ArgumentOutOfRangeException">If <paramref name="index"/> is less than 0 or greater than <see cref="TotalColumns"/>.</exception>
public Column GetColumn(int index)
{
2020-04-28 17:55:58 +08:00
if (index < 0 || index > TotalColumns - 1)
throw new ArgumentOutOfRangeException(nameof(index));
foreach (var stage in stages)
{
if (index >= stage.Columns.Count)
{
index -= stage.Columns.Count;
continue;
}
return stage.Columns[index];
}
throw new ArgumentOutOfRangeException(nameof(index));
}
2018-11-15 20:37:22 +08:00
/// <summary>
/// Retrieves the total amount of columns across all stages in this playfield.
/// </summary>
public int TotalColumns => stages.Sum(s => s.Columns.Count);
2020-04-08 13:08:34 +08:00
private Stage getStageByColumn(int column)
{
int sum = 0;
2019-04-01 11:16:05 +08:00
foreach (var stage in stages)
{
2019-11-12 17:56:38 +08:00
sum += stage.Columns.Count;
if (sum > column)
return stage;
}
2018-04-13 17:19:50 +08:00
return null;
2017-05-03 11:37:47 +08:00
}
}
2017-05-03 12:03:46 +08:00
}