summaryrefslogtreecommitdiff
path: root/src/noise.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/noise.h')
-rw-r--r--src/noise.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/noise.h b/src/noise.h
index 3c726f17f..7d055d2e1 100644
--- a/src/noise.h
+++ b/src/noise.h
@@ -70,8 +70,8 @@ struct NoiseParams {
float offset;
float scale;
v3f spread;
- int seed;
- int octaves;
+ s32 seed;
+ u16 octaves;
float persist;
bool eased;
@@ -91,12 +91,11 @@ struct NoiseParams {
};
-// Convenience macros for getting/setting NoiseParams in Settings
-
-#define NOISEPARAMS_FMT_STR "f,f,v3,s32,s32,f"
-
-#define getNoiseParams(x, y) getStruct((x), NOISEPARAMS_FMT_STR, &(y), sizeof(y))
-#define setNoiseParams(x, y) setStruct((x), NOISEPARAMS_FMT_STR, &(y))
+// Convenience macros for getting/setting NoiseParams in Settings as a string
+// WARNING: Deprecated, use Settings::getNoiseParamsFromValue() instead
+#define NOISEPARAMS_FMT_STR "f,f,v3,s32,u16,f"
+//#define getNoiseParams(x, y) getStruct((x), NOISEPARAMS_FMT_STR, &(y), sizeof(y))
+//#define setNoiseParams(x, y) setStruct((x), NOISEPARAMS_FMT_STR, &(y))
class Noise {
public: