diff options
author | madmaxoft <github@xoft.cz> | 2014-06-21 20:19:44 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-06-21 20:19:44 +0200 |
commit | 0a95d04ab38b81f87d4fa421601d25f37df1f6a1 (patch) | |
tree | 075cdd440644ff39bfa04b7b5a17a26ea9e12f9c /src/Generating/TestRailsGen.h | |
parent | Fixed a caching bug in GridStructGen. (diff) | |
download | cuberite-0a95d04ab38b81f87d4fa421601d25f37df1f6a1.tar cuberite-0a95d04ab38b81f87d4fa421601d25f37df1f6a1.tar.gz cuberite-0a95d04ab38b81f87d4fa421601d25f37df1f6a1.tar.bz2 cuberite-0a95d04ab38b81f87d4fa421601d25f37df1f6a1.tar.lz cuberite-0a95d04ab38b81f87d4fa421601d25f37df1f6a1.tar.xz cuberite-0a95d04ab38b81f87d4fa421601d25f37df1f6a1.tar.zst cuberite-0a95d04ab38b81f87d4fa421601d25f37df1f6a1.zip |
Diffstat (limited to 'src/Generating/TestRailsGen.h')
-rw-r--r-- | src/Generating/TestRailsGen.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/Generating/TestRailsGen.h b/src/Generating/TestRailsGen.h new file mode 100644 index 000000000..5b0ce95f4 --- /dev/null +++ b/src/Generating/TestRailsGen.h @@ -0,0 +1,47 @@ + +// TestRailsGen.h + +// Declares the cTestRailsGen class representing the testing rails generator + + + + + +#pragma once + +#include "GridStructGen.h" +#include "PrefabPiecePool.h" + + + + + +class cTestRailsGen : + public cGridStructGen +{ + typedef cGridStructGen super; + +public: + cTestRailsGen(int a_Seed, int a_GridSize, int a_MaxOffset, int a_MaxDepth, int a_MaxSize); + +protected: + class cTestRails; // fwd: TestRailsGen.cpp + + + /** The noise used for generating random numbers */ + cNoise m_Noise; + + /** Maximum depth of the generator tree*/ + int m_MaxDepth; + + /** Maximum size, in X/Z blocks, of the base (radius from the origin) */ + int m_MaxSize; + + + // cGridStructGen overrides: + virtual cStructurePtr CreateStructure(int a_GridX, int a_GridZ, int a_OriginX, int a_OriginZ) override; +} ; + + + + |