e0008d3335
The version shipped with the module is now prefixed. Removed usages of OpenSimplexNoise.
57 lines
1.3 KiB
C++
57 lines
1.3 KiB
C++
#ifndef VOXEL_GENERATOR_NOISE_H
|
|
#define VOXEL_GENERATOR_NOISE_H
|
|
|
|
#include "../../storage/voxel_buffer_gd.h"
|
|
#include "../voxel_generator.h"
|
|
#include <modules/noise/noise.h>
|
|
|
|
namespace zylann::voxel {
|
|
|
|
class VoxelGeneratorNoise : public VoxelGenerator {
|
|
GDCLASS(VoxelGeneratorNoise, VoxelGenerator)
|
|
|
|
public:
|
|
VoxelGeneratorNoise();
|
|
~VoxelGeneratorNoise();
|
|
|
|
void set_channel(VoxelBufferInternal::ChannelId p_channel);
|
|
VoxelBufferInternal::ChannelId get_channel() const;
|
|
|
|
int get_used_channels_mask() const override;
|
|
|
|
void set_noise(Ref<Noise> noise);
|
|
Ref<Noise> get_noise() const;
|
|
|
|
void set_height_start(real_t y);
|
|
real_t get_height_start() const;
|
|
|
|
void set_height_range(real_t hrange);
|
|
real_t get_height_range() const;
|
|
|
|
Result generate_block(VoxelGenerator::VoxelQueryData &input) override;
|
|
|
|
private:
|
|
void _on_noise_changed();
|
|
|
|
void _b_set_channel(gd::VoxelBuffer::ChannelId p_channel);
|
|
gd::VoxelBuffer::ChannelId _b_get_channel() const;
|
|
|
|
static void _bind_methods();
|
|
|
|
Ref<Noise> _noise;
|
|
|
|
struct Parameters {
|
|
VoxelBufferInternal::ChannelId channel = VoxelBufferInternal::CHANNEL_SDF;
|
|
Ref<Noise> noise;
|
|
float height_start = 0;
|
|
float height_range = 300;
|
|
};
|
|
|
|
Parameters _parameters;
|
|
RWLock _parameters_lock;
|
|
};
|
|
|
|
} // namespace zylann::voxel
|
|
|
|
#endif // VOXEL_GENERATOR_NOISE_H
|