2018-04-13 17:19:50 +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 System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Timing;
|
|
|
|
using OpenTK;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
using osu.Game.Rulesets.Osu;
|
|
|
|
using osu.Game.Rulesets.Osu.Edit;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
using osu.Game.Screens.Edit.Screens.Compose.Layers;
|
|
|
|
using osu.Game.Tests.Beatmaps;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
{
|
|
|
|
[TestFixture]
|
|
|
|
public class TestCaseHitObjectComposer : OsuTestCase
|
|
|
|
{
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
{
|
|
|
|
typeof(MaskSelection),
|
|
|
|
typeof(DragLayer),
|
|
|
|
typeof(HitObjectComposer),
|
|
|
|
typeof(OsuHitObjectComposer),
|
|
|
|
typeof(HitObjectMaskLayer),
|
|
|
|
typeof(NotNullAttribute)
|
|
|
|
};
|
|
|
|
|
|
|
|
private DependencyContainer dependencies;
|
|
|
|
|
|
|
|
protected override IReadOnlyDependencyContainer CreateLocalDependencies(IReadOnlyDependencyContainer parent)
|
|
|
|
=> dependencies = new DependencyContainer(parent);
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuGameBase osuGame)
|
|
|
|
{
|
|
|
|
osuGame.Beatmap.Value = new TestWorkingBeatmap(new Beatmap
|
|
|
|
{
|
|
|
|
HitObjects = new List<HitObject>
|
|
|
|
{
|
|
|
|
new HitCircle { Position = new Vector2(256, 192), Scale = 0.5f },
|
|
|
|
new HitCircle { Position = new Vector2(344, 148), Scale = 0.5f },
|
|
|
|
new Slider
|
|
|
|
{
|
|
|
|
Position = new Vector2(128, 256),
|
|
|
|
ControlPoints = new List<Vector2>
|
|
|
|
{
|
|
|
|
Vector2.Zero,
|
|
|
|
new Vector2(216, 0),
|
|
|
|
},
|
|
|
|
Distance = 400,
|
|
|
|
Velocity = 1,
|
|
|
|
TickDistance = 100,
|
|
|
|
Scale = 0.5f,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
var clock = new DecoupleableInterpolatingFramedClock { IsCoupled = false };
|
|
|
|
dependencies.CacheAs<IAdjustableClock>(clock);
|
|
|
|
dependencies.CacheAs<IFrameBasedClock>(clock);
|
|
|
|
|
|
|
|
Child = new OsuHitObjectComposer(new OsuRuleset());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|