[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
[122] | 4 | |
---|
[109] | 5 | #include "nonstd.h" //LONGLONG |
---|
| 6 | #include <time.h> //time() |
---|
[324] | 7 | #include <stdint.h> //uintptr_t |
---|
[109] | 8 | #ifdef MULTITHREADED |
---|
[167] | 9 | #include "threads.h" |
---|
[109] | 10 | #endif |
---|
| 11 | #ifdef LINUX |
---|
[167] | 12 | #include <unistd.h> |
---|
| 13 | #include <sys/stat.h> |
---|
| 14 | #include <fcntl.h> |
---|
[109] | 15 | #endif |
---|
[167] | 16 | #ifdef _WIN32 |
---|
| 17 | #define _WINSOCKAPI_ //http://stackoverflow.com/questions/1372480/c-redefinition-header-files |
---|
| 18 | #include <rpc.h> //UUID |
---|
| 19 | #pragma comment(lib, "Rpcrt4.lib") |
---|
| 20 | #endif |
---|
[109] | 21 | |
---|
| 22 | //adapted from |
---|
| 23 | //http://en.wikipedia.org/wiki/Mersenne_twister#Pseudocode |
---|
| 24 | //http://my.opera.com/metrallik/blog/2013/04/19/c-class-for-random-generation-with-mersenne-twister-method |
---|
| 25 | |
---|
| 26 | class RandomGenerator |
---|
| 27 | { |
---|
| 28 | private: |
---|
[167] | 29 | static const unsigned int length = 624; |
---|
| 30 | static const unsigned int bitMask_32 = 0xffffffff; |
---|
| 31 | static const unsigned int bitPow_31 = 1 << 31; |
---|
| 32 | static const unsigned int MAXVALUE = 0xffffffff; |
---|
[109] | 33 | unsigned int counter; //only used in randomize(). uninitialized is OK |
---|
| 34 | #ifdef MULTITHREADED |
---|
| 35 | pthread_mutex_t lock; |
---|
| 36 | #endif |
---|
| 37 | unsigned int *mt; |
---|
| 38 | unsigned int idx; |
---|
| 39 | public: |
---|
| 40 | |
---|
| 41 | RandomGenerator(unsigned int seed) |
---|
| 42 | { |
---|
| 43 | #ifdef MULTITHREADED |
---|
[167] | 44 | pthread_mutex_init(&lock, NULL); |
---|
[109] | 45 | #endif |
---|
[167] | 46 | mt = new unsigned int[length]; |
---|
[109] | 47 | setSeed(seed); |
---|
| 48 | } |
---|
| 49 | |
---|
| 50 | inline void setSeed(unsigned int seed) |
---|
| 51 | { |
---|
| 52 | #ifdef MULTITHREADED |
---|
| 53 | pthread_mutex_lock(&lock); |
---|
| 54 | #endif |
---|
[167] | 55 | idx = 0; |
---|
| 56 | mt[0] = seed; |
---|
| 57 | for (unsigned int i = 1; i < length; i++) |
---|
| 58 | mt[i] = (1812433253 * (mt[i - 1] ^ (mt[i - 1] >> 30)) + i)&bitMask_32; |
---|
[109] | 59 | #ifdef MULTITHREADED |
---|
| 60 | pthread_mutex_unlock(&lock); |
---|
| 61 | #endif |
---|
| 62 | } |
---|
| 63 | |
---|
[167] | 64 | unsigned int randomize() |
---|
[109] | 65 | { |
---|
| 66 | unsigned int seed; |
---|
[167] | 67 | //for ms visual, could use http://msdn.microsoft.com/en-us/library/sxtz2fa8.aspx |
---|
[109] | 68 | #ifdef LINUX |
---|
| 69 | int fd=open("/dev/urandom",O_RDONLY); |
---|
| 70 | if (fd>=0) |
---|
| 71 | { |
---|
| 72 | read(fd,&seed,sizeof(seed)); |
---|
| 73 | close(fd); |
---|
| 74 | } |
---|
| 75 | else |
---|
| 76 | #endif |
---|
| 77 | { |
---|
| 78 | counter++; |
---|
[247] | 79 | seed = time(NULL); //time (seconds); could use hi-res timer but then we would depend on common/timer.h |
---|
| 80 | seed ^= counter; //incremented value, possibly randomly initialized |
---|
| 81 | seed ^= (unsigned int)(uintptr_t)&counter; //memory address |
---|
[109] | 82 | } |
---|
[167] | 83 | #ifdef _WIN32 //add more randomness from uuid |
---|
| 84 | UUID uuid; |
---|
| 85 | ::UuidCreate(&uuid); |
---|
| 86 | seed ^= uuid.Data1^uuid.Data2^uuid.Data3^uuid.Data4[0]; |
---|
| 87 | #endif |
---|
[109] | 88 | setSeed(seed); |
---|
| 89 | return seed; |
---|
| 90 | } |
---|
| 91 | |
---|
| 92 | inline unsigned int getUint32() |
---|
| 93 | { |
---|
| 94 | #ifdef MULTITHREADED |
---|
| 95 | pthread_mutex_lock(&lock); |
---|
| 96 | #endif |
---|
[167] | 97 | if (idx == 0) gen(); |
---|
| 98 | unsigned int y = mt[idx]; |
---|
| 99 | idx = (idx + 1) % length; |
---|
[109] | 100 | #ifdef MULTITHREADED |
---|
| 101 | pthread_mutex_unlock(&lock); |
---|
| 102 | #endif |
---|
[167] | 103 | y ^= y >> 11; |
---|
| 104 | y ^= (y << 7) & 2636928640U; |
---|
| 105 | y ^= (y << 15) & 4022730752U; |
---|
| 106 | y ^= y >> 18; |
---|
[109] | 107 | return y; |
---|
| 108 | } |
---|
| 109 | |
---|
| 110 | inline double getDouble() // [0,1) |
---|
| 111 | { |
---|
[167] | 112 | return double(getUint32()) / ((LONGLONG)(MAXVALUE)+1); |
---|
[109] | 113 | } |
---|
| 114 | |
---|
| 115 | inline void gen() |
---|
| 116 | { |
---|
[167] | 117 | for (unsigned int i = 0; i < length; i++) |
---|
[109] | 118 | { |
---|
[167] | 119 | unsigned int y = (mt[i] & bitPow_31) + (mt[(i + 1) % length] & (bitPow_31 - 1)); |
---|
| 120 | mt[i] = mt[(i + 397) % length] ^ (y >> 1); |
---|
| 121 | if (y % 2) mt[i] ^= 2567483615U; |
---|
[109] | 122 | } |
---|
| 123 | return; |
---|
| 124 | } |
---|
| 125 | |
---|
| 126 | ~RandomGenerator() |
---|
| 127 | { |
---|
| 128 | delete[] mt; |
---|
| 129 | } |
---|
| 130 | }; |
---|