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;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Graphics;
|
2018-11-28 16:20:37 +08:00
|
|
|
using osu.Game.Replays;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-11-28 15:12:57 +08:00
|
|
|
using osu.Game.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2018-07-04 11:40:55 +08:00
|
|
|
public abstract class ModAutoplay<T> : ModAutoplay, IApplicableToRulesetContainer<T>
|
2018-04-13 17:19:50 +08:00
|
|
|
where T : HitObject
|
|
|
|
{
|
2018-11-28 17:45:17 +08:00
|
|
|
protected virtual Score CreateReplayScore(Beatmap<T> beatmap) => new Score { Replay = new Replay() };
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
public override bool HasImplementation => GetType().GenericTypeArguments.Length == 0;
|
|
|
|
|
|
|
|
public virtual void ApplyToRulesetContainer(RulesetContainer<T> rulesetContainer) => rulesetContainer.SetReplay(CreateReplayScore(rulesetContainer.Beatmap)?.Replay);
|
|
|
|
}
|
|
|
|
|
|
|
|
public abstract class ModAutoplay : Mod, IApplicableFailOverride
|
|
|
|
{
|
|
|
|
public override string Name => "Autoplay";
|
2018-11-30 16:16:00 +08:00
|
|
|
public override string Acronym => "AT";
|
2018-04-13 17:19:50 +08:00
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_auto;
|
2018-07-31 17:00:42 +08:00
|
|
|
public override ModType Type => ModType.Automation;
|
2018-04-13 17:19:50 +08:00
|
|
|
public override string Description => "Watch a perfect automated play through the song.";
|
2018-05-31 11:36:37 +08:00
|
|
|
public override double ScoreMultiplier => 1;
|
2018-04-13 17:19:50 +08:00
|
|
|
public bool AllowFail => false;
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModRelax), typeof(ModSuddenDeath), typeof(ModNoFail) };
|
|
|
|
}
|
|
|
|
}
|