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