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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

112 lines
3.5 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
2022-06-17 15:37:17 +08:00
#nullable disable
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.Beatmaps;
2018-10-25 18:11:57 +08:00
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Drawables;
2020-05-22 17:23:24 +08:00
using osu.Game.Screens.Edit;
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
{
2020-04-13 14:31:54 +08:00
public abstract class PlacementBlueprintTestScene : OsuManualInputManagerTestScene, IPlacementHandler
2018-10-25 18:11:57 +08:00
{
2020-04-13 14:31:54 +08:00
protected readonly Container HitObjectContainer;
2021-07-08 15:36:41 +08:00
protected PlacementBlueprint CurrentBlueprint { get; private set; }
2018-10-25 18:11:57 +08:00
protected PlacementBlueprintTestScene()
2018-10-25 18:11:57 +08:00
{
base.Content.Add(HitObjectContainer = CreateHitObjectContainer().With(c => c.Clock = new FramedClock(new StopwatchClock())));
2018-10-25 18:11:57 +08:00
}
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
{
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
var playable = GetPlayableBeatmap();
var editorClock = new EditorClock();
base.Content.Add(editorClock);
dependencies.CacheAs(editorClock);
var editorBeatmap = new EditorBeatmap(playable);
// Not adding to hierarchy as we don't satisfy its dependencies. Probably not good.
dependencies.CacheAs(editorBeatmap);
2018-10-25 18:11:57 +08:00
return dependencies;
}
protected virtual IBeatmap GetPlayableBeatmap()
{
var playable = Beatmap.Value.GetPlayableBeatmap(Beatmap.Value.BeatmapInfo.Ruleset);
playable.Difficulty.CircleSize = 2;
return playable;
}
protected override void LoadComplete()
{
base.LoadComplete();
2020-04-13 14:31:54 +08:00
ResetPlacement();
}
2018-10-25 18:11:57 +08:00
public void BeginPlacement(HitObject hitObject)
{
}
public void EndPlacement(HitObject hitObject, bool commit)
2018-10-25 18:11:57 +08:00
{
if (commit)
AddHitObject(CreateHitObject(hitObject));
2018-10-25 18:11:57 +08:00
2020-04-13 14:31:54 +08:00
ResetPlacement();
}
protected void ResetPlacement()
{
2021-07-08 15:36:41 +08:00
if (CurrentBlueprint != null)
Remove(CurrentBlueprint, true);
2021-07-08 15:36:41 +08:00
Add(CurrentBlueprint = CreateBlueprint());
2018-10-25 18:11:57 +08:00
}
public void Delete(HitObject hitObject)
{
}
2020-04-13 14:31:54 +08:00
protected override void Update()
{
2020-04-13 14:31:54 +08:00
base.Update();
2021-07-08 15:36:41 +08:00
CurrentBlueprint.UpdateTimeAndPosition(SnapForBlueprint(CurrentBlueprint));
}
protected virtual SnapResult SnapForBlueprint(PlacementBlueprint blueprint) =>
new SnapResult(InputManager.CurrentState.Mouse.Position, null);
public override void Add(Drawable drawable)
{
base.Add(drawable);
if (drawable is PlacementBlueprint blueprint)
{
blueprint.Show();
blueprint.UpdateTimeAndPosition(SnapForBlueprint(blueprint));
}
}
2018-11-12 18:41:06 +08:00
protected virtual void AddHitObject(DrawableHitObject hitObject) => HitObjectContainer.Add(hitObject);
protected virtual Container CreateHitObjectContainer() => new Container { RelativeSizeAxes = Axes.Both };
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
}
}