2020-08-04 09:44:18 +02:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "voxel_job.h"
|
|
|
|
|
2020-10-01 20:18:43 +02:00
|
|
|
#include "../default/voxel_chunk_default.h"
|
|
|
|
|
|
|
|
#include "../../../opensimplex/open_simplex_noise.h"
|
2020-08-04 09:44:18 +02:00
|
|
|
|
2020-10-02 12:19:24 +02:00
|
|
|
const String VoxelJob::BINDING_STRING_ACTIVE_BUILD_PHASE_TYPE = "Normal,Process,Physics Process";
|
|
|
|
|
|
|
|
VoxelJob::ActiveBuildPhaseType VoxelJob::get_build_phase_type() {
|
|
|
|
return _build_phase_type;
|
|
|
|
}
|
|
|
|
void VoxelJob::set_build_phase_type(VoxelJob::ActiveBuildPhaseType build_phase_type) {
|
|
|
|
_build_phase_type = build_phase_type;
|
|
|
|
}
|
|
|
|
|
2020-10-01 20:49:54 +02:00
|
|
|
void VoxelJob::set_chunk(const Ref<VoxelChunk> &chunk) {
|
2020-08-04 09:44:18 +02:00
|
|
|
_chunk = chunk;
|
|
|
|
|
|
|
|
_in_tree = true;
|
|
|
|
}
|
|
|
|
|
2020-10-02 12:19:24 +02:00
|
|
|
int VoxelJob::get_phase() {
|
|
|
|
return _phase;
|
|
|
|
}
|
|
|
|
void VoxelJob::set_phase(const int phase) {
|
|
|
|
_phase = phase;
|
|
|
|
}
|
|
|
|
void VoxelJob::next_phase() {
|
|
|
|
++_phase;
|
|
|
|
}
|
2020-08-04 09:49:58 +02:00
|
|
|
|
2020-10-02 12:19:24 +02:00
|
|
|
bool VoxelJob::get_build_done() {
|
|
|
|
return _build_done;
|
|
|
|
}
|
|
|
|
void VoxelJob::set_build_done(const bool val) {
|
|
|
|
_build_done = val;
|
|
|
|
}
|
2020-08-04 09:44:18 +02:00
|
|
|
|
2020-10-02 12:19:24 +02:00
|
|
|
void VoxelJob::next_job() {
|
|
|
|
//chunk->next_job();
|
|
|
|
set_build_done(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelJob::reset() {
|
|
|
|
call("_reset");
|
|
|
|
}
|
|
|
|
void VoxelJob::_reset() {
|
|
|
|
_build_done = false;
|
|
|
|
_phase = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define NEW 0
|
|
|
|
|
|
|
|
#if NEW
|
|
|
|
|
|
|
|
void VoxelJob::_execute() {
|
|
|
|
|
|
|
|
ActiveBuildPhaseType origpt = _build_phase_type;
|
|
|
|
|
|
|
|
while (!get_cancelled() && _in_tree && !_build_done && origpt == _build_phase_type && !should_return()) {
|
|
|
|
execute_phase();
|
2020-08-04 09:44:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-02 12:19:24 +02:00
|
|
|
#else
|
|
|
|
|
2020-08-04 09:44:18 +02:00
|
|
|
void VoxelJob::_execute() {
|
|
|
|
ERR_FAIL_COND(!_chunk.is_valid());
|
2020-08-04 14:40:40 +02:00
|
|
|
|
2020-10-01 20:49:54 +02:00
|
|
|
Ref<VoxelChunkDefault> chunk = _chunk;
|
|
|
|
|
|
|
|
ERR_FAIL_COND(!chunk.is_valid());
|
|
|
|
|
|
|
|
if (!chunk->has_next_phase()) {
|
2020-08-04 14:40:40 +02:00
|
|
|
set_complete(true);
|
|
|
|
}
|
|
|
|
|
2020-10-01 20:49:54 +02:00
|
|
|
ERR_FAIL_COND(!chunk->has_next_phase());
|
2020-08-04 09:44:18 +02:00
|
|
|
|
2020-10-01 20:49:54 +02:00
|
|
|
while (!get_cancelled() && _in_tree && chunk->has_next_phase() && chunk->get_active_build_phase_type() == VoxelChunkDefault::BUILD_PHASE_TYPE_NORMAL) {
|
2020-08-04 09:44:18 +02:00
|
|
|
|
2020-10-01 20:49:54 +02:00
|
|
|
chunk->build_phase();
|
2020-08-04 09:44:18 +02:00
|
|
|
|
2020-10-01 20:49:54 +02:00
|
|
|
if (chunk->get_active_build_phase_type() == VoxelChunkDefault::BUILD_PHASE_TYPE_NORMAL && should_return())
|
2020-08-04 10:52:27 +02:00
|
|
|
return;
|
2020-08-04 10:21:01 +02:00
|
|
|
|
2020-10-01 20:49:54 +02:00
|
|
|
if (!chunk->get_build_phase_done())
|
2020-08-04 09:44:18 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-10-01 20:49:54 +02:00
|
|
|
chunk->set_build_step_in_progress(false);
|
2020-08-04 09:44:18 +02:00
|
|
|
|
|
|
|
if (!_in_tree) {
|
2020-10-01 20:49:54 +02:00
|
|
|
chunk.unref();
|
2020-08-04 09:44:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
set_complete(true);
|
|
|
|
}
|
|
|
|
|
2020-10-02 12:19:24 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void VoxelJob::execute_phase() {
|
|
|
|
call("_execute_phase");
|
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelJob::_execute_phase() {
|
|
|
|
next_job();
|
|
|
|
}
|
|
|
|
|
2020-10-02 16:45:08 +02:00
|
|
|
void VoxelJob::process(const float delta) {
|
|
|
|
if (has_method("_process"))
|
|
|
|
call("_process", delta);
|
|
|
|
}
|
|
|
|
void VoxelJob::physics_process(const float delta) {
|
|
|
|
if (has_method("_physics_process"))
|
|
|
|
call("_physics_process", delta);
|
|
|
|
}
|
|
|
|
|
2020-10-01 20:18:43 +02:00
|
|
|
//Data Management functions
|
|
|
|
void VoxelJob::generate_ao() {
|
|
|
|
ERR_FAIL_COND(!_chunk.is_valid());
|
|
|
|
|
|
|
|
int data_size_x = _chunk->get_data_size_x();
|
|
|
|
int data_size_y = _chunk->get_data_size_y();
|
|
|
|
int data_size_z = _chunk->get_data_size_z();
|
|
|
|
|
|
|
|
ERR_FAIL_COND(data_size_x == 0 || data_size_y == 0 || data_size_z == 0);
|
|
|
|
|
|
|
|
int margin_start = _chunk->get_margin_start();
|
|
|
|
int margin_end = _chunk->get_margin_end();
|
|
|
|
|
|
|
|
int ssize_x = _chunk->get_size_x();
|
|
|
|
int ssize_y = _chunk->get_size_y();
|
|
|
|
int ssize_z = _chunk->get_size_z();
|
|
|
|
|
|
|
|
int size_x = ssize_x + margin_end;
|
|
|
|
int size_y = ssize_y + margin_end;
|
|
|
|
int size_z = ssize_z + margin_end;
|
|
|
|
|
|
|
|
for (int y = margin_start - 1; y < size_y - 1; ++y) {
|
|
|
|
for (int z = margin_start - 1; z < size_z - 1; ++z) {
|
|
|
|
for (int x = margin_start - 1; x < size_x - 1; ++x) {
|
|
|
|
int current = _chunk->get_voxel(x, y, z, VoxelChunkDefault::DEFAULT_CHANNEL_ISOLEVEL);
|
|
|
|
|
|
|
|
int sum = _chunk->get_voxel(x + 1, y, z, VoxelChunkDefault::DEFAULT_CHANNEL_ISOLEVEL);
|
|
|
|
sum += _chunk->get_voxel(x - 1, y, z, VoxelChunkDefault::DEFAULT_CHANNEL_ISOLEVEL);
|
|
|
|
sum += _chunk->get_voxel(x, y + 1, z, VoxelChunkDefault::DEFAULT_CHANNEL_ISOLEVEL);
|
|
|
|
sum += _chunk->get_voxel(x, y - 1, z, VoxelChunkDefault::DEFAULT_CHANNEL_ISOLEVEL);
|
|
|
|
sum += _chunk->get_voxel(x, y, z + 1, VoxelChunkDefault::DEFAULT_CHANNEL_ISOLEVEL);
|
|
|
|
sum += _chunk->get_voxel(x, y, z - 1, VoxelChunkDefault::DEFAULT_CHANNEL_ISOLEVEL);
|
|
|
|
|
|
|
|
sum /= 6;
|
|
|
|
|
|
|
|
sum -= current;
|
|
|
|
|
|
|
|
if (sum < 0)
|
|
|
|
sum = 0;
|
|
|
|
|
|
|
|
_chunk->set_voxel(sum, x, y, z, VoxelChunkDefault::DEFAULT_CHANNEL_AO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelJob::generate_random_ao(int seed, int octaves, int period, float persistence, float scale_factor) {
|
|
|
|
ERR_FAIL_COND(!_chunk.is_valid());
|
|
|
|
|
|
|
|
int margin_start = _chunk->get_margin_start();
|
|
|
|
int margin_end = _chunk->get_margin_end();
|
|
|
|
|
|
|
|
int size_x = _chunk->get_size_x();
|
|
|
|
int size_y = _chunk->get_size_y();
|
|
|
|
int size_z = _chunk->get_size_z();
|
|
|
|
|
|
|
|
int position_x = _chunk->get_position_x();
|
|
|
|
int position_y = _chunk->get_position_y();
|
|
|
|
int position_z = _chunk->get_position_z();
|
|
|
|
|
|
|
|
Ref<OpenSimplexNoise> noise;
|
|
|
|
noise.instance();
|
|
|
|
|
|
|
|
noise->set_seed(seed);
|
|
|
|
noise->set_octaves(octaves);
|
|
|
|
noise->set_period(period);
|
|
|
|
noise->set_persistence(persistence);
|
|
|
|
|
|
|
|
for (int x = -margin_start; x < size_x + margin_end; ++x) {
|
|
|
|
for (int z = -margin_start; z < size_z + margin_end; ++z) {
|
|
|
|
for (int y = -margin_start; y < size_y + margin_end; ++y) {
|
|
|
|
float val = noise->get_noise_3d(x + (position_x * size_x), y + (position_y * size_y), z + (position_z * size_z));
|
|
|
|
|
|
|
|
val *= scale_factor;
|
|
|
|
|
|
|
|
if (val > 1)
|
|
|
|
val = 1;
|
|
|
|
|
|
|
|
if (val < 0)
|
|
|
|
val = -val;
|
|
|
|
|
|
|
|
_chunk->set_voxel(int(val * 255.0), x, y, z, VoxelChunkDefault::DEFAULT_CHANNEL_RANDOM_AO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-02 12:19:24 +02:00
|
|
|
void VoxelJob::chunk_exit_tree() {
|
|
|
|
|
|
|
|
_in_tree = false;
|
|
|
|
|
|
|
|
if (get_complete()) {
|
|
|
|
_chunk.unref();
|
|
|
|
} else {
|
|
|
|
set_cancelled(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-04 09:44:18 +02:00
|
|
|
VoxelJob::VoxelJob() {
|
|
|
|
_in_tree = false;
|
2020-08-04 10:08:04 +02:00
|
|
|
|
2020-10-02 12:19:24 +02:00
|
|
|
_build_phase_type = BUILD_PHASE_TYPE_NORMAL;
|
|
|
|
_build_done = true;
|
|
|
|
_phase = 0;
|
|
|
|
|
2020-08-04 10:08:04 +02:00
|
|
|
#if !THREAD_POOL_PRESENT
|
|
|
|
_complete = true;
|
|
|
|
_cancelled = false;
|
|
|
|
|
|
|
|
_max_allocated_time = 0;
|
|
|
|
_start_time = 0;
|
|
|
|
|
|
|
|
_current_run_stage = 0;
|
|
|
|
_stage = 0;
|
|
|
|
#endif
|
2020-08-04 09:44:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
VoxelJob::~VoxelJob() {
|
|
|
|
_chunk.unref();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelJob::_bind_methods() {
|
2020-10-02 16:45:08 +02:00
|
|
|
BIND_VMETHOD(MethodInfo("_process", PropertyInfo(Variant::REAL, "delta")));
|
|
|
|
BIND_VMETHOD(MethodInfo("_physics_process", PropertyInfo(Variant::REAL, "delta")));
|
|
|
|
|
2020-10-02 12:19:24 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_build_phase_type"), &VoxelJob::get_build_phase_type);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_build_phase_type", "value"), &VoxelJob::set_build_phase_type);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "build_phase_type", PROPERTY_HINT_ENUM, BINDING_STRING_ACTIVE_BUILD_PHASE_TYPE), "set_build_phase_type", "get_build_phase_type");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_chunk", "chunk"), &VoxelJob::set_chunk);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_phase"), &VoxelJob::get_phase);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_phase", "phase"), &VoxelJob::set_phase);
|
|
|
|
ClassDB::bind_method(D_METHOD("next_phase"), &VoxelJob::next_phase);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_build_done"), &VoxelJob::get_build_done);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_build_done", "val"), &VoxelJob::set_build_done);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("next_job"), &VoxelJob::next_job);
|
|
|
|
|
|
|
|
BIND_VMETHOD(MethodInfo("_reset"));
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("reset"), &VoxelJob::reset);
|
|
|
|
ClassDB::bind_method(D_METHOD("_reset"), &VoxelJob::_reset);
|
|
|
|
|
2020-08-04 09:44:18 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("_execute"), &VoxelJob::_execute);
|
2020-08-04 10:08:04 +02:00
|
|
|
|
2020-10-02 12:19:24 +02:00
|
|
|
BIND_VMETHOD(MethodInfo("_execute_phase"));
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("execute_phase"), &VoxelJob::execute_phase);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("generate_ao"), &VoxelJob::generate_ao);
|
|
|
|
ClassDB::bind_method(D_METHOD("generate_random_ao", "seed", "octaves", "period", "persistence", "scale_factor"), &VoxelJob::generate_random_ao);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("chunk_exit_tree"), &VoxelJob::chunk_exit_tree);
|
|
|
|
|
2020-08-04 10:08:04 +02:00
|
|
|
#if !THREAD_POOL_PRESENT
|
|
|
|
ClassDB::bind_method(D_METHOD("get_complete"), &VoxelJob::get_complete);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_complete", "value"), &VoxelJob::set_complete);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "complete"), "set_complete", "get_complete");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_start_time"), &VoxelJob::get_start_time);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_start_time", "value"), &VoxelJob::set_start_time);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "start_time"), "set_start_time", "get_start_time");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_current_run_stage"), &VoxelJob::get_current_run_stage);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_current_run_stage", "value"), &VoxelJob::set_current_run_stage);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "current_run_stage"), "set_current_run_stage", "get_current_run_stage");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_stage"), &VoxelJob::get_stage);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_stage", "value"), &VoxelJob::set_stage);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "stage"), "set_stage", "get_stage");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_current_execution_time"), &VoxelJob::get_current_execution_time);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("should_do", "just_check"), &VoxelJob::should_do, DEFVAL(false));
|
|
|
|
ClassDB::bind_method(D_METHOD("should_return"), &VoxelJob::should_return);
|
|
|
|
|
|
|
|
BIND_VMETHOD(MethodInfo("_execute"));
|
|
|
|
ClassDB::bind_method(D_METHOD("execute"), &VoxelJob::execute);
|
|
|
|
|
|
|
|
ADD_SIGNAL(MethodInfo("completed"));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !THREAD_POOL_PRESENT
|
|
|
|
bool VoxelJob::get_complete() const {
|
|
|
|
return _complete;
|
|
|
|
}
|
|
|
|
void VoxelJob::set_complete(const bool value) {
|
|
|
|
_complete = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VoxelJob::get_cancelled() const {
|
|
|
|
return _cancelled;
|
|
|
|
}
|
|
|
|
void VoxelJob::set_cancelled(const bool value) {
|
|
|
|
_cancelled = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
float VoxelJob::get_max_allocated_time() const {
|
|
|
|
return _max_allocated_time;
|
|
|
|
}
|
|
|
|
void VoxelJob::set_max_allocated_time(const float value) {
|
|
|
|
_max_allocated_time = value;
|
2020-08-04 09:44:18 +02:00
|
|
|
}
|
2020-08-04 10:08:04 +02:00
|
|
|
|
|
|
|
int VoxelJob::get_start_time() const {
|
|
|
|
return _start_time;
|
|
|
|
}
|
|
|
|
void VoxelJob::set_start_time(const int value) {
|
|
|
|
_start_time = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
int VoxelJob::get_current_run_stage() const {
|
|
|
|
return _current_run_stage;
|
|
|
|
}
|
|
|
|
void VoxelJob::set_current_run_stage(const int value) {
|
|
|
|
_current_run_stage = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
int VoxelJob::get_stage() const {
|
|
|
|
return _stage;
|
|
|
|
}
|
|
|
|
void VoxelJob::set_stage(const int value) {
|
|
|
|
_stage = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
float VoxelJob::get_current_execution_time() {
|
2020-08-04 10:52:27 +02:00
|
|
|
return 0;
|
2020-08-04 10:08:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool VoxelJob::should_do(const bool just_check) {
|
2020-08-04 10:52:27 +02:00
|
|
|
return true;
|
2020-08-04 10:08:04 +02:00
|
|
|
}
|
|
|
|
bool VoxelJob::should_return() {
|
|
|
|
if (_cancelled)
|
|
|
|
return true;
|
|
|
|
|
2020-08-04 10:52:27 +02:00
|
|
|
return false;
|
2020-08-04 10:08:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelJob::execute() {
|
|
|
|
ERR_FAIL_COND(!has_method("_execute"));
|
|
|
|
|
|
|
|
call("_execute");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|