aboutsummaryrefslogtreecommitdiff
path: root/common/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/util.cpp')
-rw-r--r--common/util.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/common/util.cpp b/common/util.cpp
index cea9d3a8f0..2423cd0af0 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -157,3 +157,27 @@ int resStrLen(const char *src)
}
return num;
}
+
+RandomSource::RandomSource(uint32 seed)
+{
+ _randSeed = seed;
+}
+
+void RandomSource::setSeed(uint32 seed)
+{
+ _randSeed = seed;
+}
+
+uint RandomSource::getRandomNumber(uint max)
+{
+ /* TODO: my own random number generator */
+ _randSeed = 0xDEADBF03 * (_randSeed + 1);
+ _randSeed = (_randSeed >> 13) | (_randSeed << 19);
+ return _randSeed % (max + 1);
+}
+
+uint RandomSource::getRandomNumberRng(uint min, uint max)
+{
+ return getRandomNumber(max - min) + min;
+}
+