1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00
osu-lazer/osu.Game.Rulesets.Catch.Tests/TestSceneCatcherArea.cs

62 lines
1.8 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
using System;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Catch.UI;
using osu.Game.Tests.Visual;
namespace osu.Game.Rulesets.Catch.Tests
{
[TestFixture]
public class TestSceneCatcherArea : OsuTestScene
2018-04-13 17:19:50 +08:00
{
private RulesetInfo catchRuleset;
2018-06-03 14:31:51 +08:00
private TestCatcherArea catcherArea;
2018-04-13 17:19:50 +08:00
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(CatcherArea),
};
public TestSceneCatcherArea()
2018-04-13 17:19:50 +08:00
{
AddSliderStep<float>("CircleSize", 0, 8, 5, createCatcher);
2018-06-03 14:31:51 +08:00
AddToggleStep("Hyperdash", t => catcherArea.ToggleHyperDash(t));
2018-04-13 17:19:50 +08:00
}
private void createCatcher(float size)
{
Child = new CatchInputManager(catchRuleset)
{
RelativeSizeAxes = Axes.Both,
2018-06-03 14:31:51 +08:00
Child = catcherArea = new TestCatcherArea(new BeatmapDifficulty { CircleSize = size })
2018-04-13 17:19:50 +08:00
{
Anchor = Anchor.CentreLeft,
2018-06-03 14:42:27 +08:00
Origin = Anchor.TopLeft
2018-04-13 17:19:50 +08:00
},
};
}
[BackgroundDependencyLoader]
private void load(RulesetStore rulesets)
{
catchRuleset = rulesets.GetRuleset(2);
}
private class TestCatcherArea : CatcherArea
{
public TestCatcherArea(BeatmapDifficulty beatmapDifficulty)
: base(beatmapDifficulty)
{
}
2018-06-03 14:31:51 +08:00
public void ToggleHyperDash(bool status) => MovableCatcher.SetHyperDashState(status ? 2 : 1);
2018-04-13 17:19:50 +08:00
}
}
}