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
|
|
|
|
2021-07-08 14:42:29 +08:00
|
|
|
using JetBrains.Annotations;
|
2018-10-25 17:48:11 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Timing;
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2021-05-13 18:53:32 +08:00
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-10-25 17:48:11 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
{
|
2020-03-23 09:01:33 +08:00
|
|
|
public abstract class SelectionBlueprintTestScene : OsuManualInputManagerTestScene
|
2018-10-25 17:48:11 +08:00
|
|
|
{
|
|
|
|
protected override Container<Drawable> Content => content ?? base.Content;
|
|
|
|
private readonly Container content;
|
|
|
|
|
2019-05-15 03:37:25 +08:00
|
|
|
protected SelectionBlueprintTestScene()
|
2018-10-25 17:48:11 +08:00
|
|
|
{
|
|
|
|
base.Content.Add(content = new Container
|
|
|
|
{
|
|
|
|
Clock = new FramedClock(new StopwatchClock()),
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-07-08 14:42:29 +08:00
|
|
|
protected void AddBlueprint(HitObjectSelectionBlueprint blueprint, [CanBeNull] DrawableHitObject drawableObject = null)
|
2018-10-25 17:48:11 +08:00
|
|
|
{
|
2019-10-01 18:32:47 +08:00
|
|
|
Add(blueprint.With(d =>
|
|
|
|
{
|
2021-05-18 13:26:26 +08:00
|
|
|
d.DrawableObject = drawableObject;
|
2019-10-01 18:32:47 +08:00
|
|
|
d.Depth = float.MinValue;
|
|
|
|
d.Select();
|
|
|
|
}));
|
2018-10-25 17:48:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|