godot_voxel/generators/simple/voxel_generator_heightmap.h

125 lines
3.1 KiB
C
Raw Normal View History

2020-01-26 22:43:47 +00:00
#ifndef VOXEL_GENERATOR_HEIGHTMAP_H
#define VOXEL_GENERATOR_HEIGHTMAP_H
#include "../../storage/voxel_buffer.h"
#include "../voxel_generator.h"
#include <core/io/image.h>
class VoxelGeneratorHeightmap : public VoxelGenerator {
GDCLASS(VoxelGeneratorHeightmap, VoxelGenerator)
public:
VoxelGeneratorHeightmap();
2021-01-16 13:41:46 +00:00
~VoxelGeneratorHeightmap();
2021-09-26 17:21:44 +01:00
void set_channel(VoxelBuffer::ChannelId p_channel);
2020-02-15 03:12:13 +08:00
VoxelBuffer::ChannelId get_channel() const;
int get_used_channels_mask() const override;
void set_height_start(float start);
float get_height_start() const;
void set_height_range(float range);
float get_height_range() const;
void set_iso_scale(float iso_scale);
float get_iso_scale() const;
protected:
template <typename Height_F>
2022-01-08 22:49:48 +00:00
Result generate(zylann::voxel::VoxelBufferInternal &out_buffer, Height_F height_func, Vector3i origin, int lod) {
2021-01-16 13:41:46 +00:00
Parameters params;
{
RWLockRead rlock(_parameters_lock);
params = _parameters;
}
2021-01-16 13:41:46 +00:00
const int channel = params.channel;
const Vector3i bs = out_buffer.get_size();
2022-01-08 22:49:48 +00:00
const bool use_sdf = channel == zylann::voxel::VoxelBufferInternal::CHANNEL_SDF;
if (origin.y > get_height_start() + get_height_range()) {
// The bottom of the block is above the highest ground can go (default is air)
Result result;
result.max_lod_hint = true;
return result;
}
if (origin.y + (bs.y << lod) < get_height_start()) {
// The top of the block is below the lowest ground can go
2021-01-16 13:41:46 +00:00
out_buffer.clear_channel(params.channel, use_sdf ? 0 : params.matter_type);
Result result;
result.max_lod_hint = true;
return result;
}
const int stride = 1 << lod;
if (use_sdf) {
int gz = origin.z;
2021-01-16 13:41:46 +00:00
for (int z = 0; z < bs.z; ++z, gz += stride) {
int gx = origin.x;
2021-01-16 13:41:46 +00:00
for (int x = 0; x < bs.x; ++x, gx += stride) {
float h = params.range.xform(height_func(gx, gz));
int gy = origin.y;
for (int y = 0; y < bs.y; ++y, gy += stride) {
2021-01-16 13:41:46 +00:00
float sdf = params.iso_scale * (gy - h);
out_buffer.set_voxel_f(sdf, x, y, z, channel);
}
} // for x
} // for z
} else {
// Blocky
int gz = origin.z;
2021-01-16 13:41:46 +00:00
for (int z = 0; z < bs.z; ++z, gz += stride) {
int gx = origin.x;
2021-01-16 13:41:46 +00:00
for (int x = 0; x < bs.x; ++x, gx += stride) {
// Output is blocky, so we can go for just one sample
2021-01-16 13:41:46 +00:00
float h = params.range.xform(height_func(gx, gz));
h -= origin.y;
int ih = int(h) >> lod;
if (ih > 0) {
if (ih > bs.y) {
ih = bs.y;
}
2021-01-16 13:41:46 +00:00
out_buffer.fill_area(
params.matter_type, Vector3i(x, 0, z), Vector3i(x + 1, ih, z + 1), channel);
}
} // for x
} // for z
} // use_sdf
return Result();
}
private:
static void _bind_methods();
struct Range {
float start = -50.f;
float height = 200.f;
inline float xform(float x) const {
return x * height + start;
}
};
2021-01-16 13:41:46 +00:00
struct Parameters {
2022-01-08 22:49:48 +00:00
zylann::voxel::VoxelBufferInternal::ChannelId channel = zylann::voxel::VoxelBufferInternal::CHANNEL_SDF;
2021-01-16 13:41:46 +00:00
int matter_type = 1;
Range range;
float iso_scale = 0.1;
};
RWLock _parameters_lock;
2021-01-16 13:41:46 +00:00
Parameters _parameters;
};
2020-01-26 22:43:47 +00:00
#endif // VOXEL_GENERATOR_HEIGHTMAP_H