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.Linq;
|
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
|
using osu.Framework.MathUtils;
|
2019-01-16 11:40:56 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2019-01-16 11:40:56 +08:00
|
|
|
|
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
|
|
|
|
|
{
|
2019-01-16 11:40:56 +08:00
|
|
|
|
public class ManiaModRandom : Mod, IApplicableToBeatmap<ManiaHitObject>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public override string Name => "Random";
|
2018-11-30 16:16:00 +08:00
|
|
|
|
public override string Acronym => "RD";
|
2018-07-31 17:00:42 +08:00
|
|
|
|
public override ModType Type => ModType.Conversion;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_dice;
|
|
|
|
|
public override string Description => @"Shuffle around the keys!";
|
2018-05-31 11:36:37 +08:00
|
|
|
|
public override double ScoreMultiplier => 1;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-01-16 11:40:56 +08:00
|
|
|
|
public void ApplyToBeatmap(Beatmap<ManiaHitObject> beatmap)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-01-16 11:40:56 +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();
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|