mirror of
https://github.com/ppy/osu.git
synced 2024-12-16 10:23:04 +08:00
29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
using osu.Game.Rulesets.Mods;
|
|
using System.Linq;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Mods
|
|
{
|
|
public class ManiaModMirror : Mod, IApplicableToBeatmap<ManiaHitObject>
|
|
{
|
|
public override string Name => "Mirror";
|
|
public override string Acronym => "MR";
|
|
public override ModType Type => ModType.Conversion;
|
|
public override double ScoreMultiplier => 1;
|
|
public override bool Ranked => true;
|
|
|
|
public void ApplyToBeatmap(Beatmap<ManiaHitObject> beatmap)
|
|
{
|
|
var availableColumns = ((ManiaBeatmap)beatmap).TotalColumns;
|
|
|
|
beatmap.HitObjects.OfType<ManiaHitObject>().ForEach(h => h.Column = availableColumns - 1 - h.Column);
|
|
}
|
|
}
|
|
}
|