1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 21:07:35 +08:00
osu-lazer/osu.Game/Tests/Visual/PlacementBlueprintTestScene.cs

65 lines
2.1 KiB
C#
Raw Normal View History

// 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 18:11:57 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Timing;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Drawables;
2018-11-06 17:28:22 +08:00
using osu.Game.Screens.Edit.Compose;
2018-10-25 18:11:57 +08:00
namespace osu.Game.Tests.Visual
{
[Cached(Type = typeof(IPlacementHandler))]
public abstract class PlacementBlueprintTestScene : OsuTestScene, IPlacementHandler
2018-10-25 18:11:57 +08:00
{
protected Container HitObjectContainer;
2018-11-06 17:04:03 +08:00
private PlacementBlueprint currentBlueprint;
2018-10-25 18:11:57 +08:00
protected PlacementBlueprintTestScene()
2018-10-25 18:11:57 +08:00
{
2018-11-12 18:41:06 +08:00
Add(HitObjectContainer = CreateHitObjectContainer());
2018-10-25 18:11:57 +08:00
}
[BackgroundDependencyLoader]
private void load()
{
Beatmap.Value.BeatmapInfo.BaseDifficulty.CircleSize = 2;
2018-11-07 14:04:48 +08:00
Add(currentBlueprint = CreateBlueprint());
2018-10-25 18:11:57 +08:00
}
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
{
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
dependencies.CacheAs<IAdjustableClock>(new StopwatchClock());
return dependencies;
}
public void BeginPlacement(HitObject hitObject)
{
}
public void EndPlacement(HitObject hitObject)
{
2018-11-12 18:41:06 +08:00
AddHitObject(CreateHitObject(hitObject));
2018-10-25 18:11:57 +08:00
2018-11-06 17:04:03 +08:00
Remove(currentBlueprint);
2018-11-07 14:04:48 +08:00
Add(currentBlueprint = CreateBlueprint());
2018-10-25 18:11:57 +08:00
}
public void Delete(HitObject hitObject)
{
}
2018-11-12 18:41:06 +08:00
protected virtual Container CreateHitObjectContainer() => new Container { RelativeSizeAxes = Axes.Both };
protected virtual void AddHitObject(DrawableHitObject hitObject) => HitObjectContainer.Add(hitObject);
2018-10-25 18:11:57 +08:00
protected abstract DrawableHitObject CreateHitObject(HitObject hitObject);
2018-11-07 14:04:48 +08:00
protected abstract PlacementBlueprint CreateBlueprint();
2018-10-25 18:11:57 +08:00
}
}