2021-04-14 15:52:29 +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 osu.Framework.Bindables;
|
2021-04-15 13:40:03 +08:00
|
|
|
using osu.Framework.Graphics;
|
2021-04-14 15:52:29 +08:00
|
|
|
using osu.Game.Configuration;
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2021-04-15 12:06:52 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
2021-04-14 15:52:29 +08:00
|
|
|
using osu.Game.Rulesets.UI;
|
2021-04-15 12:06:52 +08:00
|
|
|
using osuTK;
|
2021-04-14 15:52:29 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
|
|
{
|
2021-04-15 12:06:52 +08:00
|
|
|
public class OsuModBarrelRoll : Mod, IUpdatableByPlayfield, IApplicableToDrawableRuleset<OsuHitObject>
|
2021-04-14 15:52:29 +08:00
|
|
|
{
|
2021-04-15 12:15:52 +08:00
|
|
|
[SettingSource("Roll speed", "Rotations per minute")]
|
|
|
|
public BindableNumber<double> SpinSpeed { get; } = new BindableDouble(0.5)
|
2021-04-14 15:52:29 +08:00
|
|
|
{
|
2021-04-15 12:15:52 +08:00
|
|
|
MinValue = 0.02,
|
|
|
|
MaxValue = 4,
|
|
|
|
Precision = 0.01,
|
2021-04-14 15:52:29 +08:00
|
|
|
};
|
|
|
|
|
2021-04-15 13:40:03 +08:00
|
|
|
[SettingSource("Direction", "The direction of rotation")]
|
|
|
|
public Bindable<RotationDirection> Direction { get; } = new Bindable<RotationDirection>(RotationDirection.Clockwise);
|
|
|
|
|
2021-04-14 15:52:29 +08:00
|
|
|
public override string Name => "Barrel Roll";
|
|
|
|
public override string Acronym => "BR";
|
2021-04-15 13:37:47 +08:00
|
|
|
public override string Description => "The whole playfield is on a wheel!";
|
2021-04-14 15:52:29 +08:00
|
|
|
public override double ScoreMultiplier => 1;
|
|
|
|
|
|
|
|
public void Update(Playfield playfield)
|
|
|
|
{
|
2021-04-15 13:40:03 +08:00
|
|
|
playfield.Rotation = (Direction.Value == RotationDirection.CounterClockwise ? -1 : 1) * 360 * (float)(playfield.Time.Current / 60000 * SpinSpeed.Value);
|
2021-04-14 15:52:29 +08:00
|
|
|
}
|
2021-04-15 12:06:52 +08:00
|
|
|
|
|
|
|
public void ApplyToDrawableRuleset(DrawableRuleset<OsuHitObject> drawableRuleset)
|
|
|
|
{
|
|
|
|
// scale the playfield to allow all hitobjects to stay within the visible region.
|
|
|
|
drawableRuleset.Playfield.Scale = new Vector2(OsuPlayfield.BASE_SIZE.Y / OsuPlayfield.BASE_SIZE.X);
|
|
|
|
}
|
2021-04-14 15:52:29 +08:00
|
|
|
}
|
|
|
|
}
|