1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 08:07:26 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Beatmaps/CatchBeatmapProcessor.cs

120 lines
4.7 KiB
C#
Raw Normal View History

2018-04-13 17:19:50 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Rulesets.Catch.UI;
using osu.Game.Rulesets.Objects.Types;
2018-11-20 15:51:59 +08:00
using osuTK;
using osu.Game.Rulesets.Catch.MathUtils;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Catch.Beatmaps
{
public class CatchBeatmapProcessor : BeatmapProcessor
2018-04-13 17:19:50 +08:00
{
public const int RNG_SEED = 1337;
public CatchBeatmapProcessor(IBeatmap beatmap)
: base(beatmap)
2018-04-13 17:19:50 +08:00
{
}
public override void PostProcess()
{
base.PostProcess();
2018-04-13 17:19:50 +08:00
applyPositionOffsets();
2018-06-29 12:52:13 +08:00
initialiseHyperDash((List<CatchHitObject>)Beatmap.HitObjects);
2018-04-13 17:19:50 +08:00
int index = 0;
foreach (var obj in Beatmap.HitObjects.OfType<CatchHitObject>())
{
2018-04-13 17:19:50 +08:00
obj.IndexInBeatmap = index++;
if (obj.LastInCombo && obj.NestedHitObjects.LastOrDefault() is IHasComboInformation lastNested)
lastNested.LastInCombo = true;
}
2018-04-13 17:19:50 +08:00
}
private void applyPositionOffsets()
{
var rng = new FastRandom(RNG_SEED);
// todo: HardRock displacement should be applied here
foreach (var obj in Beatmap.HitObjects)
{
switch (obj)
{
case BananaShower bananaShower:
2018-06-29 14:01:33 +08:00
foreach (var banana in bananaShower.NestedHitObjects.OfType<Banana>())
{
2018-06-29 14:01:33 +08:00
banana.X = (float)rng.NextDouble();
rng.Next(); // osu!stable retrieved a random banana type
rng.Next(); // osu!stable retrieved a random banana rotation
2018-06-13 20:10:54 +08:00
rng.Next(); // osu!stable retrieved a random banana colour
}
break;
case JuiceStream juiceStream:
foreach (var nested in juiceStream.NestedHitObjects)
{
2018-06-20 17:29:23 +08:00
var hitObject = (CatchHitObject)nested;
if (hitObject is TinyDroplet)
hitObject.X += rng.Next(-20, 20) / CatchPlayfield.BASE_WIDTH;
else if (hitObject is Droplet)
2018-06-13 18:52:04 +08:00
rng.Next(); // osu!stable retrieved a random droplet rotation
2018-06-20 17:29:23 +08:00
hitObject.X = MathHelper.Clamp(hitObject.X, 0, 1);
}
break;
}
}
}
2018-04-13 17:19:50 +08:00
private void initialiseHyperDash(List<CatchHitObject> objects)
{
List<CatchHitObject> objectWithDroplets = new List<CatchHitObject>();
2018-04-13 17:19:50 +08:00
foreach (var currentObject in objects)
2018-04-13 17:19:50 +08:00
{
if (currentObject is Fruit)
objectWithDroplets.Add(currentObject);
if (currentObject is JuiceStream)
foreach (var currentJuiceElement in currentObject.NestedHitObjects)
if (!(currentJuiceElement is TinyDroplet))
objectWithDroplets.Add((CatchHitObject)currentJuiceElement);
}
2018-04-13 17:19:50 +08:00
objectWithDroplets.Sort((h1, h2) => h1.StartTime.CompareTo(h2.StartTime));
double halfCatcherWidth = CatcherArea.GetCatcherSize(Beatmap.BeatmapInfo.BaseDifficulty) / 2;
int lastDirection = 0;
double lastExcess = halfCatcherWidth;
2018-04-13 17:19:50 +08:00
for (int i = 0; i < objectWithDroplets.Count - 1; i++)
{
CatchHitObject currentObject = objectWithDroplets[i];
CatchHitObject nextObject = objectWithDroplets[i + 1];
2018-04-13 17:19:50 +08:00
int thisDirection = nextObject.X > currentObject.X ? 1 : -1;
double timeToNext = nextObject.StartTime - currentObject.StartTime;
2018-04-13 17:19:50 +08:00
double distanceToNext = Math.Abs(nextObject.X - currentObject.X) - (lastDirection == thisDirection ? lastExcess : halfCatcherWidth);
float distanceToHyper = (float)(timeToNext * CatcherArea.Catcher.BASE_SPEED - distanceToNext);
if (distanceToHyper < 0)
2018-04-13 17:19:50 +08:00
{
currentObject.HyperDashTarget = nextObject;
lastExcess = halfCatcherWidth;
}
else
{
currentObject.DistanceToHyperDash = distanceToHyper;
lastExcess = MathHelper.Clamp(distanceToHyper, 0, halfCatcherWidth);
2018-04-13 17:19:50 +08:00
}
lastDirection = thisDirection;
}
}
}
}