1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 17:27:24 +08:00
osu-lazer/osu.Game.Rulesets.Taiko.Tests/TestSceneHits.cs

235 lines
8.3 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
2018-04-13 17:19:50 +08:00
using NUnit.Framework;
using osu.Framework.Graphics;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
using osu.Game.Audio;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Rulesets.Judgements;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Objects;
2019-09-06 14:24:00 +08:00
using osu.Game.Rulesets.Scoring;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Taiko.Judgements;
using osu.Game.Rulesets.Taiko.Objects;
using osu.Game.Rulesets.Taiko.Objects.Drawables;
using osu.Game.Rulesets.Taiko.UI;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Taiko.Tests
{
[TestFixture]
public class TestSceneHits : DrawableTaikoRulesetTestScene
2018-04-13 17:19:50 +08:00
{
2020-04-27 11:17:36 +08:00
private const double default_duration = 3000;
2018-04-13 17:19:50 +08:00
private const float scroll_time = 1000;
protected override double TimePerAction => default_duration * 2;
private readonly Random rng = new Random(1337);
[Test]
public void TestVariousHits()
2018-04-13 17:19:50 +08:00
{
2018-08-06 12:01:27 +08:00
AddStep("Hit", () => addHitJudgement(false));
AddStep("Strong hit", () => addStrongHitJudgement(false));
2018-04-13 17:19:50 +08:00
AddStep("Kiai hit", () => addHitJudgement(true));
2018-08-06 12:01:27 +08:00
AddStep("Strong kiai hit", () => addStrongHitJudgement(true));
2018-04-13 17:19:50 +08:00
AddStep("Miss :(", addMissJudgement);
AddStep("DrumRoll", () => addDrumRoll(false));
AddStep("Strong DrumRoll", () => addDrumRoll(true));
2020-04-27 11:17:36 +08:00
AddStep("Kiai DrumRoll", () => addDrumRoll(true, kiai: true));
2018-04-13 17:19:50 +08:00
AddStep("Swell", () => addSwell());
AddStep("Centre", () => addCentreHit(false));
AddStep("Strong Centre", () => addCentreHit(true));
AddStep("Rim", () => addRimHit(false));
AddStep("Strong Rim", () => addRimHit(true));
AddStep("Add bar line", () => addBarLine(false));
AddStep("Add major bar line", () => addBarLine(true));
AddStep("Add centre w/ bar line", () =>
{
addCentreHit(false);
addBarLine(true);
});
2018-04-13 17:19:50 +08:00
AddStep("Height test 1", () => changePlayfieldSize(1));
AddStep("Height test 2", () => changePlayfieldSize(2));
AddStep("Height test 3", () => changePlayfieldSize(3));
AddStep("Height test 4", () => changePlayfieldSize(4));
AddStep("Height test 5", () => changePlayfieldSize(5));
AddStep("Reset height", () => changePlayfieldSize(6));
}
private void changePlayfieldSize(int step)
{
double delay = 0;
// Add new hits
switch (step)
{
case 1:
addCentreHit(false);
break;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case 2:
addCentreHit(true);
break;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case 3:
addDrumRoll(false);
break;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case 4:
addDrumRoll(true);
break;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case 5:
addSwell();
delay = scroll_time - 100;
break;
}
// Tween playfield height
switch (step)
{
default:
PlayfieldContainer.Delay(delay).ResizeTo(new Vector2(1, rng.Next(25, 400)), 500);
2018-04-13 17:19:50 +08:00
break;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case 6:
2020-12-13 07:00:37 +08:00
PlayfieldContainer.Delay(delay).ResizeTo(new Vector2(1, DEFAULT_PLAYFIELD_CONTAINER_HEIGHT), 500);
2018-04-13 17:19:50 +08:00
break;
}
}
private void addHitJudgement(bool kiai)
{
2020-09-29 16:16:55 +08:00
HitResult hitResult = RNG.Next(2) == 0 ? HitResult.Ok : HitResult.Great;
2018-04-13 17:19:50 +08:00
Hit hit = new Hit();
var h = new DrawableTestHit(hit, kiai: kiai) { X = RNG.NextSingle(hitResult == HitResult.Ok ? -0.1f : -0.05f, hitResult == HitResult.Ok ? 0.1f : 0.05f) };
2018-04-13 17:19:50 +08:00
DrawableRuleset.Playfield.Add(h);
2020-04-28 10:07:31 +08:00
((TaikoPlayfield)DrawableRuleset.Playfield).OnNewResult(h, new JudgementResult(new HitObject(), new TaikoJudgement()) { Type = hitResult });
2018-08-06 12:01:27 +08:00
}
2018-04-13 17:19:50 +08:00
2018-08-06 12:01:27 +08:00
private void addStrongHitJudgement(bool kiai)
{
2020-09-29 16:16:55 +08:00
HitResult hitResult = RNG.Next(2) == 0 ? HitResult.Ok : HitResult.Great;
2018-08-06 12:01:27 +08:00
Hit hit = new Hit
{
IsStrong = true,
Samples = createSamples(strong: true)
};
var h = new DrawableTestHit(hit, kiai: kiai) { X = RNG.NextSingle(hitResult == HitResult.Ok ? -0.1f : -0.05f, hitResult == HitResult.Ok ? 0.1f : 0.05f) };
2018-08-06 12:01:27 +08:00
DrawableRuleset.Playfield.Add(h);
2020-04-28 10:07:31 +08:00
((TaikoPlayfield)DrawableRuleset.Playfield).OnNewResult(h, new JudgementResult(new HitObject(), new TaikoJudgement()) { Type = hitResult });
((TaikoPlayfield)DrawableRuleset.Playfield).OnNewResult(h.NestedHitObjects.Single(), new JudgementResult(new HitObject(), new TaikoStrongJudgement()) { Type = HitResult.Great });
2018-04-13 17:19:50 +08:00
}
private void addMissJudgement()
{
DrawableTestHit h;
2020-12-13 05:52:01 +08:00
DrawableRuleset.Playfield.Add(h = new DrawableTestHit(new Hit { StartTime = DrawableRuleset.Playfield.Time.Current }, HitResult.Miss)
{
Alpha = 0
});
((TaikoPlayfield)DrawableRuleset.Playfield).OnNewResult(h, new JudgementResult(h.HitObject, new TaikoJudgement()) { Type = HitResult.Miss });
2018-04-13 17:19:50 +08:00
}
private void addBarLine(bool major, double delay = scroll_time)
{
BarLine bl = new BarLine
{
StartTime = DrawableRuleset.Playfield.Time.Current + delay,
Major = major
};
2018-04-13 17:19:50 +08:00
DrawableRuleset.Playfield.Add(bl);
2018-04-13 17:19:50 +08:00
}
private void addSwell(double duration = default_duration)
{
var swell = new Swell
{
StartTime = DrawableRuleset.Playfield.Time.Current + scroll_time,
2018-04-13 17:19:50 +08:00
Duration = duration,
};
swell.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
DrawableRuleset.Playfield.Add(new DrawableSwell(swell));
2018-04-13 17:19:50 +08:00
}
2020-04-27 11:17:36 +08:00
private void addDrumRoll(bool strong, double duration = default_duration, bool kiai = false)
2018-04-13 17:19:50 +08:00
{
addBarLine(true);
addBarLine(true, scroll_time + duration);
var d = new DrumRoll
{
StartTime = DrawableRuleset.Playfield.Time.Current + scroll_time,
2018-04-13 17:19:50 +08:00
IsStrong = strong,
Samples = createSamples(strong: strong),
2018-04-13 17:19:50 +08:00
Duration = duration,
2020-04-27 11:17:36 +08:00
TickRate = 8,
2018-04-13 17:19:50 +08:00
};
2020-04-27 11:17:36 +08:00
var cpi = new ControlPointInfo();
cpi.Add(-10000, new EffectControlPoint { KiaiMode = kiai });
d.ApplyDefaults(cpi, new BeatmapDifficulty());
2018-04-13 17:19:50 +08:00
DrawableRuleset.Playfield.Add(new DrawableDrumRoll(d));
2018-04-13 17:19:50 +08:00
}
private void addCentreHit(bool strong)
{
Hit h = new Hit
{
StartTime = DrawableRuleset.Playfield.Time.Current + scroll_time,
IsStrong = strong,
Samples = createSamples(HitType.Centre, strong)
2018-04-13 17:19:50 +08:00
};
h.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
DrawableRuleset.Playfield.Add(new DrawableHit(h));
2018-04-13 17:19:50 +08:00
}
private void addRimHit(bool strong)
{
Hit h = new Hit
{
StartTime = DrawableRuleset.Playfield.Time.Current + scroll_time,
IsStrong = strong,
Samples = createSamples(HitType.Rim, strong)
2018-04-13 17:19:50 +08:00
};
h.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
DrawableRuleset.Playfield.Add(new DrawableHit(h));
2018-04-13 17:19:50 +08:00
}
// TODO: can be removed if a better way of handling colour/strong type and samples is developed
private IList<HitSampleInfo> createSamples(HitType? hitType = null, bool strong = false)
{
var samples = new List<HitSampleInfo>();
if (hitType == HitType.Rim)
samples.Add(new HitSampleInfo(HitSampleInfo.HIT_CLAP));
if (strong)
samples.Add(new HitSampleInfo(HitSampleInfo.HIT_FINISH));
return samples;
}
2018-04-13 17:19:50 +08:00
}
}