osu/osu.Game.Rulesets.Osu/Mods/OsuModSpunOut.cs

50 lines
1.8 KiB
C#
Raw Normal View History

// 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 09:19:50 +00:00
using System;
2020-02-08 00:59:35 +00:00
using System.Collections.Generic;
2020-02-10 06:14:04 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
2018-04-13 09:19:50 +00:00
using osu.Game.Graphics;
using osu.Game.Rulesets.Mods;
2020-02-08 00:59:35 +00:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects.Drawables;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.Osu.Mods
{
2020-02-09 06:54:46 +00:00
public class OsuModSpunOut : Mod, IApplicableToDrawableHitObjects
2018-04-13 09:19:50 +00:00
{
public override string Name => "Spun Out";
public override string Acronym => "SO";
2020-01-14 13:22:00 +00:00
public override IconUsage? Icon => OsuIcon.ModSpunout;
2020-02-09 05:33:43 +00:00
public override ModType Type => ModType.Automation;
2018-04-13 09:19:50 +00:00
public override string Description => @"Spinners will be automatically completed.";
public override double ScoreMultiplier => 0.9;
public override bool Ranked => true;
public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay), typeof(OsuModAutopilot) };
2020-02-08 00:59:35 +00:00
public void ApplyToDrawableHitObjects(IEnumerable<DrawableHitObject> drawables)
{
foreach (var hitObject in drawables)
{
if (hitObject is DrawableSpinner spinner)
{
spinner.Disc.Enabled = false;
2020-02-10 20:42:34 +00:00
spinner.OnUpdate += autoSpin;
2020-02-08 00:59:35 +00:00
}
}
}
2020-02-10 20:42:34 +00:00
private void autoSpin(Drawable drawable)
{
if (drawable is DrawableSpinner spinner)
{
if (spinner.Disc.Valid)
spinner.Disc.Rotate(180 / MathF.PI * (float)spinner.Clock.ElapsedFrameTime * 0.03f);
2020-02-10 20:42:34 +00:00
if (!spinner.SpmCounter.IsPresent)
spinner.SpmCounter.FadeIn(spinner.HitObject.TimeFadeIn);
}
}
2018-04-13 09:19:50 +00:00
}
}