mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
39 lines
1.6 KiB
C#
39 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.Linq;
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
{
|
|
public class OsuModHardRock : ModHardRock, IApplicableToHitObject
|
|
{
|
|
public override double ScoreMultiplier => 1.06;
|
|
public override bool Ranked => true;
|
|
|
|
public void ApplyToHitObject(HitObject hitObject)
|
|
{
|
|
var osuObject = (OsuHitObject)hitObject;
|
|
|
|
osuObject.Position = new Vector2(osuObject.Position.X, OsuPlayfield.BASE_SIZE.Y - osuObject.Y);
|
|
|
|
if (!(hitObject is Slider slider))
|
|
return;
|
|
|
|
slider.NestedHitObjects.OfType<SliderTick>().ForEach(h => h.Position = new Vector2(h.Position.X, OsuPlayfield.BASE_SIZE.Y - h.Position.Y));
|
|
slider.NestedHitObjects.OfType<SliderRepeat>().ForEach(h => h.Position = new Vector2(h.Position.X, OsuPlayfield.BASE_SIZE.Y - h.Position.Y));
|
|
|
|
var controlPoints = slider.Path.ControlPoints.Select(p => new PathControlPoint(p.Position.Value, p.Type.Value)).ToArray();
|
|
foreach (var point in controlPoints)
|
|
point.Position.Value = new Vector2(point.Position.Value.X, -point.Position.Value.Y);
|
|
|
|
slider.Path = new SliderPath(controlPoints, slider.Path.ExpectedDistance.Value);
|
|
}
|
|
}
|
|
}
|