mirror of
https://github.com/ppy/osu.git
synced 2025-02-06 23:12:54 +08:00
replay analysis settings is created in the respective drawable that's adding it, instead of adding it from `DrawableRuleset` for this, it adds a virtual method in Ruleset that uses a non-ruleset-specific `ReplayAnalysisSettings` (the osu specific one was renamed to `OsuReplayAnalysisSettings`).
155 lines
5.8 KiB
C#
155 lines
5.8 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Replays;
|
|
using osu.Game.Rulesets.Osu.Configuration;
|
|
using osu.Game.Rulesets.Osu.Replays;
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
using osu.Game.Rulesets.Replays;
|
|
using osu.Game.Tests.Visual;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
{
|
|
public partial class TestSceneOsuAnalysisContainer : OsuTestScene
|
|
{
|
|
private TestReplayAnalysisOverlay analysisContainer = null!;
|
|
private OsuReplayAnalysisSettings settings = null!;
|
|
|
|
[Cached]
|
|
private OsuRulesetConfigManager config = new OsuRulesetConfigManager(null, new OsuRuleset().RulesetInfo);
|
|
|
|
[SetUpSteps]
|
|
public void SetUpSteps()
|
|
{
|
|
AddStep("create analysis container", () =>
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuPlayfieldAdjustmentContainer
|
|
{
|
|
Child = analysisContainer = new TestReplayAnalysisOverlay(fabricateReplay()),
|
|
},
|
|
settings = new TestOsuReplayAnalysisSettings(Ruleset.Value.CreateInstance(), config),
|
|
};
|
|
|
|
settings.ShowClickMarkers.Value = false;
|
|
settings.ShowAimMarkers.Value = false;
|
|
settings.ShowCursorPath.Value = false;
|
|
});
|
|
}
|
|
|
|
[Test]
|
|
public void TestEverythingOn()
|
|
{
|
|
AddStep("enable everything", () =>
|
|
{
|
|
settings.ShowClickMarkers.Value = true;
|
|
settings.ShowAimMarkers.Value = true;
|
|
settings.ShowCursorPath.Value = true;
|
|
});
|
|
}
|
|
|
|
[Test]
|
|
public void TestHitMarkers()
|
|
{
|
|
AddStep("enable hit markers", () => settings.ShowClickMarkers.Value = true);
|
|
AddUntilStep("hit markers visible", () => analysisContainer.HitMarkersVisible);
|
|
AddStep("disable hit markers", () => settings.ShowClickMarkers.Value = false);
|
|
AddUntilStep("hit markers not visible", () => !analysisContainer.HitMarkersVisible);
|
|
}
|
|
|
|
[Test]
|
|
public void TestAimMarker()
|
|
{
|
|
AddStep("enable aim markers", () => settings.ShowAimMarkers.Value = true);
|
|
AddUntilStep("aim markers visible", () => analysisContainer.AimMarkersVisible);
|
|
AddStep("disable aim markers", () => settings.ShowAimMarkers.Value = false);
|
|
AddUntilStep("aim markers not visible", () => !analysisContainer.AimMarkersVisible);
|
|
}
|
|
|
|
[Test]
|
|
public void TestAimLines()
|
|
{
|
|
AddStep("enable aim lines", () => settings.ShowCursorPath.Value = true);
|
|
AddUntilStep("aim lines visible", () => analysisContainer.AimLinesVisible);
|
|
AddStep("disable aim lines", () => settings.ShowCursorPath.Value = false);
|
|
AddUntilStep("aim lines not visible", () => !analysisContainer.AimLinesVisible);
|
|
}
|
|
|
|
private Replay fabricateReplay()
|
|
{
|
|
var frames = new List<ReplayFrame>();
|
|
var random = new Random();
|
|
int posX = 250;
|
|
int posY = 250;
|
|
|
|
var actions = new HashSet<OsuAction>();
|
|
|
|
for (int i = 0; i < 1000; i++)
|
|
{
|
|
posX = Math.Clamp(posX + random.Next(-20, 21), -100, 600);
|
|
posY = Math.Clamp(posY + random.Next(-20, 21), -100, 600);
|
|
|
|
if (random.NextDouble() > (actions.Count == 0 ? 0.9 : 0.95))
|
|
{
|
|
actions.Add(random.NextDouble() > 0.5 ? OsuAction.LeftButton : OsuAction.RightButton);
|
|
}
|
|
else if (random.NextDouble() > 0.7)
|
|
{
|
|
actions.Remove(random.NextDouble() > 0.5 ? OsuAction.LeftButton : OsuAction.RightButton);
|
|
}
|
|
|
|
frames.Add(new OsuReplayFrame
|
|
{
|
|
Time = Time.Current + i * 15,
|
|
Position = new Vector2(posX, posY),
|
|
Actions = actions.ToList(),
|
|
});
|
|
}
|
|
|
|
return new Replay { Frames = frames };
|
|
}
|
|
|
|
private partial class TestReplayAnalysisOverlay : ReplayAnalysisOverlay
|
|
{
|
|
public TestReplayAnalysisOverlay(Replay replay)
|
|
: base(replay)
|
|
{
|
|
}
|
|
|
|
public bool HitMarkersVisible => ClickMarkers?.Alpha > 0 && ClickMarkers.Entries.Any();
|
|
public bool AimMarkersVisible => FrameMarkers?.Alpha > 0 && FrameMarkers.Entries.Any();
|
|
public bool AimLinesVisible => CursorPath?.Alpha > 0 && CursorPath.Vertices.Count > 1;
|
|
}
|
|
|
|
private partial class TestOsuReplayAnalysisSettings : OsuReplayAnalysisSettings
|
|
{
|
|
private readonly OsuRulesetConfigManager config;
|
|
|
|
public TestOsuReplayAnalysisSettings(Ruleset ruleset, OsuRulesetConfigManager config)
|
|
: base(ruleset)
|
|
{
|
|
this.config = config;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
config.BindWith(OsuRulesetSetting.ReplayClickMarkersEnabled, ShowClickMarkers);
|
|
config.BindWith(OsuRulesetSetting.ReplayFrameMarkersEnabled, ShowAimMarkers);
|
|
config.BindWith(OsuRulesetSetting.ReplayCursorPathEnabled, ShowCursorPath);
|
|
config.BindWith(OsuRulesetSetting.ReplayCursorHideEnabled, HideSkinCursor);
|
|
config.BindWith(OsuRulesetSetting.ReplayAnalysisDisplayLength, DisplayLength);
|
|
}
|
|
}
|
|
}
|
|
}
|