mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-14 10:17:20 +01:00
128 lines
3.6 KiB
C++
128 lines
3.6 KiB
C++
/*
|
|
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_world_cubic.h"
|
|
|
|
#include "voxel_chunk_cubic.h"
|
|
|
|
#include "../../meshers/cubic/voxel_mesher_cubic.h"
|
|
#include "../jobs/voxel_light_job.h"
|
|
#include "../jobs/voxel_prop_job.h"
|
|
#include "../jobs/voxel_terrain_job.h"
|
|
|
|
#ifdef MESH_UTILS_PRESENT
|
|
#include "../../../mesh_utils/fast_quadratic_mesh_simplifier.h"
|
|
#endif
|
|
|
|
Ref<VoxelChunk> VoxelWorldCubic::_create_chunk(int x, int y, int z, Ref<VoxelChunk> chunk) {
|
|
if (!chunk.is_valid()) {
|
|
chunk = Ref<VoxelChunk>(memnew(VoxelChunkCubic));
|
|
}
|
|
|
|
if (chunk->job_get_count() == 0) {
|
|
Ref<VoxelLightJob> lj;
|
|
lj.INSTANCE();
|
|
|
|
Ref<VoxelTerrainJob> tj;
|
|
tj.INSTANCE();
|
|
|
|
Ref<VoxelMesherJobStep> s;
|
|
s.instance();
|
|
s->set_job_type(VoxelMesherJobStep::TYPE_NORMAL);
|
|
tj->add_jobs_step(s);
|
|
|
|
s.instance();
|
|
s->set_job_type(VoxelMesherJobStep::TYPE_DROP_UV2);
|
|
tj->add_jobs_step(s);
|
|
|
|
s.instance();
|
|
s->set_job_type(VoxelMesherJobStep::TYPE_MERGE_VERTS);
|
|
tj->add_jobs_step(s);
|
|
|
|
s.instance();
|
|
s->set_job_type(VoxelMesherJobStep::TYPE_BAKE_TEXTURE);
|
|
tj->add_jobs_step(s);
|
|
|
|
#ifdef MESH_UTILS_PRESENT
|
|
s.instance();
|
|
Ref<FastQuadraticMeshSimplifier> fqms;
|
|
fqms.instance();
|
|
s->set_fqms(fqms);
|
|
s->set_job_type(VoxelMesherJobStep::TYPE_SIMPLIFY_MESH);
|
|
s->set_simplification_step_ratio(0.8);
|
|
s->set_simplification_agressiveness(7);
|
|
s->set_simplification_steps(1);
|
|
tj->add_jobs_step(s);
|
|
#endif
|
|
|
|
Ref<VoxelMesher> m = Ref<VoxelMesher>(memnew(VoxelMesherCubic()));
|
|
m->set_channel_index_type(VoxelChunkDefault::DEFAULT_CHANNEL_TYPE);
|
|
m->set_channel_index_isolevel(VoxelChunkDefault::DEFAULT_CHANNEL_ISOLEVEL);
|
|
tj->add_mesher(m);
|
|
//add_liquid_mesher(Ref<VoxelMesher>(memnew(VoxelMesherLiquidMarchingCubes())));
|
|
|
|
Ref<VoxelPropJob> pj;
|
|
pj.INSTANCE();
|
|
pj->set_prop_mesher(Ref<VoxelMesher>(memnew(VoxelMesherCubic)));
|
|
|
|
s.instance();
|
|
s->set_job_type(VoxelMesherJobStep::TYPE_NORMAL);
|
|
pj->add_jobs_step(s);
|
|
|
|
s.instance();
|
|
s->set_job_type(VoxelMesherJobStep::TYPE_MERGE_VERTS);
|
|
pj->add_jobs_step(s);
|
|
|
|
s.instance();
|
|
s->set_job_type(VoxelMesherJobStep::TYPE_BAKE_TEXTURE);
|
|
pj->add_jobs_step(s);
|
|
|
|
s.instance();
|
|
s->set_job_type(VoxelMesherJobStep::TYPE_SIMPLIFY_MESH);
|
|
#ifdef MESH_UTILS_PRESENT
|
|
fqms.instance();
|
|
s->set_fqms(fqms);
|
|
s->set_simplification_steps(2);
|
|
#endif
|
|
pj->add_jobs_step(s);
|
|
|
|
chunk->job_add(lj);
|
|
chunk->job_add(tj);
|
|
chunk->job_add(pj);
|
|
|
|
// TODO this should be removed
|
|
set_num_lods(5);
|
|
}
|
|
|
|
return VoxelWorld::_create_chunk(x, y, z, chunk);
|
|
}
|
|
|
|
VoxelWorldCubic::VoxelWorldCubic() {
|
|
set_data_margin_start(1);
|
|
set_data_margin_end(1);
|
|
}
|
|
|
|
VoxelWorldCubic ::~VoxelWorldCubic() {
|
|
}
|
|
|
|
void VoxelWorldCubic::_bind_methods() {
|
|
} |