2016-07-09 22:30:12 +00:00
|
|
|
|
using System;
|
2017-12-15 04:58:55 +00:00
|
|
|
|
using System.Collections.Generic;
|
2020-01-26 05:49:52 +00:00
|
|
|
|
using System.Threading;
|
2016-07-09 22:30:12 +00:00
|
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
|
namespace PKHeX.Core
|
2016-07-09 22:30:12 +00:00
|
|
|
|
{
|
2018-05-12 19:28:48 +00:00
|
|
|
|
public static partial class Util
|
2016-07-09 22:30:12 +00:00
|
|
|
|
{
|
2020-01-26 05:49:52 +00:00
|
|
|
|
// Multithread safe rand, ha
|
|
|
|
|
public static Random Rand => _local.Value;
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2020-01-26 05:49:52 +00:00
|
|
|
|
private static readonly ThreadLocal<Random> _local = new ThreadLocal<Random>(() => 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);
|
2017-12-15 04:58:55 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Shuffles the order of items within a collection of items.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T">Item type</typeparam>
|
|
|
|
|
/// <param name="items">Item collection</param>
|
2020-01-26 05:49:52 +00:00
|
|
|
|
public static void Shuffle<T>(IList<T> items) => Shuffle(items, 0, items.Count, Rand);
|
2019-06-09 02:56:11 +00:00
|
|
|
|
|
|
|
|
|
/// <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>
|
2020-01-26 05:49:52 +00:00
|
|
|
|
/// <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
|
|
|
|
{
|
2019-06-09 02:56:11 +00:00
|
|
|
|
for (int i = start; i < end; i++)
|
2016-07-09 22:30:12 +00:00
|
|
|
|
{
|
2020-01-26 05:49:52 +00:00
|
|
|
|
int index = i + rnd.Next(end - i);
|
2019-02-07 07:28:02 +00:00
|
|
|
|
T t = items[index];
|
|
|
|
|
items[index] = items[i];
|
2017-12-15 04:58:55 +00:00
|
|
|
|
items[i] = t;
|
2016-07-09 22:30:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|