2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Rulesets;
|
2018-05-26 13:46:05 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
|
|
|
|
[Description("Player instantiated with an autoplay mod.")]
|
|
|
|
|
public class TestCaseAutoplay : TestCasePlayer
|
|
|
|
|
{
|
2018-06-06 19:21:47 +08:00
|
|
|
|
protected override Player CreatePlayer(Ruleset ruleset)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-06-06 19:21:47 +08:00
|
|
|
|
Beatmap.Value.Mods.Value = Beatmap.Value.Mods.Value.Concat(new[] { ruleset.GetAutoplayMod() });
|
2018-05-26 13:46:05 +08:00
|
|
|
|
return new ScoreAccessiblePlayer
|
|
|
|
|
{
|
|
|
|
|
AllowPause = false,
|
|
|
|
|
AllowLeadIn = false,
|
|
|
|
|
AllowResults = false,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool ContinueCondition(Player player) => base.ContinueCondition(player) && ((ScoreAccessiblePlayer)player).ScoreProcessor.TotalScore > 0;
|
|
|
|
|
|
|
|
|
|
private class ScoreAccessiblePlayer : Player
|
|
|
|
|
{
|
|
|
|
|
public new ScoreProcessor ScoreProcessor => base.ScoreProcessor;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|