mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
5b5e883904
And use orthogonal `OriginalXBindable` and `XOffsetBindable`.
114 lines
3.8 KiB
C#
114 lines
3.8 KiB
C#
// 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.
|
|
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Rulesets.Catch.Judgements;
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
using osu.Game.Rulesets.Catch.Objects.Drawables;
|
|
using osu.Game.Rulesets.Catch.UI;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Tests
|
|
{
|
|
[TestFixture]
|
|
public class TestSceneCatcherArea : CatchSkinnableTestScene
|
|
{
|
|
private RulesetInfo catchRuleset;
|
|
|
|
[Resolved]
|
|
private OsuConfigManager config { get; set; }
|
|
|
|
private Catcher catcher => this.ChildrenOfType<Catcher>().First();
|
|
|
|
private float circleSize;
|
|
|
|
public TestSceneCatcherArea()
|
|
{
|
|
AddSliderStep<float>("circle size", 0, 8, 5, createCatcher);
|
|
AddToggleStep("hyper dash", t => this.ChildrenOfType<TestCatcherArea>().ForEach(area => area.ToggleHyperDash(t)));
|
|
|
|
AddStep("catch fruit", () => attemptCatch(new Fruit()));
|
|
AddStep("catch fruit last in combo", () => attemptCatch(new Fruit { LastInCombo = true }));
|
|
AddStep("catch kiai fruit", () => attemptCatch(new TestSceneCatcher.TestKiaiFruit()));
|
|
AddStep("miss last in combo", () => attemptCatch(new Fruit { X = 100, LastInCombo = true }));
|
|
}
|
|
|
|
private void attemptCatch(Fruit fruit)
|
|
{
|
|
fruit.X = fruit.OriginalX + catcher.X;
|
|
fruit.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty
|
|
{
|
|
CircleSize = circleSize
|
|
});
|
|
|
|
foreach (var area in this.ChildrenOfType<CatcherArea>())
|
|
{
|
|
DrawableFruit drawable = new DrawableFruit(fruit);
|
|
area.Add(drawable);
|
|
|
|
Schedule(() =>
|
|
{
|
|
area.OnNewResult(drawable, new CatchJudgementResult(fruit, new CatchJudgement())
|
|
{
|
|
Type = area.MovableCatcher.CanCatch(fruit) ? HitResult.Great : HitResult.Miss
|
|
});
|
|
|
|
drawable.Expire();
|
|
});
|
|
}
|
|
}
|
|
|
|
private void createCatcher(float size)
|
|
{
|
|
circleSize = size;
|
|
|
|
SetContents(() =>
|
|
{
|
|
var droppedObjectContainer = new Container<CaughtObject>
|
|
{
|
|
RelativeSizeAxes = Axes.Both
|
|
};
|
|
|
|
return new CatchInputManager(catchRuleset)
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Children = new Drawable[]
|
|
{
|
|
droppedObjectContainer,
|
|
new TestCatcherArea(droppedObjectContainer, new BeatmapDifficulty { CircleSize = size })
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.TopCentre,
|
|
}
|
|
}
|
|
};
|
|
});
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(RulesetStore rulesets)
|
|
{
|
|
catchRuleset = rulesets.GetRuleset(2);
|
|
}
|
|
|
|
private class TestCatcherArea : CatcherArea
|
|
{
|
|
public TestCatcherArea(Container<CaughtObject> droppedObjectContainer, BeatmapDifficulty beatmapDifficulty)
|
|
: base(droppedObjectContainer, beatmapDifficulty)
|
|
{
|
|
}
|
|
|
|
public void ToggleHyperDash(bool status) => MovableCatcher.SetHyperDashState(status ? 2 : 1);
|
|
}
|
|
}
|
|
}
|