forked from teamhimeh/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimrandom.h
94 lines (71 loc) · 2.82 KB
/
simrandom.h
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#ifndef SIMRANDOM_H
#define SIMRANDOM_H
#include <stddef.h>
#include "../simtypes.h"
uint32 get_random_seed();
uint32 setsimrand(uint32 seed, uint32 noise_seed);
/* generates a random number on [0,max-1]-interval
* without affecting the game state
* Use this for UI etc.
*/
uint32 sim_async_rand(const uint32 max);
/* generates a random number on [0,max-1]-interval */
uint32 simrand(const uint32 max);
/* generates a random number on [0,0xFFFFFFFFu]-interval */
uint32 simrand_plain();
double perlin_noise_2D(const double x, const double y, const double persistence);
// for network debugging, i.e. finding hidden simrands in wrong places
enum { INTERACTIVE_RANDOM=1, STEP_RANDOM=2, SYNC_STEP_RANDOM=4, LOAD_RANDOM=8, MAP_CREATE_RANDOM=16 };
void set_random_mode( uint16 );
void clear_random_mode( uint16 );
uint16 get_random_mode();
// just more speed with those (generate a precalculated map, which needs only smoothing)
void init_perlin_map( sint32 w, sint32 h );
void exit_perlin_map();
/* Randomly select an entry from the given array. */
template<typename T, size_t N> T const& pick_any(T const (&array)[N])
{
return array[simrand(N)];
}
/* Randomly select an entry from the given container. */
template<typename T, template<typename> class U> T const& pick_any(U<T> const& container)
{
return container[simrand(container.get_count())];
}
/* Randomly select an entry from the given weighted container. */
template<typename T, template<typename> class U> T const& pick_any_weighted(U<T> const& container)
{
return container.at_weight(simrand(container.get_sum_weight()));
}
/* Randomly select an entry from the given subset of a weighted container. */
template<typename T, typename U> T const& pick_any_weighted_subset(U const& container)
{
return container.at_weight(simrand(container.get_sum_weight()));
}
/* Randomly select an entry from the given array. */
template<typename T, size_t N> T const& pick_any_async(T const (&array)[N])
{
return array[sim_async_rand(N)];
}
/* Randomly select an entry from the given container. */
template<typename T, template<typename> class U> T const& pick_any_async(U<T> const& container)
{
return container[sim_async_rand(container.get_count())];
}
/* Randomly select an entry from the given weighted container. */
template<typename T, template<typename> class U> T const& pick_any_weighted_async(U<T> const& container)
{
return container.at_weight(sim_async_rand(container.get_sum_weight()));
}
/* Randomly select an entry from the given subset of a weighted container. */
template<typename T, typename U> T const& pick_any_weighted_subset_async(U const& container)
{
return container.at_weight(sim_async_rand(container.get_sum_weight()));
}
// compute integer log10
uint32 log10( uint32 v );
uint32 log2( uint32 i );
// compute integer sqrt
uint32 sqrt_i32(uint32 num);
uint64 sqrt_i64(uint64 num);
#endif