1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 16:47:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Mods/OsuModRepel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
2.1 KiB
C#
Raw Normal View History

2022-05-26 12:08:00 +08: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.
using System;
using System.Linq;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Sprites;
using osu.Game.Configuration;
using osu.Game.Rulesets.Osu.Utils;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.UI;
2022-05-26 12:08:00 +08:00
using osuTK;
namespace osu.Game.Rulesets.Osu.Mods
{
internal class OsuModRepel : OsuEaseHitObjectPositionsMod
{
public override string Name => "Repel";
public override string Acronym => "RP";
public override IconUsage? Icon => FontAwesome.Solid.ExpandArrowsAlt;
public override string Description => "Run away!";
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(OsuModMagnetised)).ToArray();
[SettingSource("Repulsion strength", "How strong the repulsion is.", 0)]
2022-06-08 13:00:47 +08:00
public override BindableFloat EasementStrength { get; } = new BindableFloat(0.6f)
2022-05-26 12:08:00 +08:00
{
Precision = 0.05f,
MinValue = 0.05f,
MaxValue = 1.0f,
};
2022-06-08 13:00:47 +08:00
protected override float EasementStrengthMultiplier => 0.8f;
protected override Vector2 DestinationVector
2022-05-26 12:08:00 +08:00
{
get
{
float x = Math.Clamp(2 * WorkingHitObject.X - CursorPosition.X, 0, OsuPlayfield.BASE_SIZE.X);
float y = Math.Clamp(2 * WorkingHitObject.Y - CursorPosition.Y, 0, OsuPlayfield.BASE_SIZE.Y);
if (WorkingHitObject.HitObject is Slider slider)
{
var possibleMovementBounds = OsuHitObjectGenerationUtils.CalculatePossibleMovementBounds(slider, false);
x = possibleMovementBounds.Width < 0
? x
: Math.Clamp(x, possibleMovementBounds.Left, possibleMovementBounds.Right);
y = possibleMovementBounds.Height < 0
? y
: Math.Clamp(y, possibleMovementBounds.Top, possibleMovementBounds.Bottom);
}
return new Vector2(x, y);
}
2022-05-26 12:08:00 +08:00
}
}
}