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;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Framework.Allocation;
|
2021-04-14 11:36:31 +08:00
|
|
|
|
using osu.Framework.Audio.Sample;
|
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-04-14 11:36:31 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.OpenGL.Textures;
|
2020-07-10 13:47:26 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2021-04-14 11:36:31 +08:00
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
using osu.Framework.Input;
|
2019-09-09 11:48:34 +08:00
|
|
|
|
using osu.Framework.Testing.Input;
|
2020-07-10 13:47:26 +08:00
|
|
|
|
using osu.Framework.Utils;
|
2021-04-14 11:36:31 +08:00
|
|
|
|
using osu.Game.Audio;
|
2020-02-14 11:30:11 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2021-04-14 11:36:31 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Skinning;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.UI.Cursor;
|
2020-02-14 11:30:11 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2021-04-14 11:36:31 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2019-09-09 11:48:34 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2020-04-07 14:38:29 +08:00
|
|
|
|
public class TestSceneGameplayCursor : OsuSkinnableTestScene
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-02-14 11:30:11 +08:00
|
|
|
|
[Cached]
|
|
|
|
|
private GameplayBeatmap gameplayBeatmap;
|
|
|
|
|
|
2021-04-14 11:36:31 +08:00
|
|
|
|
private OsuCursorContainer lastContainer;
|
2020-02-14 11:30:11 +08:00
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuConfigManager config { get; set; }
|
|
|
|
|
|
2020-07-10 13:47:26 +08:00
|
|
|
|
private Drawable background;
|
|
|
|
|
|
2020-02-14 11:30:11 +08:00
|
|
|
|
public TestSceneGameplayCursor()
|
|
|
|
|
{
|
|
|
|
|
gameplayBeatmap = new GameplayBeatmap(CreateBeatmap(new OsuRuleset().RulesetInfo));
|
2020-07-10 13:47:26 +08:00
|
|
|
|
|
|
|
|
|
AddStep("change background colour", () =>
|
|
|
|
|
{
|
|
|
|
|
background?.Expire();
|
|
|
|
|
|
|
|
|
|
Add(background = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Depth = float.MaxValue,
|
|
|
|
|
Colour = new Colour4(RNG.NextSingle(), RNG.NextSingle(), RNG.NextSingle(), 1)
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddSliderStep("circle size", 0f, 10f, 0f, val =>
|
|
|
|
|
{
|
2021-03-17 15:10:16 +08:00
|
|
|
|
config.SetValue(OsuSetting.AutoCursorSize, true);
|
2020-07-10 13:47:26 +08:00
|
|
|
|
gameplayBeatmap.BeatmapInfo.BaseDifficulty.CircleSize = val;
|
2021-04-14 11:36:31 +08:00
|
|
|
|
Scheduler.AddOnce(() => loadContent(false));
|
2020-07-10 13:47:26 +08:00
|
|
|
|
});
|
|
|
|
|
|
2021-04-14 11:36:31 +08:00
|
|
|
|
AddStep("test cursor container", () => loadContent(false));
|
2020-02-14 11:30:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestCase(1, 1)]
|
|
|
|
|
[TestCase(5, 1)]
|
|
|
|
|
[TestCase(10, 1)]
|
|
|
|
|
[TestCase(1, 1.5f)]
|
|
|
|
|
[TestCase(5, 1.5f)]
|
|
|
|
|
[TestCase(10, 1.5f)]
|
|
|
|
|
public void TestSizing(int circleSize, float userScale)
|
|
|
|
|
{
|
2021-03-17 15:10:16 +08:00
|
|
|
|
AddStep($"set user scale to {userScale}", () => config.SetValue(OsuSetting.GameplayCursorSize, userScale));
|
2020-02-14 11:30:11 +08:00
|
|
|
|
AddStep($"adjust cs to {circleSize}", () => gameplayBeatmap.BeatmapInfo.BaseDifficulty.CircleSize = circleSize);
|
2021-03-17 15:10:16 +08:00
|
|
|
|
AddStep("turn on autosizing", () => config.SetValue(OsuSetting.AutoCursorSize, true));
|
2020-02-14 11:30:11 +08:00
|
|
|
|
|
2021-04-14 11:36:31 +08:00
|
|
|
|
AddStep("load content", () => loadContent());
|
2020-02-14 11:30:11 +08:00
|
|
|
|
|
|
|
|
|
AddUntilStep("cursor size correct", () => lastContainer.ActiveCursor.Scale.X == OsuCursorContainer.GetScaleForCircleSize(circleSize) * userScale);
|
|
|
|
|
|
2021-03-17 15:10:16 +08:00
|
|
|
|
AddStep("set user scale to 1", () => config.SetValue(OsuSetting.GameplayCursorSize, 1f));
|
2020-02-14 11:30:11 +08:00
|
|
|
|
AddUntilStep("cursor size correct", () => lastContainer.ActiveCursor.Scale.X == OsuCursorContainer.GetScaleForCircleSize(circleSize));
|
|
|
|
|
|
2021-03-17 15:10:16 +08:00
|
|
|
|
AddStep("turn off autosizing", () => config.SetValue(OsuSetting.AutoCursorSize, false));
|
2020-02-14 11:30:11 +08:00
|
|
|
|
AddUntilStep("cursor size correct", () => lastContainer.ActiveCursor.Scale.X == 1);
|
|
|
|
|
|
2021-03-17 15:10:16 +08:00
|
|
|
|
AddStep($"set user scale to {userScale}", () => config.SetValue(OsuSetting.GameplayCursorSize, userScale));
|
2020-02-14 11:30:11 +08:00
|
|
|
|
AddUntilStep("cursor size correct", () => lastContainer.ActiveCursor.Scale.X == userScale);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 11:36:31 +08:00
|
|
|
|
[Test]
|
|
|
|
|
public void TestTopLeftOrigin()
|
|
|
|
|
{
|
|
|
|
|
AddStep("load content", () => loadContent(false, () => new SkinProvidingContainer(new TopLeftCursorSkin())));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void loadContent(bool automated = true, Func<SkinProvidingContainer> skinProvider = null)
|
|
|
|
|
{
|
|
|
|
|
SetContents(() =>
|
|
|
|
|
{
|
|
|
|
|
var inputManager = automated ? (InputManager)new MovingCursorInputManager() : new OsuInputManager(new OsuRuleset().RulesetInfo);
|
|
|
|
|
var skinContainer = skinProvider?.Invoke() ?? new SkinProvidingContainer(null);
|
|
|
|
|
|
|
|
|
|
lastContainer = automated ? new ClickingCursorContainer() : new OsuCursorContainer();
|
|
|
|
|
|
|
|
|
|
return inputManager.WithChild(skinContainer.WithChild(lastContainer));
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class TopLeftCursorSkin : ISkin
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-04-14 11:36:31 +08:00
|
|
|
|
public Drawable GetDrawableComponent(ISkinComponent component) => null;
|
|
|
|
|
public Texture GetTexture(string componentName, WrapMode wrapModeS, WrapMode wrapModeT) => null;
|
|
|
|
|
public ISample GetSample(ISampleInfo sampleInfo) => null;
|
|
|
|
|
|
|
|
|
|
public IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup)
|
2019-08-30 12:58:17 +08:00
|
|
|
|
{
|
2021-04-14 11:36:31 +08:00
|
|
|
|
switch (lookup)
|
2019-09-09 11:48:34 +08:00
|
|
|
|
{
|
2021-04-14 11:36:31 +08:00
|
|
|
|
case OsuSkinConfiguration osuLookup:
|
|
|
|
|
if (osuLookup == OsuSkinConfiguration.CursorCentre)
|
|
|
|
|
return SkinUtils.As<TValue>(new BindableBool(false));
|
|
|
|
|
|
|
|
|
|
break;
|
2019-09-09 11:48:34 +08:00
|
|
|
|
}
|
2021-04-14 11:36:31 +08:00
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-09-09 11:48:34 +08:00
|
|
|
|
|
2019-09-09 12:01:40 +08:00
|
|
|
|
private class ClickingCursorContainer : OsuCursorContainer
|
|
|
|
|
{
|
2020-07-10 13:47:11 +08:00
|
|
|
|
private bool pressed;
|
|
|
|
|
|
|
|
|
|
public bool Pressed
|
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value == pressed)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pressed = value;
|
|
|
|
|
if (value)
|
|
|
|
|
OnPressed(OsuAction.LeftButton);
|
|
|
|
|
else
|
|
|
|
|
OnReleased(OsuAction.LeftButton);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 12:01:40 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
2020-07-10 13:47:11 +08:00
|
|
|
|
Pressed = ((int)(Time.Current / 1000)) % 2 == 0;
|
2019-09-09 12:01:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 11:48:34 +08:00
|
|
|
|
private class MovingCursorInputManager : ManualInputManager
|
|
|
|
|
{
|
|
|
|
|
public MovingCursorInputManager()
|
|
|
|
|
{
|
|
|
|
|
UseParentInput = false;
|
2020-07-10 13:46:49 +08:00
|
|
|
|
ShowVisualCursorGuide = false;
|
2019-09-09 11:48:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
|
|
const double spin_duration = 5000;
|
|
|
|
|
double currentTime = Time.Current;
|
|
|
|
|
|
|
|
|
|
double angle = (currentTime % spin_duration) / spin_duration * 2 * Math.PI;
|
|
|
|
|
Vector2 rPos = new Vector2((float)Math.Cos(angle), (float)Math.Sin(angle));
|
|
|
|
|
|
|
|
|
|
MoveMouseTo(ToScreenSpace(DrawSize / 2 + DrawSize / 3 * rPos));
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|