2019-01-24 08:43:03 +00:00
|
|
|
|
// 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
|
|
|
|
|
2021-06-03 16:16:11 +00:00
|
|
|
|
using System;
|
2018-01-09 04:41:57 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
2022-08-10 20:09:11 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
2020-01-09 04:43:44 +00:00
|
|
|
|
using osu.Framework.Utils;
|
2019-01-16 03:40:56 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
2018-01-09 04:41:57 +00:00
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-01-09 04:41:57 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Mods
|
|
|
|
|
{
|
2020-03-23 03:09:30 +00:00
|
|
|
|
public class ManiaModRandom : ModRandom, IApplicableToBeatmap
|
2018-01-09 04:41:57 +00:00
|
|
|
|
{
|
2022-08-10 20:09:11 +00:00
|
|
|
|
public override LocalisableString Description => @"Shuffle around the keys!";
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-08-01 03:35:17 +00:00
|
|
|
|
public void ApplyToBeatmap(IBeatmap beatmap)
|
2018-01-09 04:41:57 +00:00
|
|
|
|
{
|
2021-06-03 16:16:11 +00:00
|
|
|
|
Seed.Value ??= RNG.Next();
|
|
|
|
|
var rng = new Random((int)Seed.Value);
|
|
|
|
|
|
2021-10-27 04:04:41 +00:00
|
|
|
|
int availableColumns = ((ManiaBeatmap)beatmap).TotalColumns;
|
2022-06-24 12:25:23 +00:00
|
|
|
|
var shuffledColumns = Enumerable.Range(0, availableColumns).OrderBy(_ => rng.Next()).ToList();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-01-16 03:40:56 +00:00
|
|
|
|
beatmap.HitObjects.OfType<ManiaHitObject>().ForEach(h => h.Column = shuffledColumns[h.Column]);
|
2018-01-09 04:41:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|