2020-03-30 22:02:07 +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.
|
|
|
|
|
2020-11-13 21:31:07 +08:00
|
|
|
using NUnit.Framework;
|
2020-03-30 22:02:07 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Tests.Skinning
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A test scene for a mania hitobject.
|
|
|
|
/// </summary>
|
|
|
|
public abstract class ManiaHitObjectTestScene : ManiaSkinnableTestScene
|
|
|
|
{
|
2020-11-13 21:31:07 +08:00
|
|
|
[SetUp]
|
|
|
|
public void SetUp() => Schedule(() =>
|
2020-03-30 22:02:07 +08:00
|
|
|
{
|
2021-06-02 15:04:53 +08:00
|
|
|
SetContents(_ => new FillFlowContainer
|
2020-03-30 22:02:07 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Height = 0.7f,
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2020-08-26 19:00:38 +08:00
|
|
|
new ColumnTestContainer(0, ManiaAction.Key1, true)
|
2020-03-30 22:02:07 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
Width = 80,
|
|
|
|
Child = new ScrollingHitObjectContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
}.With(c =>
|
|
|
|
{
|
2020-04-02 15:36:57 +08:00
|
|
|
c.Add(CreateHitObject().With(h =>
|
|
|
|
{
|
|
|
|
h.HitObject.StartTime = START_TIME;
|
|
|
|
h.AccentColour.Value = Color4.Orange;
|
|
|
|
}));
|
2020-03-30 22:02:07 +08:00
|
|
|
})
|
|
|
|
},
|
2020-08-26 19:00:38 +08:00
|
|
|
new ColumnTestContainer(1, ManiaAction.Key2, true)
|
2020-03-30 22:02:07 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
Width = 80,
|
|
|
|
Child = new ScrollingHitObjectContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
}.With(c =>
|
|
|
|
{
|
2020-04-02 15:36:57 +08:00
|
|
|
c.Add(CreateHitObject().With(h =>
|
|
|
|
{
|
|
|
|
h.HitObject.StartTime = START_TIME;
|
|
|
|
h.AccentColour.Value = Color4.Orange;
|
|
|
|
}));
|
2020-03-30 22:02:07 +08:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
2020-11-13 21:31:07 +08:00
|
|
|
});
|
2020-03-30 22:02:07 +08:00
|
|
|
|
|
|
|
protected abstract DrawableManiaHitObject CreateHitObject();
|
|
|
|
}
|
|
|
|
}
|