1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:07:24 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseTaikoPlayfield.cs

120 lines
3.7 KiB
C#
Raw Normal View History

2017-03-21 14:09:54 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-03-28 10:18:12 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
2017-03-21 14:54:57 +08:00
using osu.Framework.MathUtils;
2017-03-28 20:03:34 +08:00
using osu.Framework.Testing;
2017-03-21 14:54:57 +08:00
using osu.Game.Modes.Objects.Drawables;
using osu.Game.Modes.Taiko.Judgements;
using osu.Game.Modes.Taiko.Objects;
2017-03-28 09:33:23 +08:00
using osu.Game.Modes.Taiko.Objects.Drawable;
2017-03-21 14:09:54 +08:00
using osu.Game.Modes.Taiko.UI;
namespace osu.Desktop.VisualTests.Tests
{
internal class TestCaseTaikoPlayfield : TestCase
{
public override string Description => "Taiko playfield";
2017-03-21 14:54:57 +08:00
private TaikoPlayfield playfield;
2017-03-21 14:09:54 +08:00
public override void Reset()
{
base.Reset();
2017-03-21 14:54:57 +08:00
AddButton("Hit!", addHitJudgement);
AddButton("Miss :(", addMissJudgement);
2017-03-28 10:21:01 +08:00
AddButton("Centre", () => addCentreHit(false));
AddButton("Strong Centre", () => addCentreHit(true));
AddButton("Rim", () => addRimHit(false));
AddButton("Strong Rim", () => addRimHit(true));
2017-03-21 14:54:57 +08:00
2017-03-28 10:18:12 +08:00
Add(new Container
2017-03-21 14:09:54 +08:00
{
2017-03-28 10:18:12 +08:00
RelativeSizeAxes = Axes.X,
Y = 200,
Padding = new MarginPadding { Left = 200 },
Children = new[]
{
playfield = new TaikoPlayfield()
}
2017-03-21 14:09:54 +08:00
});
}
2017-03-21 14:54:57 +08:00
private void addHitJudgement()
{
2017-03-22 00:42:40 +08:00
TaikoHitResult hitResult = RNG.Next(2) == 0 ? TaikoHitResult.Good : TaikoHitResult.Great;
2017-03-21 14:54:57 +08:00
2017-03-23 15:56:42 +08:00
playfield.OnJudgement(new DrawableTestHit(new Hit())
2017-03-21 14:54:57 +08:00
{
2017-03-22 00:42:40 +08:00
X = RNG.NextSingle(hitResult == TaikoHitResult.Good ? -0.1f : -0.05f, hitResult == TaikoHitResult.Good ? 0.1f : 0.05f),
Judgement = new TaikoJudgement
2017-03-21 14:54:57 +08:00
{
Result = HitResult.Hit,
2017-03-22 00:42:40 +08:00
TaikoResult = hitResult,
2017-03-21 14:54:57 +08:00
TimeOffset = 0,
ComboAtHit = 1,
SecondHit = RNG.Next(10) == 0
2017-03-21 14:54:57 +08:00
}
});
}
private void addMissJudgement()
{
2017-03-23 15:56:42 +08:00
playfield.OnJudgement(new DrawableTestHit(new Hit())
2017-03-21 14:54:57 +08:00
{
Judgement = new TaikoJudgement
2017-03-21 14:54:57 +08:00
{
Result = HitResult.Miss,
TimeOffset = 0,
ComboAtHit = 0
}
});
}
2017-03-28 10:18:12 +08:00
private void addCentreHit(bool strong)
{
Hit h = new Hit
{
StartTime = Time.Current + 1000,
PreEmpt = 1000
};
if (strong)
playfield.Add(new DrawableStrongCentreHit(h));
else
playfield.Add(new DrawableCentreHit(h));
}
private void addRimHit(bool strong)
{
Hit h = new Hit
{
StartTime = Time.Current + 1000,
PreEmpt = 1000
};
if (strong)
playfield.Add(new DrawableStrongRimHit(h));
else
playfield.Add(new DrawableRimHit(h));
}
private class DrawableTestHit : DrawableHitObject<TaikoHitObject, TaikoJudgement>
2017-03-21 14:54:57 +08:00
{
public DrawableTestHit(TaikoHitObject hitObject)
: base(hitObject)
{
}
protected override TaikoJudgement CreateJudgement() => new TaikoJudgement();
2017-03-21 14:54:57 +08:00
protected override void UpdateState(ArmedState state)
{
}
}
2017-03-21 14:09:54 +08:00
}
}