1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneHitCircle.cs

112 lines
4.0 KiB
C#
Raw Normal View History

// 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 osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
using System.Collections.Generic;
using System;
using osu.Game.Rulesets.Mods;
using System.Linq;
using NUnit.Framework;
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Osu.Tests
{
[TestFixture]
2019-07-26 18:29:06 +08:00
public class TestSceneHitCircle : SkinnableTestScene
2018-04-13 17:19:50 +08:00
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(DrawableHitCircle)
};
private int depthIndex;
public TestSceneHitCircle()
2018-04-13 17:19:50 +08:00
{
2019-07-26 18:29:06 +08:00
AddStep("Miss Big Single", () => SetContents(() => testSingle(2)));
AddStep("Miss Medium Single", () => SetContents(() => testSingle(5)));
AddStep("Miss Small Single", () => SetContents(() => testSingle(7)));
AddStep("Hit Big Single", () => SetContents(() => testSingle(2, true)));
AddStep("Hit Medium Single", () => SetContents(() => testSingle(5, true)));
AddStep("Hit Small Single", () => SetContents(() => testSingle(7, true)));
AddStep("Miss Big Stream", () => SetContents(() => testStream(2)));
AddStep("Miss Medium Stream", () => SetContents(() => testStream(5)));
AddStep("Miss Small Stream", () => SetContents(() => testStream(7)));
AddStep("Hit Big Stream", () => SetContents(() => testStream(2, true)));
AddStep("Hit Medium Stream", () => SetContents(() => testStream(5, true)));
AddStep("Hit Small Stream", () => SetContents(() => testStream(7, true)));
2018-04-13 17:19:50 +08:00
}
2019-07-26 18:29:06 +08:00
private Drawable testSingle(float circleSize, bool auto = false, double timeOffset = 0, Vector2? positionOffset = null)
2018-04-13 17:19:50 +08:00
{
positionOffset = positionOffset ?? Vector2.Zero;
var circle = new HitCircle
{
StartTime = Time.Current + 1000 + timeOffset,
Position = positionOffset.Value,
};
circle.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty { CircleSize = circleSize });
2019-07-29 16:05:13 +08:00
var drawable = CreateDrawableHitCircle(circle, auto);
2018-04-13 17:19:50 +08:00
2019-04-10 11:03:57 +08:00
foreach (var mod in Mods.Value.OfType<IApplicableToDrawableHitObjects>())
2018-04-13 17:19:50 +08:00
mod.ApplyToDrawableHitObjects(new[] { drawable });
2019-07-26 18:29:06 +08:00
return drawable;
2018-04-13 17:19:50 +08:00
}
2019-07-29 16:05:13 +08:00
protected virtual TestDrawableHitCircle CreateDrawableHitCircle(HitCircle circle, bool auto) => new TestDrawableHitCircle(circle, auto)
{
Anchor = Anchor.Centre,
Depth = depthIndex++
};
2019-07-26 18:29:06 +08:00
private Drawable testStream(float circleSize, bool auto = false)
2018-04-13 17:19:50 +08:00
{
2019-07-26 18:29:06 +08:00
var container = new Container { RelativeSizeAxes = Axes.Both };
2018-04-13 17:19:50 +08:00
Vector2 pos = new Vector2(-250, 0);
for (int i = 0; i <= 1000; i += 100)
{
2019-07-26 18:29:06 +08:00
container.Add(testSingle(circleSize, auto, i, pos));
2018-04-13 17:19:50 +08:00
pos.X += 50;
}
2019-07-26 18:29:06 +08:00
return container;
2018-04-13 17:19:50 +08:00
}
2018-07-06 16:38:58 +08:00
protected class TestDrawableHitCircle : DrawableHitCircle
2018-04-13 17:19:50 +08:00
{
private readonly bool auto;
2019-02-28 12:31:40 +08:00
public TestDrawableHitCircle(HitCircle h, bool auto)
: base(h)
2018-04-13 17:19:50 +08:00
{
this.auto = auto;
}
public void TriggerJudgement() => UpdateResult(true);
2018-07-06 16:38:58 +08:00
protected override void CheckForResult(bool userTriggered, double timeOffset)
2018-04-13 17:19:50 +08:00
{
if (auto && !userTriggered && timeOffset > 0)
{
// force success
ApplyResult(r => r.Type = HitResult.Great);
2018-04-13 17:19:50 +08:00
}
else
base.CheckForResult(userTriggered, timeOffset);
2018-04-13 17:19:50 +08:00
}
}
}
}