2016-05-08 01:09:00 +02:00
|
|
|
#ifndef VOXEL_MESHER
|
|
|
|
#define VOXEL_MESHER
|
2016-05-01 15:00:02 +02:00
|
|
|
|
|
|
|
#include "voxel.h"
|
|
|
|
#include "voxel_buffer.h"
|
2016-10-14 00:16:46 +02:00
|
|
|
#include "voxel_library.h"
|
2017-04-01 20:10:38 +02:00
|
|
|
#include "zprofiling.h"
|
2017-08-13 01:19:39 +02:00
|
|
|
#include <reference.h>
|
|
|
|
#include <scene/resources/mesh.h>
|
2017-04-06 23:44:11 +02:00
|
|
|
|
|
|
|
// TODO Should be renamed VoxelMesherCubic or something like that
|
2016-05-08 01:09:00 +02:00
|
|
|
class VoxelMesher : public Reference {
|
2017-03-25 01:23:36 +01:00
|
|
|
GDCLASS(VoxelMesher, Reference)
|
2016-05-01 15:00:02 +02:00
|
|
|
|
2016-05-01 22:20:27 +02:00
|
|
|
public:
|
2017-01-01 04:40:16 +01:00
|
|
|
static const unsigned int MAX_MATERIALS = 8; // Arbitrary. Tweak if needed.
|
2016-05-01 15:00:02 +02:00
|
|
|
|
2017-01-01 04:40:16 +01:00
|
|
|
VoxelMesher();
|
2016-05-01 15:00:02 +02:00
|
|
|
|
2017-01-01 04:40:16 +01:00
|
|
|
void set_material(Ref<Material> material, unsigned int id);
|
2017-01-01 05:23:22 +01:00
|
|
|
Ref<Material> get_material(unsigned int id) const;
|
2016-05-01 15:00:02 +02:00
|
|
|
|
2017-01-01 04:40:16 +01:00
|
|
|
void set_library(Ref<VoxelLibrary> library);
|
2017-01-01 05:23:22 +01:00
|
|
|
Ref<VoxelLibrary> get_library() const { return _library; }
|
2016-05-01 22:20:27 +02:00
|
|
|
|
2017-01-01 04:40:16 +01:00
|
|
|
void set_occlusion_darkness(float darkness);
|
2017-01-01 05:23:22 +01:00
|
|
|
float get_occlusion_darkness() const { return _baked_occlusion_darkness; }
|
2017-01-01 04:40:16 +01:00
|
|
|
|
|
|
|
void set_occlusion_enabled(bool enable);
|
2017-01-01 05:23:22 +01:00
|
|
|
bool get_occlusion_enabled() const { return _bake_occlusion; }
|
2017-01-01 04:40:16 +01:00
|
|
|
|
2017-08-13 01:19:39 +02:00
|
|
|
Ref<ArrayMesh> build(const VoxelBuffer &buffer_ref, unsigned int channel, Vector3i min, Vector3i max, Ref<ArrayMesh> mesh = Ref<Mesh>());
|
|
|
|
Ref<ArrayMesh> build_ref(Ref<VoxelBuffer> buffer_ref, unsigned int channel, Ref<ArrayMesh> mesh = Ref<ArrayMesh>());
|
2016-05-04 14:52:23 +02:00
|
|
|
|
2016-05-01 15:00:02 +02:00
|
|
|
protected:
|
2017-01-01 04:40:16 +01:00
|
|
|
static void _bind_methods();
|
2016-05-01 15:00:02 +02:00
|
|
|
|
2017-01-01 05:23:22 +01:00
|
|
|
private:
|
2017-08-19 21:10:31 +02:00
|
|
|
struct Arrays {
|
|
|
|
Vector<Vector3> positions;
|
|
|
|
Vector<Vector3> normals;
|
|
|
|
Vector<Vector2> uvs;
|
|
|
|
Vector<Color> colors;
|
|
|
|
Vector<int> indices;
|
|
|
|
};
|
|
|
|
|
2017-01-01 05:23:22 +01:00
|
|
|
Ref<VoxelLibrary> _library;
|
|
|
|
Ref<Material> _materials[MAX_MATERIALS];
|
2017-08-19 21:10:31 +02:00
|
|
|
Arrays _arrays[MAX_MATERIALS];
|
2017-01-01 05:23:22 +01:00
|
|
|
float _baked_occlusion_darkness;
|
|
|
|
bool _bake_occlusion;
|
|
|
|
|
2017-04-01 20:10:38 +02:00
|
|
|
#ifdef VOXEL_PROFILING
|
|
|
|
ZProfiler _zprofiler;
|
|
|
|
Dictionary get_profiling_info() const { return _zprofiler.get_all_serialized_info(); }
|
|
|
|
#endif
|
2016-05-01 15:00:02 +02:00
|
|
|
};
|
|
|
|
|
2016-05-08 01:09:00 +02:00
|
|
|
#endif // VOXEL_MESHER
|