mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
116 lines
4.2 KiB
C#
116 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.
|
|
|
|
#nullable disable
|
|
|
|
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 partial 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.SetValue(OsuSetting.HitLighting, false));
|
|
|
|
showResult(HitResult.Great);
|
|
|
|
AddUntilStep("judgements shown", () => this.ChildrenOfType<TestDrawableOsuJudgement>().Any());
|
|
AddAssert("hit lighting has no transforms", () => this.ChildrenOfType<TestDrawableOsuJudgement>().All(judgement => !judgement.Lighting.Transforms.Any()));
|
|
AddAssert("hit lighting hidden", () => this.ChildrenOfType<TestDrawableOsuJudgement>().All(judgement => judgement.Lighting.Alpha == 0));
|
|
}
|
|
|
|
[Test]
|
|
public void TestHitLightingEnabled()
|
|
{
|
|
AddStep("hit lighting enabled", () => config.SetValue(OsuSetting.HitLighting, true));
|
|
|
|
showResult(HitResult.Great);
|
|
|
|
AddUntilStep("judgements shown", () => this.ChildrenOfType<TestDrawableOsuJudgement>().Any());
|
|
AddUntilStep("hit lighting shown", () => this.ChildrenOfType<TestDrawableOsuJudgement>().Any(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
|
|
{
|
|
StartTime = Time.Current
|
|
}, new Judgement())
|
|
{
|
|
Type = result,
|
|
}, null)).With(j =>
|
|
{
|
|
j.Anchor = Anchor.Centre;
|
|
j.Origin = Anchor.Centre;
|
|
})
|
|
}
|
|
};
|
|
|
|
poolIndex++;
|
|
return container;
|
|
});
|
|
});
|
|
}
|
|
|
|
private partial class TestDrawableOsuJudgement : DrawableOsuJudgement
|
|
{
|
|
public new SkinnableSprite Lighting => base.Lighting;
|
|
public new SkinnableDrawable JudgementBody => base.JudgementBody;
|
|
}
|
|
}
|
|
}
|