mirror of
https://github.com/ppy/osu
synced 2025-02-15 09:37:07 +00:00
34 lines
913 B
C#
34 lines
913 B
C#
using osu.Game.Beatmaps;
|
|
using osu.Game.Modes.Osu.Objects;
|
|
|
|
namespace osu.Game.Modes.Osu.Beatmaps
|
|
{
|
|
internal class OsuBeatmapProcessor : IBeatmapProcessor<OsuHitObject>
|
|
{
|
|
public void SetDefaults(OsuHitObject hitObject)
|
|
{
|
|
}
|
|
|
|
public void PostProcess(Beatmap<OsuHitObject> beatmap)
|
|
{
|
|
if ((beatmap.ComboColors?.Count ?? 0) == 0)
|
|
return;
|
|
|
|
int comboIndex = 0;
|
|
int colourIndex = 0;
|
|
|
|
foreach (var obj in beatmap.HitObjects)
|
|
{
|
|
if (obj.NewCombo)
|
|
{
|
|
comboIndex = 0;
|
|
colourIndex = (colourIndex + 1) % beatmap.ComboColors.Count;
|
|
}
|
|
|
|
obj.ComboIndex = comboIndex++;
|
|
obj.ComboColour = beatmap.ComboColors[colourIndex];
|
|
}
|
|
}
|
|
}
|
|
}
|