2018-11-06 15:58:10 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints;
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
|
|
|
using osu.Game.Tests.Visual;
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK;
|
2018-11-06 15:58:10 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Tests
|
|
|
|
{
|
2018-11-13 15:42:40 +08:00
|
|
|
public class TestCaseNoteSelectionBlueprint : ManiaSelectionBlueprintTestCase
|
2018-11-06 15:58:10 +08:00
|
|
|
{
|
|
|
|
private readonly DrawableNote drawableObject;
|
|
|
|
|
|
|
|
protected override Container<Drawable> Content => content ?? base.Content;
|
|
|
|
private readonly Container content;
|
|
|
|
|
|
|
|
public TestCaseNoteSelectionBlueprint()
|
|
|
|
{
|
|
|
|
var note = new Note { Column = 0 };
|
|
|
|
note.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
|
|
|
|
|
|
|
base.Content.Child = content = new ScrollingTestContainer(ScrollingDirection.Down)
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Size = new Vector2(50, 20),
|
|
|
|
Child = drawableObject = new DrawableNote(note)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override SelectionBlueprint CreateBlueprint() => new NoteSelectionBlueprint(drawableObject);
|
|
|
|
}
|
|
|
|
}
|