PKHeX/PKHeX.Core/Util/RandUtil.cs
Kurt e5aa39a6bb Refactoring
get language list now doesn't return new objects (or re-enumerate)
update rand usage to be inclusive for top bound, extend shuffle to
collections
remove unnecessary location overrides (already overriden in legal fetch)
2017-12-14 20:58:55 -08:00

31 lines
854 B
C#

using System;
using System.Collections.Generic;
namespace PKHeX.Core
{
public partial class Util
{
public static readonly Random Rand = new Random();
public static uint Rand32()
{
return (uint)Rand.Next(1 << 30) << 2 | (uint)Rand.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)
{
int n = items.Count;
for (int i = 0; i < n; i++)
{
int r = i + Rand.Next(n-i);
T t = items[r];
items[r] = items[i];
items[i] = t;
}
}
}
}