2019-01-24 16:43:03 +08:00
|
|
|
// 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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-04-21 16:33:20 +08:00
|
|
|
using System;
|
2021-02-01 00:19:07 +08:00
|
|
|
using System.Collections.Generic;
|
2019-03-27 18:29:27 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2022-08-11 03:54:48 +08:00
|
|
|
using osu.Framework.Localisation;
|
2017-04-21 16:33:20 +08:00
|
|
|
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
|
|
|
|
2017-04-21 16:33:20 +08:00
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2022-03-29 15:27:42 +08:00
|
|
|
public abstract class ModAutoplay : Mod, IApplicableFailOverride, ICreateReplayData
|
2017-04-21 16:33:20 +08:00
|
|
|
{
|
|
|
|
public override string Name => "Autoplay";
|
2018-11-30 16:16:00 +08:00
|
|
|
public override string Acronym => "AT";
|
2020-01-14 21:22:00 +08:00
|
|
|
public override IconUsage? Icon => OsuIcon.ModAuto;
|
2018-07-31 17:00:42 +08:00
|
|
|
public override ModType Type => ModType.Automation;
|
2022-08-11 03:54:48 +08:00
|
|
|
public override LocalisableString Description => "Watch a perfect automated play through the song.";
|
2018-05-31 11:36:37 +08:00
|
|
|
public override double ScoreMultiplier => 1;
|
2019-09-19 00:45:42 +08:00
|
|
|
|
2020-05-12 19:08:35 +08:00
|
|
|
public bool PerformFail() => false;
|
|
|
|
|
2018-10-30 19:12:06 +08:00
|
|
|
public bool RestartOnFail => false;
|
2019-09-19 00:45:42 +08:00
|
|
|
|
2022-05-05 19:37:38 +08:00
|
|
|
public override bool UserPlayable => false;
|
|
|
|
public override bool ValidForMultiplayer => false;
|
|
|
|
public override bool ValidForMultiplayerAsFreeMod => false;
|
2021-06-09 13:17:01 +08:00
|
|
|
|
2022-07-18 00:09:31 +08:00
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModCinema), typeof(ModRelax), typeof(ModFailCondition), typeof(ModNoFail), typeof(ModAdaptiveSpeed) };
|
2019-03-07 17:30:31 +08:00
|
|
|
|
|
|
|
public override bool HasImplementation => GetType().GenericTypeArguments.Length == 0;
|
|
|
|
|
2022-10-28 12:07:47 +08:00
|
|
|
public virtual ModReplayData CreateReplayData(IBeatmap beatmap, IReadOnlyList<Mod> mods) => new ModReplayData(new Replay(), new ModCreatedUser { Username = @"autoplay" });
|
2017-04-21 16:33:20 +08:00
|
|
|
}
|
2017-11-16 19:35:57 +08:00
|
|
|
}
|