2017-03-02 08:57:33 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-03-13 20:05:09 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-03-12 21:13:43 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2017-04-29 00:21:33 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Replays;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2017-03-06 17:16:21 +08:00
|
|
|
|
using System;
|
2017-08-23 14:35:31 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-03-06 17:16:21 +08:00
|
|
|
|
using System.Linq;
|
2017-08-23 15:54:06 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-08-23 14:35:31 +08:00
|
|
|
|
using OpenTK;
|
2017-12-10 00:43:30 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2017-12-27 00:25:18 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
|
using osu.Framework.Graphics;
|
2017-12-28 22:36:27 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2017-03-02 08:57:33 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
2017-03-02 08:57:33 +08:00
|
|
|
|
{
|
|
|
|
|
public class OsuModNoFail : ModNoFail
|
|
|
|
|
{
|
2017-03-06 17:16:21 +08:00
|
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot) }).ToArray();
|
2017-03-02 08:57:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class OsuModEasy : ModEasy
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-10 00:43:30 +08:00
|
|
|
|
public class OsuModHidden : ModHidden, IApplicableToDrawableHitObjects
|
2017-03-02 08:57:33 +08:00
|
|
|
|
{
|
|
|
|
|
public override string Description => @"Play with no approach circles and fading notes for a slight score advantage.";
|
|
|
|
|
public override double ScoreMultiplier => 1.06;
|
2017-12-10 00:43:30 +08:00
|
|
|
|
|
2017-12-27 00:25:18 +08:00
|
|
|
|
private const double fade_in_speed_multiplier = 0.6;
|
|
|
|
|
private const double fade_out_speed_multiplier = 0.3;
|
|
|
|
|
|
|
|
|
|
private float preEmpt => DrawableOsuHitObject.TIME_PREEMPT;
|
|
|
|
|
|
2017-12-10 00:43:30 +08:00
|
|
|
|
public void ApplyToDrawableHitObjects(IEnumerable<DrawableHitObject> drawables)
|
|
|
|
|
{
|
2017-12-27 00:25:18 +08:00
|
|
|
|
foreach (var d in drawables.OfType<DrawableOsuHitObject>())
|
2017-12-29 15:22:06 +08:00
|
|
|
|
d.ApplyCustomUpdateState += ApplyHiddenState;
|
2017-12-27 00:25:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-29 15:22:06 +08:00
|
|
|
|
protected void ApplyHiddenState(DrawableHitObject drawable, ArmedState state)
|
2017-12-27 00:25:18 +08:00
|
|
|
|
{
|
|
|
|
|
if (!(drawable is DrawableOsuHitObject d))
|
|
|
|
|
return;
|
2017-12-10 00:43:30 +08:00
|
|
|
|
|
2017-12-27 00:25:18 +08:00
|
|
|
|
var fadeInTime = d.HitObject.StartTime - preEmpt;
|
|
|
|
|
var fadeIn = d.HitObject.StartTime - preEmpt * fade_in_speed_multiplier - fadeInTime;
|
|
|
|
|
var fadeOutTime = fadeInTime + fadeIn;
|
|
|
|
|
var fadeOut = d.HitObject.StartTime - preEmpt * fade_out_speed_multiplier - fadeOutTime;
|
|
|
|
|
|
2017-12-28 22:36:27 +08:00
|
|
|
|
// new duration from completed fade in to end (before fading out)
|
|
|
|
|
var newDuration = ((d.HitObject as IHasEndTime)?.EndTime ?? d.HitObject.StartTime) - fadeOutTime;
|
|
|
|
|
|
2017-12-27 00:25:18 +08:00
|
|
|
|
d.FadeIn = fadeIn;
|
|
|
|
|
|
2017-12-28 04:12:02 +08:00
|
|
|
|
using (drawable.BeginAbsoluteSequence(fadeInTime, true))
|
2017-12-27 00:25:18 +08:00
|
|
|
|
{
|
|
|
|
|
switch (drawable)
|
|
|
|
|
{
|
|
|
|
|
case DrawableHitCircle circle:
|
|
|
|
|
circle.ApproachCircle.FadeOut();
|
2017-12-28 04:12:02 +08:00
|
|
|
|
// prolong the hitcircle long enough so misses are still possible
|
2017-12-27 00:25:18 +08:00
|
|
|
|
circle.LifetimeEnd = circle.HitObject.StartTime + Math.Max(fadeOut, circle.HitObject.HitWindowFor(HitResult.Miss));
|
2017-12-28 04:12:02 +08:00
|
|
|
|
circle.FadeIn(fadeIn).Then().FadeOut(fadeOut); // override fade in as it somehow gets cut otherwise
|
2017-12-27 00:25:18 +08:00
|
|
|
|
break;
|
|
|
|
|
case DrawableSlider slider:
|
2017-12-28 04:12:02 +08:00
|
|
|
|
using (slider.BeginAbsoluteSequence(fadeOutTime, true))
|
|
|
|
|
{
|
2017-12-28 22:36:27 +08:00
|
|
|
|
slider.Body.FadeOut(newDuration, Easing.Out);
|
2017-12-28 04:12:02 +08:00
|
|
|
|
// delay a bit less to let the sliderball fade out peacefully instead of having a hard cut
|
2017-12-28 22:36:27 +08:00
|
|
|
|
using (slider.BeginDelayedSequence(newDuration - fadeOut, true))
|
2017-12-28 04:12:02 +08:00
|
|
|
|
{
|
|
|
|
|
slider.Ball.FadeOut(fadeOut);
|
|
|
|
|
slider.Delay(fadeOut).Expire();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-27 00:25:18 +08:00
|
|
|
|
break;
|
|
|
|
|
case DrawableSpinner spinner:
|
|
|
|
|
spinner.Disc.FadeOut();
|
|
|
|
|
spinner.Ticks.FadeOut();
|
|
|
|
|
spinner.Background.FadeOut();
|
2017-12-28 04:23:56 +08:00
|
|
|
|
|
|
|
|
|
using (spinner.BeginAbsoluteSequence(fadeOutTime, true))
|
|
|
|
|
{
|
2017-12-28 22:36:27 +08:00
|
|
|
|
var sequence = spinner.Delay(newDuration).FadeOut(fadeOut);
|
2017-12-28 04:23:56 +08:00
|
|
|
|
// speed up the end sequence accordingly
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
|
|
|
|
case ArmedState.Hit:
|
|
|
|
|
sequence.ScaleTo(spinner.Scale * 1.2f, fadeOut * 2, Easing.Out);
|
|
|
|
|
break;
|
|
|
|
|
case ArmedState.Miss:
|
|
|
|
|
sequence.ScaleTo(spinner.Scale * 0.8f, fadeOut * 2, Easing.Out);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
sequence.Expire();
|
|
|
|
|
}
|
2017-12-27 00:25:18 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-10 00:43:30 +08:00
|
|
|
|
}
|
2017-03-02 08:57:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-16 19:35:57 +08:00
|
|
|
|
public class OsuModHardRock : ModHardRock, IApplicableToHitObject<OsuHitObject>
|
2017-03-02 08:57:33 +08:00
|
|
|
|
{
|
|
|
|
|
public override double ScoreMultiplier => 1.06;
|
|
|
|
|
public override bool Ranked => true;
|
2017-08-23 14:35:31 +08:00
|
|
|
|
|
2017-11-16 19:35:57 +08:00
|
|
|
|
public void ApplyToHitObject(OsuHitObject hitObject)
|
2017-08-23 14:35:31 +08:00
|
|
|
|
{
|
2017-11-16 19:35:57 +08:00
|
|
|
|
hitObject.Position = new Vector2(hitObject.Position.X, OsuPlayfield.BASE_SIZE.Y - hitObject.Y);
|
|
|
|
|
|
|
|
|
|
var slider = hitObject as Slider;
|
|
|
|
|
if (slider == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
var newControlPoints = new List<Vector2>();
|
|
|
|
|
slider.ControlPoints.ForEach(c => newControlPoints.Add(new Vector2(c.X, OsuPlayfield.BASE_SIZE.Y - c.Y)));
|
|
|
|
|
|
|
|
|
|
slider.ControlPoints = newControlPoints;
|
|
|
|
|
slider.Curve?.Calculate(); // Recalculate the slider curve
|
|
|
|
|
}
|
2017-03-02 08:57:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class OsuModSuddenDeath : ModSuddenDeath
|
|
|
|
|
{
|
2017-03-06 17:16:21 +08:00
|
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot) }).ToArray();
|
2017-03-02 08:57:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-31 00:49:06 +08:00
|
|
|
|
public class OsuModDaycore : ModDaycore
|
|
|
|
|
{
|
|
|
|
|
public override double ScoreMultiplier => 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 08:57:33 +08:00
|
|
|
|
public class OsuModDoubleTime : ModDoubleTime
|
|
|
|
|
{
|
|
|
|
|
public override double ScoreMultiplier => 1.12;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class OsuModRelax : ModRelax
|
|
|
|
|
{
|
|
|
|
|
public override string Description => "You don't need to click.\nGive your clicking/tapping finger a break from the heat of things.";
|
2017-03-06 17:16:21 +08:00
|
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot) }).ToArray();
|
2017-03-02 08:57:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class OsuModHalfTime : ModHalfTime
|
|
|
|
|
{
|
|
|
|
|
public override double ScoreMultiplier => 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class OsuModNightcore : ModNightcore
|
|
|
|
|
{
|
|
|
|
|
public override double ScoreMultiplier => 1.12;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class OsuModFlashlight : ModFlashlight
|
|
|
|
|
{
|
|
|
|
|
public override double ScoreMultiplier => 1.12;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 13:07:28 +08:00
|
|
|
|
public class OsuModPerfect : ModPerfect
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 08:57:33 +08:00
|
|
|
|
public class OsuModSpunOut : Mod
|
|
|
|
|
{
|
2017-03-06 17:28:30 +08:00
|
|
|
|
public override string Name => "Spun Out";
|
2017-08-13 23:41:13 +08:00
|
|
|
|
public override string ShortenedName => "SO";
|
2017-03-02 08:57:33 +08:00
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_spunout;
|
|
|
|
|
public override string Description => @"Spinners will be automatically completed";
|
|
|
|
|
public override double ScoreMultiplier => 0.9;
|
|
|
|
|
public override bool Ranked => true;
|
2017-03-07 16:27:55 +08:00
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay), typeof(OsuModAutopilot) };
|
2017-03-02 08:57:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class OsuModAutopilot : Mod
|
|
|
|
|
{
|
2017-03-06 17:28:30 +08:00
|
|
|
|
public override string Name => "Autopilot";
|
2017-08-13 23:41:13 +08:00
|
|
|
|
public override string ShortenedName => "AP";
|
2017-03-02 08:57:33 +08:00
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_autopilot;
|
|
|
|
|
public override string Description => @"Automatic cursor movement - just follow the rhythm.";
|
|
|
|
|
public override double ScoreMultiplier => 0;
|
|
|
|
|
public override bool Ranked => false;
|
2017-03-07 16:27:55 +08:00
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(OsuModSpunOut), typeof(ModRelax), typeof(ModSuddenDeath), typeof(ModNoFail), typeof(ModAutoplay) };
|
2017-03-06 17:16:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-13 20:05:09 +08:00
|
|
|
|
public class OsuModAutoplay : ModAutoplay<OsuHitObject>
|
2017-03-06 17:16:21 +08:00
|
|
|
|
{
|
2017-05-12 20:13:02 +08:00
|
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot), typeof(OsuModSpunOut) }).ToArray();
|
2017-03-12 21:13:43 +08:00
|
|
|
|
|
2017-03-13 20:05:09 +08:00
|
|
|
|
protected override Score CreateReplayScore(Beatmap<OsuHitObject> beatmap) => new Score
|
2017-03-12 21:13:43 +08:00
|
|
|
|
{
|
2017-04-29 02:08:48 +08:00
|
|
|
|
Replay = new OsuAutoGenerator(beatmap).Generate()
|
2017-03-13 20:05:09 +08:00
|
|
|
|
};
|
2017-03-02 08:57:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class OsuModTarget : Mod
|
|
|
|
|
{
|
2017-03-06 17:28:30 +08:00
|
|
|
|
public override string Name => "Target";
|
2017-08-13 23:41:13 +08:00
|
|
|
|
public override string ShortenedName => "TP";
|
2017-03-02 08:57:33 +08:00
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_target;
|
|
|
|
|
public override string Description => @"";
|
|
|
|
|
public override double ScoreMultiplier => 1;
|
|
|
|
|
}
|
|
|
|
|
}
|