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 18:11:57 +08:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Timing;
|
2021-10-02 11:34:29 +08:00
|
|
|
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
|
|
|
|
{
|
|
|
|
[Cached(Type = typeof(IPlacementHandler))]
|
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
|
|
|
|
2019-05-15 03:37:25 +08:00
|
|
|
protected PlacementBlueprintTestScene()
|
2018-10-25 18:11:57 +08:00
|
|
|
{
|
2021-07-08 14:51:46 +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));
|
2021-05-20 02:48:06 +08:00
|
|
|
|
2020-05-22 17:23:24 +08:00
|
|
|
dependencies.CacheAs(new EditorClock());
|
2018-10-25 18:11:57 +08:00
|
|
|
|
2021-10-02 11:34:29 +08:00
|
|
|
var playable = GetPlayableBeatmap();
|
2021-05-20 02:48:06 +08:00
|
|
|
dependencies.CacheAs(new EditorBeatmap(playable));
|
|
|
|
|
2018-10-25 18:11:57 +08:00
|
|
|
return dependencies;
|
|
|
|
}
|
|
|
|
|
2021-10-02 11:34:29 +08:00
|
|
|
protected virtual IBeatmap GetPlayableBeatmap()
|
|
|
|
{
|
|
|
|
var playable = Beatmap.Value.GetPlayableBeatmap(Beatmap.Value.BeatmapInfo.Ruleset);
|
|
|
|
playable.Difficulty.CircleSize = 2;
|
|
|
|
return playable;
|
|
|
|
}
|
|
|
|
|
2019-10-03 15:28:56 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2020-04-13 14:31:54 +08:00
|
|
|
ResetPlacement();
|
2019-10-03 15:28:56 +08:00
|
|
|
}
|
|
|
|
|
2018-10-25 18:11:57 +08:00
|
|
|
public void BeginPlacement(HitObject hitObject)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-02-07 17:02:48 +08:00
|
|
|
public void EndPlacement(HitObject hitObject, bool commit)
|
2018-10-25 18:11:57 +08:00
|
|
|
{
|
2020-02-07 17:02:48 +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);
|
|
|
|
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()
|
2019-10-03 15:28:56 +08:00
|
|
|
{
|
2020-04-13 14:31:54 +08:00
|
|
|
base.Update();
|
|
|
|
|
2021-07-08 15:36:41 +08:00
|
|
|
CurrentBlueprint.UpdateTimeAndPosition(SnapForBlueprint(CurrentBlueprint));
|
2019-10-03 15:28:56 +08:00
|
|
|
}
|
|
|
|
|
2020-05-21 13:25:37 +08:00
|
|
|
protected virtual SnapResult SnapForBlueprint(PlacementBlueprint blueprint) =>
|
|
|
|
new SnapResult(InputManager.CurrentState.Mouse.Position, null);
|
|
|
|
|
2019-10-03 15:28:56 +08:00
|
|
|
public override void Add(Drawable drawable)
|
|
|
|
{
|
|
|
|
base.Add(drawable);
|
|
|
|
|
|
|
|
if (drawable is PlacementBlueprint blueprint)
|
|
|
|
{
|
|
|
|
blueprint.Show();
|
2020-11-26 18:16:18 +08:00
|
|
|
blueprint.UpdateTimeAndPosition(SnapForBlueprint(blueprint));
|
2019-10-03 15:28:56 +08:00
|
|
|
}
|
|
|
|
}
|
2018-11-12 18:41:06 +08:00
|
|
|
|
|
|
|
protected virtual void AddHitObject(DrawableHitObject hitObject) => HitObjectContainer.Add(hitObject);
|
|
|
|
|
2019-10-03 15:28:56 +08:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|