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-10-25 17:48:11 +08:00
|
|
|
|
2018-10-29 13:07:06 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2018-10-25 17:48:11 +08:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2018-11-01 14:38:19 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-10-25 17:48:11 +08:00
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2018-11-07 15:08:56 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders;
|
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components;
|
2018-10-25 17:48:11 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
using osu.Game.Tests.Visual;
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK;
|
2018-10-25 17:48:11 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
|
|
{
|
2019-05-15 03:37:25 +08:00
|
|
|
public class TestSceneSliderSelectionBlueprint : SelectionBlueprintTestScene
|
2018-10-25 17:48:11 +08:00
|
|
|
{
|
2018-10-29 14:36:43 +08:00
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
2018-10-29 13:07:06 +08:00
|
|
|
{
|
2018-11-06 16:56:04 +08:00
|
|
|
typeof(SliderSelectionBlueprint),
|
|
|
|
typeof(SliderCircleSelectionBlueprint),
|
2018-10-29 13:07:06 +08:00
|
|
|
typeof(SliderBodyPiece),
|
|
|
|
typeof(SliderCircle),
|
2018-11-01 02:52:24 +08:00
|
|
|
typeof(PathControlPointVisualiser),
|
|
|
|
typeof(PathControlPointPiece)
|
2018-10-29 13:07:06 +08:00
|
|
|
};
|
|
|
|
|
2018-10-25 17:48:11 +08:00
|
|
|
private readonly DrawableSlider drawableObject;
|
|
|
|
|
2019-05-15 03:37:25 +08:00
|
|
|
public TestSceneSliderSelectionBlueprint()
|
2018-10-25 17:48:11 +08:00
|
|
|
{
|
|
|
|
var slider = new Slider
|
|
|
|
{
|
|
|
|
Position = new Vector2(256, 192),
|
2018-11-01 14:38:19 +08:00
|
|
|
Path = new SliderPath(PathType.Bezier, new[]
|
2018-10-25 17:48:11 +08:00
|
|
|
{
|
|
|
|
Vector2.Zero,
|
|
|
|
new Vector2(150, 150),
|
|
|
|
new Vector2(300, 0)
|
2018-11-01 14:38:19 +08:00
|
|
|
})
|
2018-10-25 17:48:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
slider.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty { CircleSize = 2 });
|
|
|
|
|
|
|
|
Add(drawableObject = new DrawableSlider(slider));
|
|
|
|
}
|
|
|
|
|
2018-11-07 14:04:48 +08:00
|
|
|
protected override SelectionBlueprint CreateBlueprint() => new SliderSelectionBlueprint(drawableObject);
|
2018-10-25 17:48:11 +08:00
|
|
|
}
|
|
|
|
}
|