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-06-07 19:24:33 +08:00
|
|
|
|
|
2018-06-07 19:49:06 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-06-07 19:24:33 +08:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Allocation;
|
2018-06-07 19:49:06 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-06-08 14:16:14 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
2018-06-07 19:24:33 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
2018-06-07 19:49:06 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.UI.Components;
|
2019-04-10 16:54:57 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-06-07 19:49:06 +08:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2018-11-06 14:46:36 +08:00
|
|
|
|
using osu.Game.Tests.Visual;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-06-07 19:24:33 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Tests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public class TestSceneColumn : ManiaInputTestScene
|
2018-06-07 19:24:33 +08:00
|
|
|
|
{
|
2018-06-07 19:49:06 +08:00
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(Column),
|
2018-06-07 20:13:57 +08:00
|
|
|
|
typeof(ColumnBackground),
|
2018-06-07 20:40:12 +08:00
|
|
|
|
typeof(ColumnKeyArea),
|
|
|
|
|
typeof(ColumnHitObjectArea)
|
2018-06-07 19:49:06 +08:00
|
|
|
|
};
|
|
|
|
|
|
2019-04-10 16:54:57 +08:00
|
|
|
|
[Cached(typeof(IReadOnlyList<Mod>))]
|
|
|
|
|
private IReadOnlyList<Mod> mods { get; set; } = Array.Empty<Mod>();
|
|
|
|
|
|
2018-06-08 14:16:14 +08:00
|
|
|
|
private readonly List<Column> columns = new List<Column>();
|
|
|
|
|
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public TestSceneColumn()
|
2018-06-07 19:49:06 +08:00
|
|
|
|
: base(2)
|
2018-06-07 19:24:33 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2018-06-07 19:49:06 +08:00
|
|
|
|
Child = new FillFlowContainer
|
2018-06-07 19:24:33 +08:00
|
|
|
|
{
|
2018-06-07 19:49:06 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2018-06-07 19:24:33 +08:00
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
2018-06-07 19:49:06 +08:00
|
|
|
|
Spacing = new Vector2(20, 0),
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
2018-11-12 17:24:18 +08:00
|
|
|
|
createColumn(ScrollingDirection.Up, ManiaAction.Key1, 0),
|
|
|
|
|
createColumn(ScrollingDirection.Down, ManiaAction.Key2, 1)
|
2018-06-07 19:49:06 +08:00
|
|
|
|
}
|
2018-06-07 19:24:33 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2018-06-07 19:49:06 +08:00
|
|
|
|
|
2018-06-08 14:16:14 +08:00
|
|
|
|
protected override void LoadComplete()
|
2018-06-07 19:49:06 +08:00
|
|
|
|
{
|
2018-06-08 14:16:14 +08:00
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
AddStep("note", createNote);
|
2018-06-08 14:28:57 +08:00
|
|
|
|
AddStep("hold note", createHoldNote);
|
2018-06-08 14:16:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void createNote()
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < columns.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
var obj = new Note { Column = i, StartTime = Time.Current + 2000 };
|
|
|
|
|
obj.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
|
|
|
|
|
2018-07-02 11:31:41 +08:00
|
|
|
|
columns[i].Add(new DrawableNote(obj));
|
2018-06-08 14:16:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-08 14:28:57 +08:00
|
|
|
|
private void createHoldNote()
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < columns.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
var obj = new HoldNote { Column = i, StartTime = Time.Current + 2000, Duration = 500 };
|
|
|
|
|
obj.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
|
|
|
|
|
2018-07-02 11:31:41 +08:00
|
|
|
|
columns[i].Add(new DrawableHoldNote(obj));
|
2018-06-08 14:28:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-12 17:24:18 +08:00
|
|
|
|
private Drawable createColumn(ScrollingDirection direction, ManiaAction action, int index)
|
2018-06-08 14:16:14 +08:00
|
|
|
|
{
|
2018-11-12 17:24:18 +08:00
|
|
|
|
var column = new Column(index)
|
2018-06-08 14:16:14 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Height = 0.85f,
|
|
|
|
|
AccentColour = Color4.OrangeRed,
|
2018-07-02 11:31:41 +08:00
|
|
|
|
Action = { Value = action },
|
2018-06-08 14:16:14 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
columns.Add(column);
|
2018-06-08 19:13:24 +08:00
|
|
|
|
|
2018-06-08 20:41:20 +08:00
|
|
|
|
return new ScrollingTestContainer(direction)
|
2018-06-08 19:13:24 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
AutoSizeAxes = Axes.X,
|
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
2018-11-07 16:24:05 +08:00
|
|
|
|
TimeRange = 2000,
|
2018-06-08 19:13:24 +08:00
|
|
|
|
Child = column
|
|
|
|
|
};
|
2018-06-08 14:16:14 +08:00
|
|
|
|
}
|
2018-06-07 19:24:33 +08:00
|
|
|
|
}
|
|
|
|
|
}
|