// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.MathUtils; using osu.Framework.Screens.Testing; using osu.Game.Modes.Objects.Drawables; using osu.Game.Modes.Taiko.Judgements; using osu.Game.Modes.Taiko.Objects; using osu.Game.Modes.Taiko.UI; namespace osu.Desktop.VisualTests.Tests { internal class TestCaseTaikoPlayfield : TestCase { public override string Description => "Taiko playfield"; private TaikoPlayfield playfield; public override void Reset() { base.Reset(); AddButton("Hit!", addHitJudgement); AddButton("Miss :(", addMissJudgement); Add(playfield = new TaikoPlayfield { Y = 200 }); } private void addHitJudgement() { TaikoScoreResult score = RNG.Next(2) == 0 ? TaikoScoreResult.Good : TaikoScoreResult.Great; playfield.OnJudgement(new DrawableTestHit(new TaikoHitObject()) { Judgement = new TaikoJudgementInfo { Result = HitResult.Hit, Score = score, TimeOffset = 0, ComboAtHit = 1 } }); } private void addMissJudgement() { playfield.OnJudgement(new DrawableTestHit(new TaikoHitObject()) { Judgement = new TaikoJudgementInfo { Result = HitResult.Miss, TimeOffset = 0, ComboAtHit = 0 } }); } private class DrawableTestHit : DrawableHitObject { public DrawableTestHit(TaikoHitObject hitObject) : base(hitObject) { } protected override TaikoJudgementInfo CreateJudgementInfo() => new TaikoJudgementInfo(); protected override void UpdateState(ArmedState state) { } protected override void Update() { // Doesn't move } } } }