mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 07:22:54 +08:00
Fix incorrect filename
This commit is contained in:
parent
b7180f16c5
commit
7645da7d37
@ -1,115 +1,11 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// 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.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Diagnostics.CodeAnalysis;
|
|
||||||
using NUnit.Framework;
|
|
||||||
using osu.Framework.Graphics.Containers;
|
|
||||||
using osu.Game.Rulesets.Judgements;
|
|
||||||
using osu.Game.Rulesets.Mods;
|
|
||||||
using osu.Game.Rulesets.Objects;
|
using osu.Game.Rulesets.Objects;
|
||||||
using osu.Game.Rulesets.Osu;
|
|
||||||
using osu.Game.Rulesets.Scoring;
|
using osu.Game.Rulesets.Scoring;
|
||||||
using osu.Game.Rulesets.UI;
|
|
||||||
using osu.Game.Scoring;
|
|
||||||
|
|
||||||
namespace osu.Game.Tests.NonVisual
|
namespace osu.Game.Tests.NonVisual
|
||||||
{
|
{
|
||||||
public class FirstAvailableHitWindowsTest
|
|
||||||
{
|
|
||||||
private TestDrawableRuleset testDrawableRuleset;
|
|
||||||
|
|
||||||
[SetUp]
|
|
||||||
public void Setup()
|
|
||||||
{
|
|
||||||
testDrawableRuleset = new TestDrawableRuleset();
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void TestResultIfOnlyParentHitWindowIsEmpty()
|
|
||||||
{
|
|
||||||
var testObject = new TestHitObject(HitWindows.Empty);
|
|
||||||
HitObject nested = new TestHitObject(new HitWindows());
|
|
||||||
testObject.AddNested(nested);
|
|
||||||
testDrawableRuleset.HitObjects = new List<HitObject> { testObject };
|
|
||||||
|
|
||||||
Assert.AreSame(testDrawableRuleset.FirstAvailableHitWindows, nested.HitWindows);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void TestResultIfParentHitWindowsIsNotEmpty()
|
|
||||||
{
|
|
||||||
var testObject = new TestHitObject(new HitWindows());
|
|
||||||
HitObject nested = new TestHitObject(new HitWindows());
|
|
||||||
testObject.AddNested(nested);
|
|
||||||
testDrawableRuleset.HitObjects = new List<HitObject> { testObject };
|
|
||||||
|
|
||||||
Assert.AreSame(testDrawableRuleset.FirstAvailableHitWindows, testObject.HitWindows);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void TestResultIfParentAndChildHitWindowsAreEmpty()
|
|
||||||
{
|
|
||||||
var firstObject = new TestHitObject(HitWindows.Empty);
|
|
||||||
HitObject nested = new TestHitObject(HitWindows.Empty);
|
|
||||||
firstObject.AddNested(nested);
|
|
||||||
|
|
||||||
var secondObject = new TestHitObject(new HitWindows());
|
|
||||||
testDrawableRuleset.HitObjects = new List<HitObject> { firstObject, secondObject };
|
|
||||||
|
|
||||||
Assert.AreSame(testDrawableRuleset.FirstAvailableHitWindows, secondObject.HitWindows);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void TestResultIfAllHitWindowsAreEmpty()
|
|
||||||
{
|
|
||||||
var firstObject = new TestHitObject(HitWindows.Empty);
|
|
||||||
HitObject nested = new TestHitObject(HitWindows.Empty);
|
|
||||||
firstObject.AddNested(nested);
|
|
||||||
|
|
||||||
testDrawableRuleset.HitObjects = new List<HitObject> { firstObject };
|
|
||||||
|
|
||||||
Assert.IsNull(testDrawableRuleset.FirstAvailableHitWindows);
|
|
||||||
}
|
|
||||||
|
|
||||||
[SuppressMessage("ReSharper", "UnassignedGetOnlyAutoProperty")]
|
|
||||||
private class TestDrawableRuleset : DrawableRuleset
|
|
||||||
{
|
|
||||||
public List<HitObject> HitObjects;
|
|
||||||
public override IEnumerable<HitObject> Objects => HitObjects;
|
|
||||||
|
|
||||||
public override event Action<JudgementResult> NewResult;
|
|
||||||
public override event Action<JudgementResult> RevertResult;
|
|
||||||
|
|
||||||
public override Playfield Playfield { get; }
|
|
||||||
public override Container Overlays { get; }
|
|
||||||
public override Container FrameStableComponents { get; }
|
|
||||||
public override IFrameStableClock FrameStableClock { get; }
|
|
||||||
internal override bool FrameStablePlayback { get; set; }
|
|
||||||
public override IReadOnlyList<Mod> Mods { get; }
|
|
||||||
|
|
||||||
public override double GameplayStartTime { get; }
|
|
||||||
public override GameplayCursorContainer Cursor { get; }
|
|
||||||
|
|
||||||
public TestDrawableRuleset()
|
|
||||||
: base(new OsuRuleset())
|
|
||||||
{
|
|
||||||
// won't compile without this.
|
|
||||||
NewResult?.Invoke(null);
|
|
||||||
RevertResult?.Invoke(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void SetReplayScore(Score replayScore) => throw new NotImplementedException();
|
|
||||||
|
|
||||||
public override void SetRecordTarget(Score score) => throw new NotImplementedException();
|
|
||||||
|
|
||||||
public override void RequestResume(Action continueResume) => throw new NotImplementedException();
|
|
||||||
|
|
||||||
public override void CancelResume() => throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class TestHitObject : HitObject
|
public class TestHitObject : HitObject
|
||||||
{
|
{
|
||||||
public TestHitObject(HitWindows hitWindows)
|
public TestHitObject(HitWindows hitWindows)
|
||||||
|
112
osu.Game.Tests/NonVisual/FirstAvailableHitWindowsTest.cs
Normal file
112
osu.Game.Tests/NonVisual/FirstAvailableHitWindowsTest.cs
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
// 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;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics.CodeAnalysis;
|
||||||
|
using NUnit.Framework;
|
||||||
|
using osu.Framework.Graphics.Containers;
|
||||||
|
using osu.Game.Rulesets.Judgements;
|
||||||
|
using osu.Game.Rulesets.Mods;
|
||||||
|
using osu.Game.Rulesets.Objects;
|
||||||
|
using osu.Game.Rulesets.Osu;
|
||||||
|
using osu.Game.Rulesets.Scoring;
|
||||||
|
using osu.Game.Rulesets.UI;
|
||||||
|
using osu.Game.Scoring;
|
||||||
|
|
||||||
|
namespace osu.Game.Tests.NonVisual
|
||||||
|
{
|
||||||
|
public class FirstAvailableHitWindowsTest
|
||||||
|
{
|
||||||
|
private TestDrawableRuleset testDrawableRuleset;
|
||||||
|
|
||||||
|
[SetUp]
|
||||||
|
public void Setup()
|
||||||
|
{
|
||||||
|
testDrawableRuleset = new TestDrawableRuleset();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestResultIfOnlyParentHitWindowIsEmpty()
|
||||||
|
{
|
||||||
|
var testObject = new TestHitObject(HitWindows.Empty);
|
||||||
|
HitObject nested = new TestHitObject(new HitWindows());
|
||||||
|
testObject.AddNested(nested);
|
||||||
|
testDrawableRuleset.HitObjects = new List<HitObject> { testObject };
|
||||||
|
|
||||||
|
Assert.AreSame(testDrawableRuleset.FirstAvailableHitWindows, nested.HitWindows);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestResultIfParentHitWindowsIsNotEmpty()
|
||||||
|
{
|
||||||
|
var testObject = new TestHitObject(new HitWindows());
|
||||||
|
HitObject nested = new TestHitObject(new HitWindows());
|
||||||
|
testObject.AddNested(nested);
|
||||||
|
testDrawableRuleset.HitObjects = new List<HitObject> { testObject };
|
||||||
|
|
||||||
|
Assert.AreSame(testDrawableRuleset.FirstAvailableHitWindows, testObject.HitWindows);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestResultIfParentAndChildHitWindowsAreEmpty()
|
||||||
|
{
|
||||||
|
var firstObject = new TestHitObject(HitWindows.Empty);
|
||||||
|
HitObject nested = new TestHitObject(HitWindows.Empty);
|
||||||
|
firstObject.AddNested(nested);
|
||||||
|
|
||||||
|
var secondObject = new TestHitObject(new HitWindows());
|
||||||
|
testDrawableRuleset.HitObjects = new List<HitObject> { firstObject, secondObject };
|
||||||
|
|
||||||
|
Assert.AreSame(testDrawableRuleset.FirstAvailableHitWindows, secondObject.HitWindows);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestResultIfAllHitWindowsAreEmpty()
|
||||||
|
{
|
||||||
|
var firstObject = new TestHitObject(HitWindows.Empty);
|
||||||
|
HitObject nested = new TestHitObject(HitWindows.Empty);
|
||||||
|
firstObject.AddNested(nested);
|
||||||
|
|
||||||
|
testDrawableRuleset.HitObjects = new List<HitObject> { firstObject };
|
||||||
|
|
||||||
|
Assert.IsNull(testDrawableRuleset.FirstAvailableHitWindows);
|
||||||
|
}
|
||||||
|
|
||||||
|
[SuppressMessage("ReSharper", "UnassignedGetOnlyAutoProperty")]
|
||||||
|
private class TestDrawableRuleset : DrawableRuleset
|
||||||
|
{
|
||||||
|
public List<HitObject> HitObjects;
|
||||||
|
public override IEnumerable<HitObject> Objects => HitObjects;
|
||||||
|
|
||||||
|
public override event Action<JudgementResult> NewResult;
|
||||||
|
public override event Action<JudgementResult> RevertResult;
|
||||||
|
|
||||||
|
public override Playfield Playfield { get; }
|
||||||
|
public override Container Overlays { get; }
|
||||||
|
public override Container FrameStableComponents { get; }
|
||||||
|
public override IFrameStableClock FrameStableClock { get; }
|
||||||
|
internal override bool FrameStablePlayback { get; set; }
|
||||||
|
public override IReadOnlyList<Mod> Mods { get; }
|
||||||
|
|
||||||
|
public override double GameplayStartTime { get; }
|
||||||
|
public override GameplayCursorContainer Cursor { get; }
|
||||||
|
|
||||||
|
public TestDrawableRuleset()
|
||||||
|
: base(new OsuRuleset())
|
||||||
|
{
|
||||||
|
// won't compile without this.
|
||||||
|
NewResult?.Invoke(null);
|
||||||
|
RevertResult?.Invoke(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void SetReplayScore(Score replayScore) => throw new NotImplementedException();
|
||||||
|
|
||||||
|
public override void SetRecordTarget(Score score) => throw new NotImplementedException();
|
||||||
|
|
||||||
|
public override void RequestResume(Action continueResume) => throw new NotImplementedException();
|
||||||
|
|
||||||
|
public override void CancelResume() => throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user