diff options
author | Mattes D <github@xoft.cz> | 2014-07-29 17:46:57 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-07-29 17:46:57 +0200 |
commit | 8287f2d93354a584bb44216b4b59d28d9a5f0fb2 (patch) | |
tree | 767b4c95a3ce907cb1f6162450c10dca39518e7a /src/Generating/RoughRavines.h | |
parent | DistortedHeightmap: Now generates gravel in deep ocean. (diff) | |
parent | Added a missing include for abs(float). (diff) | |
download | cuberite-8287f2d93354a584bb44216b4b59d28d9a5f0fb2.tar cuberite-8287f2d93354a584bb44216b4b59d28d9a5f0fb2.tar.gz cuberite-8287f2d93354a584bb44216b4b59d28d9a5f0fb2.tar.bz2 cuberite-8287f2d93354a584bb44216b4b59d28d9a5f0fb2.tar.lz cuberite-8287f2d93354a584bb44216b4b59d28d9a5f0fb2.tar.xz cuberite-8287f2d93354a584bb44216b4b59d28d9a5f0fb2.tar.zst cuberite-8287f2d93354a584bb44216b4b59d28d9a5f0fb2.zip |
Diffstat (limited to 'src/Generating/RoughRavines.h')
-rw-r--r-- | src/Generating/RoughRavines.h | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/src/Generating/RoughRavines.h b/src/Generating/RoughRavines.h new file mode 100644 index 000000000..4c905b641 --- /dev/null +++ b/src/Generating/RoughRavines.h @@ -0,0 +1,86 @@ + +// RoughRavines.h + +// Declares the cRoughRavines class representing the rough ravine generator + + + + +#pragma once + +#include "GridStructGen.h" + + + + + +class cRoughRavines : + public cGridStructGen +{ + typedef cGridStructGen super; + +public: + cRoughRavines( + int a_Seed, + int a_MaxSize, int a_MinSize, + float a_MaxCenterWidth, float a_MinCenterWidth, + float a_MaxRoughness, float a_MinRoughness, + float a_MaxFloorHeightEdge, float a_MinFloorHeightEdge, + float a_MaxFloorHeightCenter, float a_MinFloorHeightCenter, + float a_MaxCeilingHeightEdge, float a_MinCeilingHeightEdge, + float a_MaxCeilingHeightCenter, float a_MinCeilingHeightCenter, + int a_GridSize, int a_MaxOffset + ); + +protected: + int m_Seed; + + /** Maximum size of the ravine, in each of the X / Z axis */ + int m_MaxSize; + + /** Minimum size of the ravine */ + int m_MinSize; + + /** Maximum width of the ravine's center, in blocks */ + float m_MaxCenterWidth; + + /** Minimum width of the ravine's center, in blocks */ + float m_MinCenterWidth; + + /** Maximum roughness of the ravine */ + float m_MaxRoughness; + + /** Minimum roughness of the ravine */ + float m_MinRoughness; + + /** Maximum floor height at the ravine's edge */ + float m_MaxFloorHeightEdge; + + /** Minimum floor height at the ravine's edge */ + float m_MinFloorHeightEdge; + + /** Maximum floor height at the ravine's center */ + float m_MaxFloorHeightCenter; + + /** Minimum floor height at the ravine's center */ + float m_MinFloorHeightCenter; + + /** Maximum ceiling height at the ravine's edge */ + float m_MaxCeilingHeightEdge; + + /** Minimum ceiling height at the ravine's edge */ + float m_MinCeilingHeightEdge; + + /** Maximum ceiling height at the ravine's center */ + float m_MaxCeilingHeightCenter; + + /** Minimum ceiling height at the ravine's center */ + float m_MinCeilingHeightCenter; + + // cGridStructGen overrides: + virtual cStructurePtr CreateStructure(int a_GridX, int a_GridZ, int a_OriginX, int a_OriginZ) override; +}; + + + + |