1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneCursorTrail.cs

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

175 lines
5.4 KiB
C#
Raw Normal View History

2019-09-11 12:30:07 +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.
2022-06-17 15:37:17 +08:00
#nullable disable
2019-09-11 12:30:07 +08:00
using System;
using System.Collections.Generic;
2024-04-22 13:58:45 +08:00
using System.Linq;
2019-09-11 12:30:07 +08:00
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2022-08-02 18:50:57 +08:00
using osu.Framework.Graphics.Rendering;
2019-09-11 12:30:07 +08:00
using osu.Framework.Graphics.Textures;
2024-04-22 13:58:45 +08:00
using osu.Framework.Testing;
2019-09-11 12:30:07 +08:00
using osu.Framework.Testing.Input;
using osu.Game.Audio;
2020-12-04 19:21:53 +08:00
using osu.Game.Rulesets.Osu.Skinning.Legacy;
2019-09-11 12:30:07 +08:00
using osu.Game.Rulesets.Osu.UI.Cursor;
using osu.Game.Skinning;
using osu.Game.Tests.Visual;
using osuTK;
namespace osu.Game.Rulesets.Osu.Tests
{
public partial class TestSceneCursorTrail : OsuTestScene
{
2022-08-02 19:18:45 +08:00
[Resolved]
private IRenderer renderer { get; set; }
2019-09-11 12:30:07 +08:00
[Test]
public void TestSmoothCursorTrail()
{
2019-09-11 12:40:53 +08:00
Container scalingContainer = null;
createTest(() => scalingContainer = new Container
{
RelativeSizeAxes = Axes.Both,
Child = new CursorTrail()
});
AddStep("set large scale", () => scalingContainer.Scale = new Vector2(10));
2019-09-11 12:30:07 +08:00
}
[Test]
public void TestLegacySmoothCursorTrail()
{
2021-06-06 21:26:27 +08:00
createTest(() =>
2019-09-11 12:30:07 +08:00
{
2024-04-22 15:07:11 +08:00
var skinContainer = new LegacySkinContainer(renderer, provideMiddle: false);
2021-06-06 21:26:27 +08:00
var legacyCursorTrail = new LegacyCursorTrail(skinContainer);
skinContainer.Child = legacyCursorTrail;
return skinContainer;
2019-09-11 12:30:07 +08:00
});
}
[Test]
public void TestLegacyDisjointCursorTrail()
{
2021-06-06 21:26:27 +08:00
createTest(() =>
2019-09-11 12:30:07 +08:00
{
2024-04-22 15:07:11 +08:00
var skinContainer = new LegacySkinContainer(renderer, provideMiddle: true);
2021-06-06 21:26:27 +08:00
var legacyCursorTrail = new LegacyCursorTrail(skinContainer);
skinContainer.Child = legacyCursorTrail;
return skinContainer;
2019-09-11 12:30:07 +08:00
});
}
2024-04-22 13:58:45 +08:00
[Test]
public void TestLegacyDisjointCursorTrailViaNoCursor()
{
createTest(() =>
{
2024-04-22 15:07:11 +08:00
var skinContainer = new LegacySkinContainer(renderer, provideMiddle: false, provideCursor: false);
2024-04-22 13:58:45 +08:00
var legacyCursorTrail = new LegacyCursorTrail(skinContainer);
skinContainer.Child = legacyCursorTrail;
return skinContainer;
});
AddAssert("trail is disjoint", () => this.ChildrenOfType<LegacyCursorTrail>().Single().DisjointTrail, () => Is.True);
}
2019-09-11 12:30:07 +08:00
private void createTest(Func<Drawable> createContent) => AddStep("create trail", () =>
{
Clear();
Add(new Container
{
RelativeSizeAxes = Axes.Both,
Size = new Vector2(0.8f),
2023-10-25 16:55:55 +08:00
Child = new MovingCursorInputManager { Child = createContent() }
2019-09-11 12:30:07 +08:00
});
});
[Cached(typeof(ISkinSource))]
private partial class LegacySkinContainer : Container, ISkinSource
{
2022-08-02 19:18:45 +08:00
private readonly IRenderer renderer;
2024-04-22 15:07:11 +08:00
private readonly bool provideMiddle;
2024-04-22 13:58:45 +08:00
private readonly bool provideCursor;
2019-09-11 12:30:07 +08:00
2024-04-22 15:07:11 +08:00
public LegacySkinContainer(IRenderer renderer, bool provideMiddle, bool provideCursor = true)
2019-09-11 12:30:07 +08:00
{
2022-08-02 19:18:45 +08:00
this.renderer = renderer;
2024-04-22 15:07:11 +08:00
this.provideMiddle = provideMiddle;
2024-04-22 13:58:45 +08:00
this.provideCursor = provideCursor;
2019-09-11 12:30:07 +08:00
RelativeSizeAxes = Axes.Both;
}
public Drawable GetDrawableComponent(ISkinComponentLookup lookup) => null;
2019-09-11 12:30:07 +08:00
2020-07-17 15:54:30 +08:00
public Texture GetTexture(string componentName, WrapMode wrapModeS, WrapMode wrapModeT)
2019-09-11 12:30:07 +08:00
{
switch (componentName)
{
2024-04-22 13:58:45 +08:00
case "cursor":
return provideCursor ? new Texture(renderer.WhitePixel) : null;
2019-09-11 12:30:07 +08:00
2024-04-22 13:58:45 +08:00
case "cursortrail":
return new Texture(renderer.WhitePixel);
2019-09-11 12:30:07 +08:00
case "cursormiddle":
2024-04-22 15:07:11 +08:00
return provideMiddle ? null : renderer.WhitePixel;
2019-09-11 12:30:07 +08:00
}
return null;
}
public ISample GetSample(ISampleInfo sampleInfo) => null;
2019-09-11 12:30:07 +08:00
public IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup) => null;
2019-09-11 12:30:07 +08:00
public ISkin FindProvider(Func<ISkin, bool> lookupFunction) => lookupFunction(this) ? this : null;
2021-05-31 16:25:21 +08:00
public IEnumerable<ISkin> AllSources => new[] { this };
2019-10-30 23:43:13 +08:00
public event Action SourceChanged
{
add { }
remove { }
}
2019-09-11 12:30:07 +08:00
}
private partial class MovingCursorInputManager : ManualInputManager
{
public MovingCursorInputManager()
{
UseParentInput = false;
}
protected override void Update()
{
base.Update();
const double spin_duration = 1000;
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));
}
}
}
}