diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-05-22 16:57:15 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-05-22 16:57:15 +0000 |
commit | 2295579eb790d6eff6e54e84c01da6de10809a71 (patch) | |
tree | 3d8282dedc137fee009f71ff904370537009e504 /src/experimental/randomsystem.h | |
parent | 690ad7280e655654a3bcca2ca5ced9caacf75c8b (diff) | |
download | libbu++-2295579eb790d6eff6e54e84c01da6de10809a71.tar.gz libbu++-2295579eb790d6eff6e54e84c01da6de10809a71.tar.bz2 libbu++-2295579eb790d6eff6e54e84c01da6de10809a71.tar.xz libbu++-2295579eb790d6eff6e54e84c01da6de10809a71.zip |
Better win_o ignores. The random number system is pretty much together.
We need a few extra helper functions to cover some other good things, like
normalized floating point numbers, etc.
Diffstat (limited to '')
-rw-r--r-- | src/experimental/randomsystem.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/experimental/randomsystem.h b/src/experimental/randomsystem.h new file mode 100644 index 0000000..7106d58 --- /dev/null +++ b/src/experimental/randomsystem.h | |||
@@ -0,0 +1,37 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | #ifndef BU_RANDOM_SYSTEM_H | ||
8 | #define BU_RANDOM_SYSTEM_H | ||
9 | |||
10 | #include "bu/randombase.h" | ||
11 | |||
12 | namespace Bu | ||
13 | { | ||
14 | class File; | ||
15 | class RandomSystem : public RandomBase | ||
16 | { | ||
17 | public: | ||
18 | enum Type | ||
19 | { | ||
20 | Fast, | ||
21 | Good | ||
22 | }; | ||
23 | |||
24 | RandomSystem( Type eType=Fast ); | ||
25 | virtual ~RandomSystem(); | ||
26 | |||
27 | virtual void seed( int32_t iSeed ); | ||
28 | |||
29 | virtual int32_t rand(); | ||
30 | |||
31 | private: | ||
32 | Type eType; | ||
33 | File *pSrc; | ||
34 | }; | ||
35 | }; | ||
36 | |||
37 | #endif | ||