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 osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using System.Linq;
|
2019-01-16 11:40:56 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Mods
|
|
|
|
|
{
|
2019-01-16 11:40:56 +08:00
|
|
|
|
public class ManiaModMirror : Mod, IApplicableToBeatmap<ManiaHitObject>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public override string Name => "Mirror";
|
2018-11-30 16:16:00 +08:00
|
|
|
|
public override string Acronym => "MR";
|
2018-07-31 17:00:42 +08:00
|
|
|
|
public override ModType Type => ModType.Conversion;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public override double ScoreMultiplier => 1;
|
|
|
|
|
public override bool Ranked => true;
|
|
|
|
|
|
2019-01-16 11:40:56 +08:00
|
|
|
|
public void ApplyToBeatmap(Beatmap<ManiaHitObject> beatmap)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-01-16 11:40:56 +08:00
|
|
|
|
var availableColumns = ((ManiaBeatmap)beatmap).TotalColumns;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-01-16 11:40:56 +08:00
|
|
|
|
beatmap.HitObjects.OfType<ManiaHitObject>().ForEach(h => h.Column = availableColumns - 1 - h.Column);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|