1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:47:26 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Mods/ManiaModRandom.cs

34 lines
1.2 KiB
C#
Raw Normal View History

// 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
using System.Linq;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics.Sprites;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
using osu.Game.Beatmaps;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics;
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
{
public class ManiaModRandom : Mod, IApplicableToBeatmap
2018-04-13 17:19:50 +08:00
{
public override string Name => "Random";
public override string Acronym => "RD";
public override ModType Type => ModType.Conversion;
2020-01-14 21:22:00 +08:00
public override IconUsage? Icon => OsuIcon.Dice;
2018-04-13 17:19:50 +08:00
public override string Description => @"Shuffle around the keys!";
public override double ScoreMultiplier => 1;
2018-04-13 17:19:50 +08:00
public void ApplyToBeatmap(IBeatmap beatmap)
2018-04-13 17:19:50 +08:00
{
var availableColumns = ((ManiaBeatmap)beatmap).TotalColumns;
2018-04-13 17:19:50 +08:00
var shuffledColumns = Enumerable.Range(0, availableColumns).OrderBy(item => RNG.Next()).ToList();
beatmap.HitObjects.OfType<ManiaHitObject>().ForEach(h => h.Column = shuffledColumns[h.Column]);
2018-04-13 17:19:50 +08:00
}
}
}