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-04-13 17:19:50 +08:00
using System.Collections.Generic ;
2021-07-17 01:30:13 +08:00
using System.Linq ;
2018-04-13 17:19:50 +08:00
using NUnit.Framework ;
using osu.Framework.Allocation ;
2021-07-17 01:30:13 +08:00
using osu.Framework.Graphics ;
using osu.Framework.Graphics.Containers ;
using osu.Framework.Testing ;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps ;
2021-07-17 01:30:13 +08:00
using osu.Game.Beatmaps.ControlPoints ;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Edit ;
2021-07-17 01:30:13 +08:00
using osu.Game.Rulesets.Edit.Tools ;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Objects ;
2018-11-01 14:38:19 +08:00
using osu.Game.Rulesets.Objects.Types ;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Osu ;
using osu.Game.Rulesets.Osu.Edit ;
using osu.Game.Rulesets.Osu.Objects ;
2020-01-02 00:23:21 +08:00
using osu.Game.Screens.Edit ;
2021-07-17 01:30:13 +08:00
using osu.Game.Screens.Edit.Components.RadioButtons ;
using osu.Game.Screens.Edit.Compose.Components ;
2019-03-25 00:02:36 +08:00
using osuTK ;
2018-04-13 17:19:50 +08:00
2020-04-23 16:07:55 +08:00
namespace osu.Game.Tests.Visual.Editing
2018-04-13 17:19:50 +08:00
{
[TestFixture]
2019-10-25 18:00:10 +08:00
public class TestSceneHitObjectComposer : EditorClockTestScene
2018-04-13 17:19:50 +08:00
{
2021-07-17 01:30:13 +08:00
private OsuHitObjectComposer hitObjectComposer ;
private EditorBeatmapContainer editorBeatmapContainer ;
private EditorBeatmap editorBeatmap = > editorBeatmapContainer . EditorBeatmap ;
[SetUpSteps]
public void SetUpSteps ( )
2018-04-13 17:19:50 +08:00
{
2021-07-17 01:30:13 +08:00
AddStep ( "create beatmap" , ( ) = >
2018-04-13 17:19:50 +08:00
{
2021-07-17 01:30:13 +08:00
Beatmap . Value = CreateWorkingBeatmap ( new Beatmap
2018-04-13 17:19:50 +08:00
{
2022-01-12 22:17:35 +08:00
BeatmapInfo =
{
Ruleset = new OsuRuleset ( ) . RulesetInfo
} ,
2021-07-17 01:30:13 +08:00
HitObjects = new List < HitObject >
2018-04-13 17:19:50 +08:00
{
2022-01-12 22:17:35 +08:00
new HitCircle
{
Position = new Vector2 ( 256 , 192 ) , Scale = 0.5f
} ,
2021-07-17 01:30:13 +08:00
new HitCircle { Position = new Vector2 ( 344 , 148 ) , Scale = 0.5f } ,
new Slider
2018-04-13 17:19:50 +08:00
{
2021-07-17 01:30:13 +08:00
Position = new Vector2 ( 128 , 256 ) ,
Path = new SliderPath ( PathType . Linear , new [ ]
{
Vector2 . Zero ,
new Vector2 ( 216 , 0 ) ,
} ) ,
Scale = 0.5f ,
}
} ,
} ) ;
} ) ;
AddStep ( "Create composer" , ( ) = >
{
Child = editorBeatmapContainer = new EditorBeatmapContainer ( Beatmap . Value )
{
Child = hitObjectComposer = new OsuHitObjectComposer ( new OsuRuleset ( ) )
} ;
2018-04-13 17:19:50 +08:00
} ) ;
2021-07-17 01:30:13 +08:00
}
[Test]
public void TestPlacementOnlyWorksWithTiming ( )
{
AddStep ( "clear all control points" , ( ) = > editorBeatmap . ControlPointInfo . Clear ( ) ) ;
AddAssert ( "Tool is selection" , ( ) = > hitObjectComposer . ChildrenOfType < ComposeBlueprintContainer > ( ) . First ( ) . CurrentTool is SelectTool ) ;
2021-07-19 15:57:12 +08:00
AddAssert ( "Hitcircle button not clickable" , ( ) = > ! hitObjectComposer . ChildrenOfType < EditorRadioButton > ( ) . First ( d = > d . Button . Label = = "HitCircle" ) . Enabled . Value ) ;
2021-07-17 01:30:13 +08:00
AddStep ( "Add timing point" , ( ) = > editorBeatmap . ControlPointInfo . Add ( 0 , new TimingControlPoint ( ) ) ) ;
2021-07-19 15:57:12 +08:00
AddAssert ( "Hitcircle button is clickable" , ( ) = > hitObjectComposer . ChildrenOfType < EditorRadioButton > ( ) . First ( d = > d . Button . Label = = "HitCircle" ) . Enabled . Value ) ;
2021-08-04 16:27:44 +08:00
AddStep ( "Change to hitcircle" , ( ) = > hitObjectComposer . ChildrenOfType < EditorRadioButton > ( ) . First ( d = > d . Button . Label = = "HitCircle" ) . TriggerClick ( ) ) ;
2021-07-17 01:30:13 +08:00
AddAssert ( "Tool changed" , ( ) = > hitObjectComposer . ChildrenOfType < ComposeBlueprintContainer > ( ) . First ( ) . CurrentTool is HitCircleCompositionTool ) ;
}
2018-04-13 17:19:50 +08:00
2021-07-17 01:30:13 +08:00
public class EditorBeatmapContainer : Container
{
2021-11-15 17:46:11 +08:00
private readonly IWorkingBeatmap working ;
2021-07-17 01:30:13 +08:00
public EditorBeatmap EditorBeatmap { get ; private set ; }
2021-11-15 17:46:11 +08:00
public EditorBeatmapContainer ( IWorkingBeatmap working )
2021-07-17 01:30:13 +08:00
{
this . working = working ;
RelativeSizeAxes = Axes . Both ;
}
2020-01-02 00:23:21 +08:00
2021-07-17 01:30:13 +08:00
protected override IReadOnlyDependencyContainer CreateChildDependencies ( IReadOnlyDependencyContainer parent )
{
var dependencies = new DependencyContainer ( base . CreateChildDependencies ( parent ) ) ;
EditorBeatmap = new EditorBeatmap ( working . GetPlayableBeatmap ( new OsuRuleset ( ) . RulesetInfo ) ) ;
dependencies . CacheAs ( EditorBeatmap ) ;
dependencies . CacheAs < IBeatSnapProvider > ( EditorBeatmap ) ;
return dependencies ;
}
protected override void LoadComplete ( )
{
base . LoadComplete ( ) ;
2018-04-13 17:19:50 +08:00
2021-07-17 01:30:13 +08:00
Add ( EditorBeatmap ) ;
}
2018-10-17 16:41:17 +08:00
}
2018-04-13 17:19:50 +08:00
}
}