mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
113 lines
4.2 KiB
C#
113 lines
4.2 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.Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Pooling;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Skinning;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
{
|
|
public class TestSceneDrawableJudgement : OsuSkinnableTestScene
|
|
{
|
|
[Resolved]
|
|
private OsuConfigManager config { get; set; }
|
|
|
|
private readonly List<DrawablePool<TestDrawableOsuJudgement>> pools;
|
|
|
|
public TestSceneDrawableJudgement()
|
|
{
|
|
pools = new List<DrawablePool<TestDrawableOsuJudgement>>();
|
|
|
|
foreach (HitResult result in Enum.GetValues(typeof(HitResult)).OfType<HitResult>().Skip(1))
|
|
showResult(result);
|
|
}
|
|
|
|
[Test]
|
|
public void TestHitLightingDisabled()
|
|
{
|
|
AddStep("hit lighting disabled", () => config.Set(OsuSetting.HitLighting, false));
|
|
|
|
showResult(HitResult.Great);
|
|
|
|
AddUntilStep("judgements shown", () => this.ChildrenOfType<TestDrawableOsuJudgement>().Any());
|
|
AddAssert("judgement body immediately visible",
|
|
() => this.ChildrenOfType<TestDrawableOsuJudgement>().All(judgement => judgement.JudgementBody.Alpha == 1));
|
|
AddAssert("hit lighting hidden",
|
|
() => this.ChildrenOfType<TestDrawableOsuJudgement>().All(judgement => judgement.Lighting.Alpha == 0));
|
|
}
|
|
|
|
[Test]
|
|
public void TestHitLightingEnabled()
|
|
{
|
|
AddStep("hit lighting enabled", () => config.Set(OsuSetting.HitLighting, true));
|
|
|
|
showResult(HitResult.Great);
|
|
|
|
AddUntilStep("judgements shown", () => this.ChildrenOfType<TestDrawableOsuJudgement>().Any());
|
|
AddAssert("judgement body not immediately visible",
|
|
() => this.ChildrenOfType<TestDrawableOsuJudgement>().All(judgement => judgement.JudgementBody.Alpha > 0 && judgement.JudgementBody.Alpha < 1));
|
|
AddAssert("hit lighting shown",
|
|
() => this.ChildrenOfType<TestDrawableOsuJudgement>().All(judgement => judgement.Lighting.Alpha > 0));
|
|
}
|
|
|
|
private void showResult(HitResult result)
|
|
{
|
|
AddStep("Show " + result.GetDescription(), () =>
|
|
{
|
|
int poolIndex = 0;
|
|
|
|
SetContents(() =>
|
|
{
|
|
DrawablePool<TestDrawableOsuJudgement> pool;
|
|
|
|
if (poolIndex >= pools.Count)
|
|
pools.Add(pool = new DrawablePool<TestDrawableOsuJudgement>(1));
|
|
else
|
|
{
|
|
pool = pools[poolIndex];
|
|
|
|
// We need to make sure neither the pool nor the judgement get disposed when new content is set, and they both share the same parent.
|
|
((Container)pool.Parent).Clear(false);
|
|
}
|
|
|
|
var container = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Children = new Drawable[]
|
|
{
|
|
pool,
|
|
pool.Get(j => j.Apply(new JudgementResult(new HitObject(), new Judgement()) { Type = result }, null)).With(j =>
|
|
{
|
|
j.Anchor = Anchor.Centre;
|
|
j.Origin = Anchor.Centre;
|
|
})
|
|
}
|
|
};
|
|
|
|
poolIndex++;
|
|
return container;
|
|
});
|
|
});
|
|
}
|
|
|
|
private class TestDrawableOsuJudgement : DrawableOsuJudgement
|
|
{
|
|
public new SkinnableSprite Lighting => base.Lighting;
|
|
public new Container JudgementBody => base.JudgementBody;
|
|
}
|
|
}
|
|
}
|