1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Mods/ManiaKeyMod.cs

45 lines
1.5 KiB
C#
Raw Normal View History

// 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
2018-06-06 15:20:17 +08:00
using System;
using System.Linq;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Mania.Beatmaps;
using osu.Game.Rulesets.Mods;
namespace osu.Game.Rulesets.Mania.Mods
{
public abstract class ManiaKeyMod : Mod, IApplicableToBeatmapConverter
2018-04-13 17:19:50 +08:00
{
public override string Acronym => Name;
2018-04-13 17:19:50 +08:00
public abstract int KeyCount { get; }
public override ModType Type => ModType.Conversion;
2018-04-13 17:19:50 +08:00
public override double ScoreMultiplier => 1; // TODO: Implement the mania key mod score multiplier
public void ApplyToBeatmapConverter(IBeatmapConverter beatmapConverter)
2018-04-13 17:19:50 +08:00
{
var mbc = (ManiaBeatmapConverter)beatmapConverter;
// Although this can work, for now let's not allow keymods for mania-specific beatmaps
if (mbc.IsForCurrentRuleset)
return;
mbc.TargetColumns = KeyCount;
}
2018-06-06 15:20:17 +08:00
public override Type[] IncompatibleMods => new[]
{
typeof(ManiaModKey1),
typeof(ManiaModKey2),
typeof(ManiaModKey3),
typeof(ManiaModKey4),
typeof(ManiaModKey5),
typeof(ManiaModKey6),
typeof(ManiaModKey7),
typeof(ManiaModKey8),
typeof(ManiaModKey9),
2020-10-14 17:28:19 +08:00
typeof(ManiaModKey10),
2018-06-06 15:20:17 +08:00
}.Except(new[] { GetType() }).ToArray();
2018-04-13 17:19:50 +08:00
}
}