summaryrefslogtreecommitdiff
path: root/src/common/mt_rand.h
blob: 84d32e5b5ce035567e6f172fbe79df7c4d719081 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef MT_RAND_H
#define MT_RAND_H

# include "sanity.h"

/// Initialize the generator (called automatically with time() if you don't)
void mt_seed (uint32_t seed);
/// Get a random number
uint32_t mt_random (void);

/**
 * ModuloRand and ModuloPlusRand
 * These macros are used to replace the vast number of calls to rand()%mod
 * TODO eliminate the rest of the calls to rand()
 * MRAND(10)    returns 0..9
 * MPRAND(5,10) returns 5..14
 */
// The cast is essential because the result is sometimes
// compared with a possibly negative number.
// Because it's using modulus, high numbers shouldn't happen anyway.
# define MRAND(mod) ((int)(mt_random() % (mod)))
# define MPRAND(add, mod) ((add) + MRAND(mod))

#endif // MT_RAND_H