using System; using System.Collections.Generic; using System.Linq; namespace pkNX.Randomization { public static class Util { public static Random Random { get; private set; } = new Random(); public static void ReseedRand(int seed) { Random = new Random(seed); Structures.Util.Rand = Random; } public static uint Rand32() => (uint)Random.Next(1 << 30) << 2 | (uint)Random.Next(1 << 2); public static void Shuffle(IList array) { int n = array.Count; for (int i = 0; i < n; i++) { int r = i + (int)(Random.NextDouble() * (n - i)); var t = array[r]; array[r] = array[i]; array[i] = t; } } public static int ToInt32(string value) { string val = value?.Replace(" ", "").Replace("_", "").Trim(); return string.IsNullOrWhiteSpace(val) ? 0 : int.Parse(val); } public static uint ToUInt32(string value) { string val = value?.Replace(" ", "").Replace("_", "").Trim(); return string.IsNullOrWhiteSpace(val) ? 0 : uint.Parse(val); } public static uint GetHexValue(string s) { string str = GetOnlyHex(s); return string.IsNullOrWhiteSpace(str) ? 0 : Convert.ToUInt32(str, 16); } private static bool IsHex(char c) => (c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'); private static string TitleCase(string word) => char.ToUpper(word[0]) + word.Substring(1, word.Length - 1).ToLower(); /// /// Filters the string down to only valid hex characters, returning a new string. /// /// Input string to filter public static string GetOnlyHex(string str) => string.IsNullOrWhiteSpace(str) ? string.Empty : string.Concat(str.Where(IsHex)); /// /// Returns a new string with each word converted to its appropriate title case. /// /// Input string to modify public static string ToTitleCase(string str) => string.IsNullOrWhiteSpace(str) ? string.Empty : string.Join(" ", str.Split(' ').Select(TitleCase)); } }