Skip to content

Commit cd1d625

Browse files
committedApr 27, 2015
Replace PRNG assertions with PrngException
1 parent 732eb72 commit cd1d625

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed
 

‎src/exceptions.h

+5
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ class ClientStateError : public BaseException {
120120
ClientStateError(std::string s): BaseException(s) {}
121121
};
122122

123+
class PrngException : public BaseException {
124+
public:
125+
PrngException(std::string s): BaseException(s) {}
126+
};
127+
123128
/*
124129
Some "old-style" interrupts:
125130
*/

‎src/noise.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ u32 PcgRandom::range(u32 bound)
115115

116116
s32 PcgRandom::range(s32 min, s32 max)
117117
{
118-
assert(max >= min);
118+
if (max < min)
119+
throw PrngException("Invalid range (max < min)");
120+
119121
u32 bound = max - min + 1;
120122
return range(bound) + min;
121123
}

‎src/noise.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
#ifndef NOISE_HEADER
2727
#define NOISE_HEADER
2828

29-
#include "debug.h"
3029
#include "irr_v3d.h"
30+
#include "exceptions.h"
3131
#include "util/string.h"
3232

3333
extern FlagDesc flagdesc_noiseparams[];
@@ -56,14 +56,16 @@ class PseudoRandom {
5656

5757
inline int range(int min, int max)
5858
{
59-
assert(max >= min);
59+
if (max < min)
60+
throw PrngException("Invalid range (max < min)");
6061
/*
6162
Here, we ensure the range is not too large relative to RANDOM_MAX,
6263
as otherwise the effects of bias would become noticable. Unlike
6364
PcgRandom, we cannot modify this RNG's range as it would change the
6465
output of this RNG for reverse compatibility.
6566
*/
66-
assert((u32)(max - min) <= (RANDOM_RANGE + 1) / 10);
67+
if ((u32)(max - min) > (RANDOM_RANGE + 1) / 10)
68+
throw PrngException("Range too large");
6769

6870
return (next() % (max - min + 1)) + min;
6971
}

0 commit comments

Comments
 (0)
Please sign in to comment.