Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game.Rulesets.Taiko.Tests/Mods/TestSceneTaikoModRelax.cs
2262 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using System.Linq;
using NUnit.Framework;
using osu.Game.Rulesets.Taiko.Beatmaps;
using osu.Game.Rulesets.Taiko.Mods;
using osu.Game.Rulesets.Taiko.Objects;
using osu.Game.Rulesets.Taiko.Replays;

namespace osu.Game.Rulesets.Taiko.Tests.Mods
{
    public partial class TestSceneTaikoModRelax : TaikoModTestScene
    {
        [Test]
        public void TestRelax()
        {
            var beatmapForReplay = createBeatmap();

            foreach (var ho in beatmapForReplay.HitObjects)
                ho.ApplyDefaults(beatmapForReplay.ControlPointInfo, beatmapForReplay.Difficulty);

            var replay = new TaikoAutoGenerator(beatmapForReplay).Generate();

            foreach (var frame in replay.Frames.OfType<TaikoReplayFrame>().Where(r => r.Actions.Any()))
                frame.Actions = [TaikoAction.LeftCentre];

            CreateModTest(new ModTestData
            {
                Mod = new TaikoModRelax(),
                CreateBeatmap = createBeatmap,
                ReplayFrames = replay.Frames,
                Autoplay = false,
                PassCondition = () => Player.ScoreProcessor.HasCompleted.Value && Player.ScoreProcessor.Accuracy.Value == 1,
            });

            TaikoBeatmap createBeatmap() => new TaikoBeatmap
            {
                HitObjects =
                {
                    new Hit { StartTime = 0, Type = HitType.Centre, },
                    new Hit { StartTime = 250, Type = HitType.Rim, },
                    new DrumRoll { StartTime = 500, Duration = 500, },
                    new Swell { StartTime = 1250, Duration = 500 },
                }
            };
        }
    }
}