PKHeX/PKHeX.Core/Util/RandUtil.cs

42 lines
1.5 KiB
C#
Raw Normal View History

2016-07-09 22:30:12 +00:00
using System;
using System.Collections.Generic;
using System.Threading;
2016-07-09 22:30:12 +00:00
namespace PKHeX.Core
2016-07-09 22:30:12 +00:00
{
public static partial class Util
2016-07-09 22:30:12 +00:00
{
// Multithread safe rand, ha
public static Random Rand => _local.Value;
2018-07-29 20:27:48 +00:00
2020-12-22 01:17:56 +00:00
private static readonly ThreadLocal<Random> _local = new(() => new Random());
public static uint Rand32() => Rand32(Rand);
public static uint Rand32(Random rnd) => (uint)rnd.Next(1 << 30) << 2 | (uint)rnd.Next(1 << 2);
/// <summary>
/// Shuffles the order of items within a collection of items.
/// </summary>
/// <typeparam name="T">Item type</typeparam>
/// <param name="items">Item collection</param>
public static void Shuffle<T>(IList<T> items) => Shuffle(items, 0, items.Count, Rand);
/// <summary>
/// Shuffles the order of items within a collection of items.
/// </summary>
/// <typeparam name="T">Item type</typeparam>
/// <param name="items">Item collection</param>
/// <param name="start">Starting position</param>
/// <param name="end">Ending position</param>
/// <param name="rnd">RNG object to use</param>
public static void Shuffle<T>(IList<T> items, int start, int end, Random rnd)
2016-07-09 22:30:12 +00:00
{
for (int i = start; i < end; i++)
2016-07-09 22:30:12 +00:00
{
int index = i + rnd.Next(end - i);
(items[index], items[i]) = (items[i], items[index]);
2016-07-09 22:30:12 +00:00
}
}
}
}