2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-09-18 21:32:49 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-11-23 15:00:33 +08:00
|
|
|
|
using System.ComponentModel;
|
2017-09-18 21:32:49 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Overlays.Mods;
|
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
using osu.Game.Screens.Play.HUD;
|
|
|
|
|
using OpenTK;
|
2017-12-21 02:05:23 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.Rulesets.Osu;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2018-01-03 12:42:09 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Mods;
|
2017-12-21 02:05:23 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2017-09-18 21:32:49 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
2017-11-23 15:00:33 +08:00
|
|
|
|
[Description("mod select and icon display")]
|
2017-12-20 20:47:45 +08:00
|
|
|
|
public class TestCaseMods : OsuTestCase
|
2017-09-18 21:32:49 +08:00
|
|
|
|
{
|
2017-12-21 02:05:23 +08:00
|
|
|
|
private const string unranked_suffix = " (Unranked)";
|
2017-09-18 21:32:49 +08:00
|
|
|
|
|
|
|
|
|
private RulesetStore rulesets;
|
2017-12-21 02:05:23 +08:00
|
|
|
|
private ModDisplay modDisplay;
|
|
|
|
|
private TestModSelectOverlay modSelect;
|
2017-09-18 21:32:49 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(RulesetStore rulesets)
|
|
|
|
|
{
|
|
|
|
|
this.rulesets = rulesets;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2017-12-21 02:05:23 +08:00
|
|
|
|
Add(modSelect = new TestModSelectOverlay
|
2017-09-18 21:32:49 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Add(modDisplay = new ModDisplay
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Position = new Vector2(0, 25),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modDisplay.Current.BindTo(modSelect.SelectedMods);
|
|
|
|
|
|
|
|
|
|
AddStep("Toggle", modSelect.ToggleVisibility);
|
2017-12-21 02:05:23 +08:00
|
|
|
|
AddStep("Hide", modSelect.Hide);
|
|
|
|
|
AddStep("Show", modSelect.Show);
|
|
|
|
|
|
|
|
|
|
foreach (var rulesetInfo in rulesets.AvailableRulesets)
|
|
|
|
|
{
|
|
|
|
|
Ruleset ruleset = rulesetInfo.CreateInstance();
|
|
|
|
|
AddStep($"switch to {ruleset.Description}", () => modSelect.Ruleset.Value = rulesetInfo);
|
|
|
|
|
|
|
|
|
|
switch (ruleset) {
|
|
|
|
|
case OsuRuleset or:
|
|
|
|
|
testOsuMods(or);
|
|
|
|
|
break;
|
2018-01-03 12:42:09 +08:00
|
|
|
|
case ManiaRuleset mr:
|
|
|
|
|
testManiaMods(mr);
|
|
|
|
|
break;
|
2017-12-21 02:05:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void testOsuMods(OsuRuleset ruleset)
|
|
|
|
|
{
|
|
|
|
|
var easierMods = ruleset.GetModsFor(ModType.DifficultyReduction);
|
|
|
|
|
var harderMods = ruleset.GetModsFor(ModType.DifficultyIncrease);
|
|
|
|
|
var assistMods = ruleset.GetModsFor(ModType.Special);
|
|
|
|
|
|
|
|
|
|
var noFailMod = easierMods.FirstOrDefault(m => m is OsuModNoFail);
|
|
|
|
|
var hiddenMod = harderMods.FirstOrDefault(m => m is OsuModHidden);
|
2018-01-02 15:55:15 +08:00
|
|
|
|
|
2017-12-21 02:05:23 +08:00
|
|
|
|
var doubleTimeMod = harderMods.OfType<MultiMod>().FirstOrDefault(m => m.Mods.Any(a => a is OsuModDoubleTime));
|
2018-01-02 15:55:15 +08:00
|
|
|
|
|
2018-01-02 15:58:11 +08:00
|
|
|
|
var autoPilotMod = assistMods.FirstOrDefault(m => m is OsuModAutopilot);
|
|
|
|
|
|
2018-01-02 15:55:15 +08:00
|
|
|
|
var easy = easierMods.FirstOrDefault(m => m is OsuModEasy);
|
|
|
|
|
var hardRock = harderMods.FirstOrDefault(m => m is OsuModHardRock);
|
2017-12-21 02:05:23 +08:00
|
|
|
|
|
|
|
|
|
testSingleMod(noFailMod);
|
|
|
|
|
testMultiMod(doubleTimeMod);
|
2018-01-02 15:55:15 +08:00
|
|
|
|
testIncompatibleMods(easy, hardRock);
|
2017-12-21 02:05:23 +08:00
|
|
|
|
testDeselectAll(easierMods.Where(m => !(m is MultiMod)));
|
|
|
|
|
testMultiplierTextColour(noFailMod, modSelect.LowMultiplierColour);
|
|
|
|
|
testMultiplierTextColour(hiddenMod, modSelect.HighMultiplierColour);
|
2018-01-02 15:55:15 +08:00
|
|
|
|
|
2018-01-02 15:58:11 +08:00
|
|
|
|
testUnimplmentedMod(autoPilotMod);
|
2018-01-03 12:42:09 +08:00
|
|
|
|
}
|
2018-01-02 15:58:11 +08:00
|
|
|
|
|
2018-01-03 12:42:09 +08:00
|
|
|
|
private void testManiaMods(ManiaRuleset ruleset)
|
|
|
|
|
{
|
|
|
|
|
testMultiplierTextUnranked(ruleset.GetModsFor(ModType.Special).First(m => m is ManiaModRandom));
|
2017-12-21 02:05:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void testSingleMod(Mod mod)
|
|
|
|
|
{
|
|
|
|
|
selectNext(mod);
|
|
|
|
|
checkSelected(mod);
|
|
|
|
|
|
|
|
|
|
selectPrevious(mod);
|
|
|
|
|
checkNotSelected(mod);
|
|
|
|
|
|
|
|
|
|
selectNext(mod);
|
|
|
|
|
selectNext(mod);
|
|
|
|
|
checkNotSelected(mod);
|
|
|
|
|
|
|
|
|
|
selectPrevious(mod);
|
|
|
|
|
selectPrevious(mod);
|
|
|
|
|
checkNotSelected(mod);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void testMultiMod(MultiMod multiMod)
|
|
|
|
|
{
|
|
|
|
|
foreach (var mod in multiMod.Mods)
|
|
|
|
|
{
|
|
|
|
|
selectNext(mod);
|
|
|
|
|
checkSelected(mod);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int index = multiMod.Mods.Length - 1; index >= 0; index--)
|
|
|
|
|
selectPrevious(multiMod.Mods[index]);
|
|
|
|
|
|
|
|
|
|
foreach (var mod in multiMod.Mods)
|
|
|
|
|
checkNotSelected(mod);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-02 15:58:11 +08:00
|
|
|
|
private void testUnimplmentedMod(Mod mod)
|
|
|
|
|
{
|
|
|
|
|
selectNext(mod);
|
|
|
|
|
checkNotSelected(mod);
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 02:05:23 +08:00
|
|
|
|
private void testIncompatibleMods(Mod modA, Mod modB)
|
|
|
|
|
{
|
|
|
|
|
selectNext(modA);
|
|
|
|
|
checkSelected(modA);
|
|
|
|
|
checkNotSelected(modB);
|
|
|
|
|
|
|
|
|
|
selectNext(modB);
|
|
|
|
|
checkSelected(modB);
|
|
|
|
|
checkNotSelected(modA);
|
|
|
|
|
|
|
|
|
|
selectPrevious(modB);
|
|
|
|
|
checkNotSelected(modA);
|
|
|
|
|
checkNotSelected(modB);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void testDeselectAll(IEnumerable<Mod> mods)
|
|
|
|
|
{
|
|
|
|
|
foreach (var mod in mods)
|
|
|
|
|
selectNext(mod);
|
|
|
|
|
|
|
|
|
|
AddAssert("check for any selection", () => modSelect.SelectedMods.Value.Any());
|
|
|
|
|
AddStep("deselect all", modSelect.DeselectAllButton.Action.Invoke);
|
|
|
|
|
AddAssert("check for no selection", () => !modSelect.SelectedMods.Value.Any());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void testMultiplierTextColour(Mod mod, Color4 colour)
|
|
|
|
|
{
|
|
|
|
|
checkLabelColor(Color4.White);
|
|
|
|
|
selectNext(mod);
|
|
|
|
|
AddWaitStep(1, "wait for changing colour");
|
|
|
|
|
checkLabelColor(colour);
|
|
|
|
|
selectPrevious(mod);
|
|
|
|
|
AddWaitStep(1, "wait for changing colour");
|
|
|
|
|
checkLabelColor(Color4.White);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void testMultiplierTextUnranked(Mod mod)
|
|
|
|
|
{
|
|
|
|
|
AddAssert("check for ranked", () => !modSelect.MultiplierLabel.Text.EndsWith(unranked_suffix));
|
|
|
|
|
selectNext(mod);
|
|
|
|
|
AddAssert("check for unranked", () => modSelect.MultiplierLabel.Text.EndsWith(unranked_suffix));
|
|
|
|
|
selectPrevious(mod);
|
|
|
|
|
AddAssert("check for ranked", () => !modSelect.MultiplierLabel.Text.EndsWith(unranked_suffix));
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-02 15:55:15 +08:00
|
|
|
|
private void selectNext(Mod mod) => AddStep($"left click {mod.Name}", () => modSelect.GetModButton(mod)?.SelectNext(1));
|
2017-12-21 02:05:23 +08:00
|
|
|
|
|
2018-01-02 15:55:15 +08:00
|
|
|
|
private void selectPrevious(Mod mod) => AddStep($"right click {mod.Name}", () => modSelect.GetModButton(mod)?.SelectNext(-1));
|
2017-12-21 02:05:23 +08:00
|
|
|
|
|
|
|
|
|
private void checkSelected(Mod mod)
|
|
|
|
|
{
|
|
|
|
|
AddAssert($"check {mod.Name} is selected", () =>
|
|
|
|
|
{
|
|
|
|
|
var button = modSelect.GetModButton(mod);
|
|
|
|
|
return modSelect.SelectedMods.Value.Single(m => m.Name == mod.Name) != null && button.SelectedMod.GetType() == mod.GetType() && button.Selected;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void checkNotSelected(Mod mod)
|
|
|
|
|
{
|
|
|
|
|
AddAssert($"check {mod.Name} is not selected", () =>
|
|
|
|
|
{
|
|
|
|
|
var button = modSelect.GetModButton(mod);
|
|
|
|
|
return modSelect.SelectedMods.Value.All(m => m.GetType() != mod.GetType()) && button.SelectedMod?.GetType() != mod.GetType();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void checkLabelColor(Color4 color) => AddAssert("check label has expected colour", () => modSelect.MultiplierLabel.Colour.AverageColour == color);
|
|
|
|
|
|
|
|
|
|
private class TestModSelectOverlay : ModSelectOverlay
|
|
|
|
|
{
|
|
|
|
|
public ModButton GetModButton(Mod mod)
|
|
|
|
|
{
|
|
|
|
|
var section = ModSectionsContainer.Children.Single(s => s.ModType == mod.Type);
|
|
|
|
|
return section.ButtonsContainer.OfType<ModButton>().Single(b => b.Mods.Any(m => m.GetType() == mod.GetType()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public new OsuSpriteText MultiplierLabel => base.MultiplierLabel;
|
|
|
|
|
public new TriangleButton DeselectAllButton => base.DeselectAllButton;
|
2017-09-18 21:32:49 +08:00
|
|
|
|
|
2017-12-21 02:05:23 +08:00
|
|
|
|
public new Color4 LowMultiplierColour => base.LowMultiplierColour;
|
|
|
|
|
public new Color4 HighMultiplierColour => base.HighMultiplierColour;
|
2017-09-18 21:32:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|