2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
2018-03-08 17:35:20 +01:00
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using System.Linq;
|
2019-01-15 22:40:56 -05:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2018-03-08 17:35:20 +01:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Mods
|
|
|
|
|
{
|
2021-07-26 10:46:41 -04:00
|
|
|
|
public class ManiaModMirror : ModMirror, IApplicableToBeatmap
|
2018-03-08 17:35:20 +01:00
|
|
|
|
{
|
2021-04-15 14:41:10 +09:00
|
|
|
|
public override string Description => "Notes are flipped horizontally.";
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-08-01 12:35:17 +09:00
|
|
|
|
public void ApplyToBeatmap(IBeatmap beatmap)
|
2018-03-08 17:35:20 +01:00
|
|
|
|
{
|
2021-10-27 13:04:41 +09:00
|
|
|
|
int availableColumns = ((ManiaBeatmap)beatmap).TotalColumns;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-01-15 22:40:56 -05:00
|
|
|
|
beatmap.HitObjects.OfType<ManiaHitObject>().ForEach(h => h.Column = availableColumns - 1 - h.Column);
|
2018-03-08 17:35:20 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|