mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:47:29 +08:00
51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using osu.Framework.Bindables;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.Utils;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
{
|
|
public class OsuModMirror : ModMirror, IApplicableToHitObject
|
|
{
|
|
public override string Description => "Flip objects on the chosen axes.";
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModHardRock) };
|
|
|
|
[SettingSource("Mirrored axes", "Choose which axes objects are mirrored over.")]
|
|
public Bindable<MirrorType> Reflection { get; } = new Bindable<MirrorType>();
|
|
|
|
public void ApplyToHitObject(HitObject hitObject)
|
|
{
|
|
var osuObject = (OsuHitObject)hitObject;
|
|
|
|
switch (Reflection.Value)
|
|
{
|
|
case MirrorType.Horizontal:
|
|
OsuHitObjectGenerationUtils.ReflectHorizontally(osuObject);
|
|
break;
|
|
|
|
case MirrorType.Vertical:
|
|
OsuHitObjectGenerationUtils.ReflectVertically(osuObject);
|
|
break;
|
|
|
|
case MirrorType.Both:
|
|
OsuHitObjectGenerationUtils.ReflectHorizontally(osuObject);
|
|
OsuHitObjectGenerationUtils.ReflectVertically(osuObject);
|
|
break;
|
|
}
|
|
}
|
|
|
|
public enum MirrorType
|
|
{
|
|
Horizontal,
|
|
Vertical,
|
|
Both
|
|
}
|
|
}
|
|
}
|