medfall

A super great game engine
Log | Files | Refs

random.hpp (1145B)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*  Relacy Race Detector
 *  Copyright (c) 2008-2010, Dmitry S. Vyukov
 *  All rights reserved.
 *  This software is provided AS-IS with no warranty, either express or implied.
 *  This software is distributed under a license and may not be copied,
 *  modified or distributed except as expressly authorized under the
 *  terms of the license contained in the file LICENSE.TXT in this distribution.
 */

#ifndef RL_RANDOM_HPP
#define RL_RANDOM_HPP
#ifdef _MSC_VER
#   pragma once
#endif

#include "base.hpp"


namespace rl
{


unsigned const primes[16] = {1, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53};

struct random_generator
{
    unsigned k;
    unsigned c;
    unsigned x;

    void seed(iteration_t s)
    {
        k = ((unsigned)(s >> 32) & 0xf) + 8;
        c = primes[((unsigned)(s >> 36) & 0xf)];
        x = (unsigned)((s + 1) * 0x95949347 + c);
    }

    unsigned rand()
    {
        return ((x = x + c + (x << k)) >> 16);
    }

    template<typename T, T max>
    RL_INLINE
    T get()
    {
        return static_cast<T>(rand() % max);
    }
};



}

#endif