voxelman/world/voxel_chunk.h

377 lines
8.8 KiB
C
Raw Normal View History

/*
Copyright (c) 2019-2020 Péter Magyar
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#ifndef VOXEL_CHUNK_H
#define VOXEL_CHUNK_H
2019-11-06 03:37:22 +01:00
#include "scene/3d/spatial.h"
#include "core/engine.h"
#include "core/os/thread.h"
#include "core/os/thread_safe.h"
2020-01-09 04:29:05 +01:00
#include "core/ustring.h"
2019-07-18 18:56:42 +02:00
#include "core/array.h"
#include "scene/3d/collision_shape.h"
2020-01-09 04:29:05 +01:00
#include "scene/3d/mesh_instance.h"
#include "scene/3d/physics_body.h"
2019-07-18 18:56:42 +02:00
#include "scene/3d/spatial.h"
2020-01-09 04:29:05 +01:00
#include "scene/resources/concave_polygon_shape.h"
#include "scene/resources/packed_scene.h"
2019-07-18 02:05:50 +02:00
#include "voxel_world.h"
#include "../data/voxel_light.h"
#include "../meshers/cubic_mesher/voxel_mesher_cubic.h"
2019-07-18 18:56:42 +02:00
#include "../meshers/voxel_mesher.h"
#include "../library/voxel_surface.h"
#include "../library/voxelman_library.h"
2019-12-24 03:22:17 +01:00
#include "../../mesh_data_resource/mesh_data_resource.h"
2019-11-07 21:32:31 +01:00
#include "../props/prop_data.h"
#include "../props/prop_data_entry.h"
#include "../props/prop_data_light.h"
2020-01-09 04:29:05 +01:00
#include "../props/prop_data_mesh.h"
#include "../props/prop_data_scene.h"
#include "voxel_chunk_prop_data.h"
2019-08-12 20:40:05 +02:00
class VoxelWorld;
2019-11-06 03:37:22 +01:00
class VoxelChunk : public Spatial {
GDCLASS(VoxelChunk, Spatial);
_THREAD_SAFE_CLASS_
public:
enum {
VOXEL_CHUNK_STATE_OK = 0,
VOXEL_CHUNK_STATE_GENERATION_QUEUED = 1,
VOXEL_CHUNK_STATE_GENERATION = 2,
VOXEL_CHUNK_STATE_MESH_GENERATION_QUEUED = 3,
VOXEL_CHUNK_STATE_MESH_GENERATION = 4,
VOXEL_CHUNK_STATE_MAX = 5,
};
enum {
BUILD_PHASE_DONE = 0,
BUILD_PHASE_SETUP = 1,
BUILD_PHASE_TERRARIN_MESH_SETUP = 2,
BUILD_PHASE_TERRARIN_MESH_COLLIDER = 3,
BUILD_PHASE_LIGHTS = 4,
BUILD_PHASE_TERRARIN_MESH = 5,
BUILD_PHASE_PROP_MESH = 6,
BUILD_PHASE_PROP_COLLIDER = 7,
BUILD_PHASE_LIQUID = 8,
BUILD_PHASE_CLUTTER = 9,
BUILD_PHASE_FINALIZE = 10,
BUILD_PHASE_MAX = 11
};
enum DefaultChannels {
DEFAULT_CHANNEL_TYPE = 0,
DEFAULT_CHANNEL_ISOLEVEL,
DEFAULT_CHANNEL_LIGHT_COLOR_R,
DEFAULT_CHANNEL_LIGHT_COLOR_G,
DEFAULT_CHANNEL_LIGHT_COLOR_B,
2020-01-09 04:29:05 +01:00
DEFAULT_CHANNEL_AO,
DEFAULT_CHANNEL_RANDOM_AO,
DEFAULT_CHANNEL_LIQUID_TYPES,
DEFAULT_CHANNEL_LIQUID_FILL,
DEFAULT_CHANNEL_LIQUID_FLOW,
MAX_DEFAULT_CHANNELS
};
public:
2019-11-19 14:42:21 +01:00
bool get_is_generating() const;
void set_is_generating(bool value);
bool get_is_build_threaded() const;
void set_is_build_threaded(bool value);
bool get_dirty() const;
void set_dirty(bool value);
int get_state() const;
void set_state(int value);
int get_position_x();
2019-11-18 22:22:41 +01:00
void set_position_x(int value);
int get_position_y();
2019-11-18 22:22:41 +01:00
void set_position_y(int value);
int get_position_z();
2019-11-18 22:22:41 +01:00
void set_position_z(int value);
2019-07-17 02:28:16 +02:00
int get_size_x();
int get_size_y();
int get_size_z();
2019-07-17 02:28:16 +02:00
int get_data_size_x();
int get_data_size_y();
int get_data_size_z();
Vector3 get_position() const;
Vector3 get_size() const;
2019-11-18 22:22:41 +01:00
void set_position(int x, int y, int z);
2019-11-18 19:43:15 +01:00
int get_margin_start() const;
int get_margin_end() const;
Ref<VoxelmanLibrary> get_library();
void set_library(Ref<VoxelmanLibrary> value);
int get_lod_size() const;
void set_lod_size(int lod_size);
2019-07-17 02:28:16 +02:00
float get_voxel_scale() const;
void set_voxel_scale(float value);
int get_current_build_phase();
void set_current_build_phase(int value);
int get_max_build_phase();
void set_max_build_phase(int value);
Ref<VoxelMesher> get_mesher(int index) const;
void set_mesher(int index, Ref<VoxelMesher> mesher);
void remove_mesher(int index);
void add_mesher(Ref<VoxelMesher> mesher);
int get_mesher_count();
2019-07-18 02:05:50 +02:00
VoxelWorld *get_voxel_world() const;
void set_voxel_world(VoxelWorld *world);
void set_voxel_world_bind(Node *world);
2019-07-17 02:28:16 +02:00
bool get_create_collider() const;
void set_create_collider(bool value);
2019-07-17 02:28:16 +02:00
bool get_bake_lights() const;
void set_bake_lights(bool value);
RID get_mesh_rid();
RID get_mesh_instance_rid();
RID get_shape_rid();
RID get_body_rid();
RID get_prop_mesh_rid();
RID get_prop_mesh_instance_rid();
RID get_prop_shape_rid();
RID get_prop_body_rid();
RID get_liquid_mesh_rid();
RID get_liquid_mesh_instance_rid();
RID get_clutter_mesh_rid();
RID get_clutter_mesh_instance_rid();
//Voxel Data
void setup_channels();
void _setup_channels();
2019-11-18 19:43:15 +01:00
void set_size(int size_x, int size_y, int size_z, int margin_start = 0, int margin_end = 0);
bool validate_channel_data_position(uint32_t x, uint32_t y, uint32_t z) const;
2019-11-18 21:53:33 +01:00
uint8_t get_voxel(int x, int y, int z, int channel_index) const;
2019-11-18 19:43:15 +01:00
void set_voxel(uint8_t value, int x, int y, int z, int channel_index);
void set_channel_count(int count);
void allocate_channel(int channel_index, uint8_t default_value = 0);
2019-11-18 21:53:33 +01:00
void fill_channel(uint8_t value, int channel_index);
2019-11-18 19:43:15 +01:00
void dealloc_channel(int channel_index);
uint8_t *get_channel(int channel_index);
uint8_t *get_valid_channel(int channel_index, uint8_t default_value = 0);
uint32_t get_data_index(uint32_t x, uint32_t y, uint32_t z) const;
uint32_t get_data_size() const;
2020-01-09 04:29:05 +01:00
2019-11-18 19:43:15 +01:00
//Data Management functions
void generate_ao();
2020-01-09 04:29:05 +01:00
void add_light(int local_x, int local_y, int local_z, int size, Color color);
2019-11-18 21:53:33 +01:00
void clear_baked_lights();
//Meshing
void create_meshers();
void _create_meshers();
2019-06-08 19:47:17 +02:00
void finalize_mesh();
void build();
static void _build_phase_threaded(void *_userdata);
void build_phase();
void _build_phase(int phase);
void next_phase();
2020-01-09 04:29:05 +01:00
void clear();
//Colliders
void create_colliders();
void build_collider();
void remove_colliders();
//lights
2019-07-17 02:28:16 +02:00
void add_lights(Array lights);
void add_voxel_light(Ref<VoxelLight> light);
void create_voxel_light(const Color color, const int size, const int x, const int y, const int z);
2019-07-17 02:28:16 +02:00
void remove_voxel_light(Ref<VoxelLight> light);
void clear_voxel_lights();
void add_lights_into(Array target);
2020-01-09 04:29:05 +01:00
void add_unique_lights_into(Array target);
Array get_lights();
2019-07-17 02:28:16 +02:00
2020-01-09 04:29:05 +01:00
void bake_lights();
2019-07-17 02:28:16 +02:00
void bake_light(Ref<VoxelLight> light);
2020-01-09 04:29:05 +01:00
void add_prop_light(Ref<VoxelLight> light);
//props
void add_prop(Ref<VoxelChunkPropData> prop);
Ref<VoxelChunkPropData> get_prop(int index);
int get_prop_count();
void remove_prop(int index);
2019-07-18 18:56:42 +02:00
void clear_props();
2020-01-09 04:29:05 +01:00
void process_props();
void build_prop_meshes();
2019-07-18 18:56:42 +02:00
void build_prop_collider();
2020-01-09 04:29:05 +01:00
void free_spawn_props();
//Meshes
2020-01-09 04:29:05 +01:00
void allocate_main_mesh();
void free_main_mesh();
2020-01-09 04:29:05 +01:00
void allocate_prop_mesh();
void free_prop_mesh();
2020-01-09 04:29:05 +01:00
void allocate_prop_colliders();
void free_prop_colliders();
void allocate_liquid_mesh();
void free_liquid_mesh();
void allocate_clutter_mesh();
void free_clutter_mesh();
//Debug
void create_debug_immediate_geometry();
void free_debug_immediate_geometry();
void draw_cross_voxels(Vector3 pos);
void draw_cross_voxels_fill(Vector3 pos, float fill);
void draw_debug_voxels(int max, Color color = Color(1, 1, 1));
void draw_debug_voxel_lights();
//free
void free_chunk();
VoxelChunk();
~VoxelChunk();
protected:
void _notification(int p_what);
static void _bind_methods();
2019-11-19 14:42:21 +01:00
bool _is_generating;
bool _is_build_threaded;
bool _abort_build;
bool _dirty;
int _state;
int _current_build_phase;
int _max_build_phases;
bool _enabled;
2019-07-18 02:05:50 +02:00
VoxelWorld *_voxel_world;
int _position_x;
int _position_y;
int _position_z;
uint32_t _size_x;
uint32_t _size_y;
uint32_t _size_z;
uint32_t _data_size_x;
uint32_t _data_size_y;
uint32_t _data_size_z;
uint32_t _margin_start;
uint32_t _margin_end;
2019-07-17 02:28:16 +02:00
2019-11-18 19:43:15 +01:00
Vector<uint8_t *> _channels;
Vector<Ref<VoxelLight> > _voxel_lights;
int _lod_size;
float _voxel_scale;
NodePath _library_path;
Ref<VoxelmanLibrary> _library;
Vector<Ref<VoxelMesher> > _meshers;
2019-07-18 18:56:42 +02:00
//voxel mesh
RID _mesh_rid;
RID _mesh_instance_rid;
RID _shape_rid;
RID _body_rid;
2019-07-18 18:56:42 +02:00
//mergeable props
Vector<Ref<VoxelChunkPropData> > _props;
2019-07-18 18:56:42 +02:00
RID _prop_mesh_rid;
RID _prop_mesh_instance_rid;
RID _prop_shape_rid;
RID _prop_body_rid;
//liquids
RID _liquid_mesh_rid;
RID _liquid_mesh_instance_rid;
//clutter
RID _clutter_mesh_rid;
RID _clutter_mesh_instance_rid;
2019-07-18 18:56:42 +02:00
//spawned props
Vector<Node *> _spawned_props;
//debug
ImmediateGeometry *_debug_drawer;
bool _build_mesh;
bool _create_collider;
bool _bake_lights;
Thread *_build_thread;
};
VARIANT_ENUM_CAST(VoxelChunk::DefaultChannels);
#endif