1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneSliderApplication.cs

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

138 lines
4.7 KiB
C#
Raw Normal View History

2020-11-06 22:56:02 +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.
2022-06-17 15:37:17 +08:00
#nullable disable
2020-11-16 21:40:25 +08:00
using System.Linq;
2020-11-06 22:56:02 +08:00
using NUnit.Framework;
2020-11-16 21:40:25 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Testing;
2020-11-06 22:56:02 +08:00
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
2022-10-20 08:32:33 +08:00
using osu.Game.Rulesets.Osu.Skinning.Legacy;
2020-11-16 21:40:25 +08:00
using osu.Game.Skinning;
2020-11-06 22:56:02 +08:00
using osu.Game.Tests.Visual;
using osuTK;
2020-11-16 21:40:25 +08:00
using osuTK.Graphics;
2020-11-06 22:56:02 +08:00
namespace osu.Game.Rulesets.Osu.Tests
{
public partial class TestSceneSliderApplication : OsuTestScene
{
2020-11-16 21:40:25 +08:00
[Resolved]
private SkinManager skinManager { get; set; }
2020-11-06 22:56:02 +08:00
[Test]
public void TestApplyNewSlider()
{
DrawableSlider dho = null;
2024-01-22 07:07:09 +08:00
AddStep("create slider", () => Child = dho = new DrawableSlider(applyDefaults(new Slider
2020-11-06 22:56:02 +08:00
{
Position = new Vector2(256, 192),
IndexInCurrentCombo = 0,
2020-11-06 23:40:41 +08:00
StartTime = Time.Current,
Path = new SliderPath(PathType.LINEAR, new[]
2020-11-06 22:56:02 +08:00
{
Vector2.Zero,
new Vector2(150, 100),
new Vector2(300, 0),
})
2020-11-06 23:40:41 +08:00
})));
2020-11-06 22:56:02 +08:00
AddWaitStep("wait for progression", 1);
2024-01-22 07:07:09 +08:00
AddStep("apply new slider", () => dho.Apply(applyDefaults(new Slider
2020-11-06 22:56:02 +08:00
{
Position = new Vector2(256, 192),
ComboIndex = 1,
2020-11-06 23:40:41 +08:00
StartTime = dho.HitObject.StartTime,
Path = new SliderPath(PathType.BEZIER, new[]
2020-11-06 22:56:02 +08:00
{
Vector2.Zero,
new Vector2(150, 100),
new Vector2(300, 0),
}),
RepeatCount = 1
2021-04-21 13:32:37 +08:00
})));
2020-11-06 22:56:02 +08:00
}
2020-11-16 21:40:25 +08:00
[Test]
public void TestBallTintChangedOnAccentChange()
{
DrawableSlider dho = null;
AddStep("create slider", () =>
{
2022-10-20 08:32:33 +08:00
var skin = skinManager.GetSkin(DefaultLegacySkin.CreateInfo());
var provider = Ruleset.Value.CreateInstance().CreateSkinTransformer(skin, Beatmap.Value.Beatmap);
Child = new SkinProvidingContainer(provider)
2020-11-16 21:40:25 +08:00
{
RelativeSizeAxes = Axes.Both,
2024-01-22 07:07:09 +08:00
Child = dho = new DrawableSlider(applyDefaults(new Slider
2020-11-16 21:40:25 +08:00
{
Position = new Vector2(256, 192),
IndexInCurrentCombo = 0,
StartTime = Time.Current,
Path = new SliderPath(PathType.LINEAR, new[]
2020-11-16 21:40:25 +08:00
{
Vector2.Zero,
new Vector2(150, 100),
new Vector2(300, 0),
})
}))
};
});
AddStep("set accent white", () => dho.AccentColour.Value = Color4.White);
2022-10-20 08:32:33 +08:00
AddAssert("ball is white", () => dho.ChildrenOfType<LegacySliderBall>().Single().BallColour == Color4.White);
2020-11-16 21:40:25 +08:00
AddStep("set accent red", () => dho.AccentColour.Value = Color4.Red);
2022-10-20 08:32:33 +08:00
AddAssert("ball is red", () => dho.ChildrenOfType<LegacySliderBall>().Single().BallColour == Color4.Red);
2020-11-16 21:40:25 +08:00
}
2024-01-22 07:07:09 +08:00
[Test]
public void TestIncreaseRepeatCount()
{
DrawableSlider dho = null;
AddStep("create slider", () =>
{
Child = dho = new DrawableSlider(applyDefaults(new Slider
{
Position = new Vector2(256, 192),
IndexInCurrentCombo = 0,
StartTime = Time.Current,
Path = new SliderPath(PathType.LINEAR, new[]
{
Vector2.Zero,
new Vector2(150, 100),
new Vector2(300, 0),
})
}));
});
AddStep("increase repeat count", () =>
{
dho.HitObject.RepeatCount++;
applyDefaults(dho.HitObject);
});
AddAssert("repeat got custom anchor", () =>
dho.ChildrenOfType<DrawableSliderRepeat>().Single().RelativeAnchorPosition == Vector2.Divide(dho.SliderBody!.PathOffset, dho.DrawSize));
}
private Slider applyDefaults(Slider slider)
2020-11-06 22:56:02 +08:00
{
slider.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
return slider;
}
}
}