File tree 3 files changed +13
-4
lines changed
3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,11 @@ class ClientStateError : public BaseException {
120
120
ClientStateError (std::string s): BaseException(s) {}
121
121
};
122
122
123
+ class PrngException : public BaseException {
124
+ public:
125
+ PrngException (std::string s): BaseException(s) {}
126
+ };
127
+
123
128
/*
124
129
Some "old-style" interrupts:
125
130
*/
Original file line number Diff line number Diff line change @@ -115,7 +115,9 @@ u32 PcgRandom::range(u32 bound)
115
115
116
116
s32 PcgRandom::range (s32 min, s32 max)
117
117
{
118
- assert (max >= min);
118
+ if (max < min)
119
+ throw PrngException (" Invalid range (max < min)" );
120
+
119
121
u32 bound = max - min + 1 ;
120
122
return range (bound) + min;
121
123
}
Original file line number Diff line number Diff line change 26
26
#ifndef NOISE_HEADER
27
27
#define NOISE_HEADER
28
28
29
- #include " debug.h"
30
29
#include " irr_v3d.h"
30
+ #include " exceptions.h"
31
31
#include " util/string.h"
32
32
33
33
extern FlagDesc flagdesc_noiseparams[];
@@ -56,14 +56,16 @@ class PseudoRandom {
56
56
57
57
inline int range (int min, int max)
58
58
{
59
- assert (max >= min);
59
+ if (max < min)
60
+ throw PrngException (" Invalid range (max < min)" );
60
61
/*
61
62
Here, we ensure the range is not too large relative to RANDOM_MAX,
62
63
as otherwise the effects of bias would become noticable. Unlike
63
64
PcgRandom, we cannot modify this RNG's range as it would change the
64
65
output of this RNG for reverse compatibility.
65
66
*/
66
- assert ((u32)(max - min) <= (RANDOM_RANGE + 1 ) / 10 );
67
+ if ((u32)(max - min) > (RANDOM_RANGE + 1 ) / 10 )
68
+ throw PrngException (" Range too large" );
67
69
68
70
return (next () % (max - min + 1 )) + min;
69
71
}
You can’t perform that action at this time.
0 commit comments