2019-07-31 21:55:56 +02: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.
|
|
|
|
|
|
|
|
|
|
using System;
|
2019-08-20 17:47:24 +09:00
|
|
|
|
using System.Linq;
|
2019-07-31 21:55:56 +02:00
|
|
|
|
using osu.Framework.Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2019-09-02 16:28:14 +09:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2019-07-31 21:55:56 +02:00
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
|
|
|
{
|
2020-04-07 15:38:29 +09:00
|
|
|
|
public class TestSceneDrawableJudgement : OsuSkinnableTestScene
|
2019-07-31 21:55:56 +02:00
|
|
|
|
{
|
|
|
|
|
public TestSceneDrawableJudgement()
|
|
|
|
|
{
|
2019-08-20 17:47:24 +09:00
|
|
|
|
foreach (HitResult result in Enum.GetValues(typeof(HitResult)).OfType<HitResult>().Skip(1))
|
2019-11-11 19:53:22 +08:00
|
|
|
|
{
|
2019-08-20 17:47:24 +09:00
|
|
|
|
AddStep("Show " + result.GetDescription(), () => SetContents(() =>
|
2019-09-02 17:14:40 +09:00
|
|
|
|
new DrawableOsuJudgement(new JudgementResult(new HitObject(), new Judgement()) { Type = result }, null)
|
2019-08-20 17:47:24 +09:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
}));
|
2019-11-11 19:53:22 +08:00
|
|
|
|
}
|
2019-07-31 21:55:56 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|