mirror of
https://github.com/osukey/osukey.git
synced 2025-06-05 12:57:39 +09:00
Merge pull request #14725 from bdach/fix-colour-coded-notes
Fix mania notes not updating colour coding correctly
This commit is contained in:
commit
c5da93d82d
@ -1,6 +1,7 @@
|
|||||||
// 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.Linq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
@ -13,6 +14,10 @@ using osu.Game.Rulesets.Mania.Objects;
|
|||||||
using osu.Game.Rulesets.Mania.Beatmaps;
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
||||||
using osu.Game.Rulesets.Mania.Configuration;
|
using osu.Game.Rulesets.Mania.Configuration;
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
|
using osu.Framework.Testing;
|
||||||
|
using osu.Framework.Utils;
|
||||||
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
||||||
|
using osu.Game.Rulesets.Mania.UI;
|
||||||
|
|
||||||
namespace osu.Game.Rulesets.Mania.Tests
|
namespace osu.Game.Rulesets.Mania.Tests
|
||||||
{
|
{
|
||||||
@ -22,14 +27,65 @@ namespace osu.Game.Rulesets.Mania.Tests
|
|||||||
[Resolved]
|
[Resolved]
|
||||||
private RulesetConfigCache configCache { get; set; }
|
private RulesetConfigCache configCache { get; set; }
|
||||||
|
|
||||||
private readonly Bindable<bool> configTimingBasedNoteColouring = new Bindable<bool>();
|
private Bindable<bool> configTimingBasedNoteColouring;
|
||||||
|
|
||||||
protected override void LoadComplete()
|
private ManualClock clock;
|
||||||
|
private DrawableManiaRuleset drawableRuleset;
|
||||||
|
|
||||||
|
[SetUpSteps]
|
||||||
|
public void SetUpSteps()
|
||||||
|
{
|
||||||
|
AddStep("setup hierarchy", () => Child = new Container
|
||||||
|
{
|
||||||
|
Clock = new FramedClock(clock = new ManualClock()),
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
Anchor = Anchor.Centre,
|
||||||
|
Origin = Anchor.Centre,
|
||||||
|
Children = new[]
|
||||||
|
{
|
||||||
|
drawableRuleset = (DrawableManiaRuleset)Ruleset.Value.CreateInstance().CreateDrawableRulesetWith(createTestBeatmap())
|
||||||
|
}
|
||||||
|
});
|
||||||
|
AddStep("retrieve config bindable", () =>
|
||||||
|
{
|
||||||
|
var config = (ManiaRulesetConfigManager)configCache.GetConfigFor(Ruleset.Value.CreateInstance());
|
||||||
|
configTimingBasedNoteColouring = config.GetBindable<bool>(ManiaRulesetSetting.TimingBasedNoteColouring);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestSimple()
|
||||||
|
{
|
||||||
|
AddStep("enable", () => configTimingBasedNoteColouring.Value = true);
|
||||||
|
AddStep("disable", () => configTimingBasedNoteColouring.Value = false);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestToggleOffScreen()
|
||||||
|
{
|
||||||
|
AddStep("enable", () => configTimingBasedNoteColouring.Value = true);
|
||||||
|
|
||||||
|
seekTo(10000);
|
||||||
|
AddStep("disable", () => configTimingBasedNoteColouring.Value = false);
|
||||||
|
seekTo(0);
|
||||||
|
AddAssert("all notes not coloured", () => this.ChildrenOfType<DrawableNote>().All(note => note.Colour == Colour4.White));
|
||||||
|
|
||||||
|
seekTo(10000);
|
||||||
|
AddStep("enable again", () => configTimingBasedNoteColouring.Value = true);
|
||||||
|
seekTo(0);
|
||||||
|
AddAssert("some notes coloured", () => this.ChildrenOfType<DrawableNote>().Any(note => note.Colour != Colour4.White));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void seekTo(double time)
|
||||||
|
{
|
||||||
|
AddStep($"seek to {time}", () => clock.CurrentTime = time);
|
||||||
|
AddUntilStep("wait for seek", () => Precision.AlmostEquals(drawableRuleset.FrameStableClock.CurrentTime, time, 1));
|
||||||
|
}
|
||||||
|
|
||||||
|
private ManiaBeatmap createTestBeatmap()
|
||||||
{
|
{
|
||||||
const double beat_length = 500;
|
const double beat_length = 500;
|
||||||
|
|
||||||
var ruleset = new ManiaRuleset();
|
|
||||||
|
|
||||||
var beatmap = new ManiaBeatmap(new StageDefinition { Columns = 1 })
|
var beatmap = new ManiaBeatmap(new StageDefinition { Columns = 1 })
|
||||||
{
|
{
|
||||||
HitObjects =
|
HitObjects =
|
||||||
@ -45,7 +101,7 @@ namespace osu.Game.Rulesets.Mania.Tests
|
|||||||
new Note { StartTime = beat_length }
|
new Note { StartTime = beat_length }
|
||||||
},
|
},
|
||||||
ControlPointInfo = new ControlPointInfo(),
|
ControlPointInfo = new ControlPointInfo(),
|
||||||
BeatmapInfo = { Ruleset = ruleset.RulesetInfo },
|
BeatmapInfo = { Ruleset = Ruleset.Value },
|
||||||
};
|
};
|
||||||
|
|
||||||
foreach (var note in beatmap.HitObjects)
|
foreach (var note in beatmap.HitObjects)
|
||||||
@ -57,24 +113,7 @@ namespace osu.Game.Rulesets.Mania.Tests
|
|||||||
{
|
{
|
||||||
BeatLength = beat_length
|
BeatLength = beat_length
|
||||||
});
|
});
|
||||||
|
return beatmap;
|
||||||
Child = new Container
|
|
||||||
{
|
|
||||||
Clock = new FramedClock(new ManualClock()),
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
|
||||||
Anchor = Anchor.Centre,
|
|
||||||
Origin = Anchor.Centre,
|
|
||||||
Children = new[]
|
|
||||||
{
|
|
||||||
ruleset.CreateDrawableRulesetWith(beatmap)
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var config = (ManiaRulesetConfigManager)configCache.GetConfigFor(Ruleset.Value.CreateInstance());
|
|
||||||
config.BindWith(ManiaRulesetSetting.TimingBasedNoteColouring, configTimingBasedNoteColouring);
|
|
||||||
|
|
||||||
AddStep("Enable", () => configTimingBasedNoteColouring.Value = true);
|
|
||||||
AddStep("Disable", () => configTimingBasedNoteColouring.Value = false);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -66,6 +66,12 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|||||||
StartTimeBindable.BindValueChanged(_ => updateSnapColour(), true);
|
StartTimeBindable.BindValueChanged(_ => updateSnapColour(), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void OnApply()
|
||||||
|
{
|
||||||
|
base.OnApply();
|
||||||
|
updateSnapColour();
|
||||||
|
}
|
||||||
|
|
||||||
protected override void OnDirectionChanged(ValueChangedEvent<ScrollingDirection> e)
|
protected override void OnDirectionChanged(ValueChangedEvent<ScrollingDirection> e)
|
||||||
{
|
{
|
||||||
base.OnDirectionChanged(e);
|
base.OnDirectionChanged(e);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user